Input schema (server-provided preview — do not copy)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"assistant": {
"description": "Which assistant is sending this, e.g. \"Claude\" or \"ChatGPT\"",
"maxLength": 100,
"type": "string"
},
"budget": {
"maxLength": 200,
"type": "string"
},
"company": {
"maxLength": 200,
"type": "string"
},
"consent": {
"const": true,
"description": "The person explicitly asked you to send this enquiry on their behalf",
"type": "boolean"
},
"email": {
"description": "Their email, as they gave it to you",
"maxLength": 200,
"minLength": 3,
"type": "string"
},
"message": {
"description": "What they are trying to do, in their own words where possible",
"maxLength": 4000,
"minLength": 20,
"type": "string"
},
"name": {
"description": "Who is enquiring",
"maxLength": 200,
"minLength": 1,
"type": "string"
},
"timeline": {
"maxLength": 200,
"type": "string"
}
},
"required": [
"consent",
"email",
"message",
"name"
],
"type": "object"
}