{
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 2,
"maxLength": 300,
"description": "The visitor's question or the Hayalows topic to find."
}
},
"required": [
"query"
],
"additionalProperties": false
}{
"type": "object",
"properties": {
"service": {
"type": "string",
"enum": [
"all",
"business_clarity",
"brand_communication",
"websites_tools"
],
"default": "all",
"description": "The service area to highlight, or all to show the complete offering."
}
},
"additionalProperties": false
}{
"type": "object",
"properties": {
"help_type": {
"type": "string",
"enum": [
"business_clarity",
"brand_communication",
"website_tool",
"product_venture",
"partnership",
"general"
],
"description": "The closest Hayalows enquiry category."
},
"message": {
"type": "string",
"minLength": 10,
"maxLength": 2000,
"description": "What is happening now and what the visitor wants to improve."
},
"name": {
"type": "string",
"maxLength": 120,
"description": "Optional visitor name."
},
"business": {
"type": "string",
"maxLength": 160,
"description": "Optional business name."
},
"email": {
"type": "string",
"format": "email",
"maxLength": 254,
"description": "Optional email address."
},
"phone": {
"type": "string",
"maxLength": 40,
"description": "Optional phone or WhatsApp number."
}
},
"required": [
"help_type",
"message"
],
"additionalProperties": false
}