Input schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 2,
"description": "Full name of the person submitting the brief."
},
"email": {
"type": "string",
"format": "email",
"description": "Email address ROIZILLA replies to. Must be a valid email address."
},
"company": {
"type": "string",
"description": "Company or team the work is for. Optional — omit if unknown."
},
"scope": {
"type": "string",
"minLength": 20,
"description": "Description of the work: goal, context, and what done looks like. At least 20 characters."
},
"budget": {
"type": "string",
"enum": [
"under-500",
"500-1000",
"1000-5000",
"5000-plus"
],
"description": "Budget range for the work."
},
"deadline": {
"type": "string",
"enum": [
"asap",
"this-month",
"this-quarter",
"flexible"
],
"description": "When the work needs to be delivered."
}
},
"required": [
"name",
"email",
"scope",
"budget",
"deadline"
]
}