Skip to content

Instantly share code, notes, and snippets.

@acoyfellow
Created March 25, 2026 18:29
Show Gist options
  • Select an option

  • Save acoyfellow/d52e5b8f76f46aaafa782e86928fee92 to your computer and use it in GitHub Desktop.

Select an option

Save acoyfellow/d52e5b8f76f46aaafa782e86928fee92 to your computer and use it in GitHub Desktop.
{
"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