{
"type": "object",
"properties": {
"lead_id": { "type": "string", "pattern": "^LEAD-[0-9]{4,10}$" },
"segment": { "type": "string", "enum": ["smb", "mid_market", "enterprise"] },
"priority": { "type": "string", "enum": ["low", "medium", "high"] },
"company_size": { "type": "string", "enum": ["1-10", "11-50", "51-200", "201+"] },
"tech_stack": {
"type": "array",
"items": { "type": "string", "minLength": 1, "maxLength": 40 },
"maxItems": 10
},
"notes": { "type": "string", "maxLength": 300 }
},
"required": ["lead_id", "segment", "priority"],
"additionalProperties": false
}