Created
March 25, 2026 18:29
-
-
Save acoyfellow/d52e5b8f76f46aaafa782e86928fee92 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "type": "object", | |
| "properties": { | |
| "email": { | |
| "description": "The lead's email", | |
| "type": "string" | |
| }, | |
| "fullName": { | |
| "description": "The lead's full name", | |
| "type": "string" | |
| }, | |
| "industry": { | |
| "description": "Industry of the business", | |
| "type": "string" | |
| }, | |
| "annualSales": { | |
| "description": "Annual sales volume", | |
| "type": "string" | |
| }, | |
| "creditScore": { | |
| "description": "Estimated credit score", | |
| "type": "string" | |
| }, | |
| "phoneNumber": { | |
| "description": "The lead's phone number", | |
| "type": "string" | |
| }, | |
| "businessName": { | |
| "description": "Name of the business", | |
| "type": "string" | |
| }, | |
| "fundingPurpose": { | |
| "description": "Purpose for seeking funding", | |
| "type": "string" | |
| }, | |
| "timeInBusiness": { | |
| "description": "Time the business has been operating", | |
| "type": "string" | |
| }, | |
| "loanRequestedAmount": { | |
| "description": "Amount of loan requested", | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "fullName", | |
| "phoneNumber", | |
| "fundingPurpose", | |
| "annualSales", | |
| "loanRequestedAmount", | |
| "timeInBusiness", | |
| "businessName", | |
| "creditScore", | |
| "industry", | |
| "email" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment