Input schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Full name of the person reaching out"
},
"email": {
"type": "string",
"format": "email",
"description": "Work email address"
},
"role": {
"type": "string",
"enum": [
"CEO",
"CTO",
"COO",
"VP of Sales",
"VP of Engineering",
"Head of Operations",
"Product Manager",
"Founder",
"Other"
],
"description": "Job title or role"
},
"company": {
"type": "string",
"description": "Company name (optional)"
},
"message": {
"type": "string",
"description": "What the team does manually today and what they want to automate or improve.",
"minLength": 20
}
},
"required": [
"name",
"email",
"role",
"message"
]
}