{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search keyword or phrase (e.g., 'corporate tax', 'ICV', 'e-invoicing', 'data protection', 'business setup')"
}
},
"required": [
"query"
]
}{
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "Email address to subscribe to the newsletter",
"format": "email"
}
},
"required": [
"email"
]
}{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search keyword to filter articles (matches title, excerpt, category, or keywords). Leave empty to get all articles sorted by date."
},
"category": {
"type": "string",
"description": "Filter by topic cluster",
"enum": [
"Tax & E-Invoicing",
"Data Protection & AI",
"Labour & Workforce",
"Business Setup & Licensing",
"Government Tenders & ICV"
]
},
"limit": {
"type": "number",
"description": "Maximum number of articles to return (default: 5, max: 12)",
"minimum": 1,
"maximum": 12
}
}
}{
"type": "object",
"properties": {
"company_size": {
"type": "string",
"description": "Company size classification",
"enum": [
"micro",
"sme",
"mid-market",
"enterprise"
]
},
"sector": {
"type": "string",
"description": "Primary business sector in the UAE",
"enum": [
"oil_gas",
"construction",
"retail",
"technology",
"financial_services",
"healthcare",
"manufacturing",
"hospitality",
"real_estate",
"professional_services",
"logistics",
"education",
"other"
]
},
"annual_revenue_aed": {
"type": "number",
"description": "Annual revenue in AED (approximate)",
"minimum": 0
},
"has_government_contracts": {
"type": "string",
"description": "Whether the company holds or seeks government contracts",
"enum": [
"yes",
"no",
"planning"
]
},
"employee_count": {
"type": "number",
"description": "Total number of employees (optional, helps refine assessment)",
"minimum": 1
}
},
"required": [
"company_size",
"sector",
"annual_revenue_aed"
]
}{
"type": "object",
"properties": {
"service": {
"type": "string",
"description": "Filter pricing by specific service line (optional — returns all tiers if omitted)",
"enum": [
"corporate-tax",
"icv-procurement",
"regulatory-advisory",
"e-invoicing",
"pro-services",
"data-protection",
"business-setup"
]
}
}
}{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Full name of the person booking the demo"
},
"email": {
"type": "string",
"description": "Email address for booking confirmation",
"format": "email"
},
"company": {
"type": "string",
"description": "Company or organization name (optional)"
},
"service": {
"type": "string",
"description": "Service of interest for the demo (matches get_service_details identifiers, plus platform demo and general)",
"enum": [
"corporate-tax",
"icv-procurement",
"regulatory-advisory",
"e-invoicing",
"pro-services",
"data-protection",
"business-setup",
"farah-suite-demo",
"general-consultation"
]
}
},
"required": [
"name",
"email",
"service"
]
}{
"type": "object",
"properties": {
"module": {
"type": "string",
"description": "Specific platform module to query. Omit for all modules.",
"enum": [
"tax-engine",
"icv-tracker",
"e-invoicing",
"compliance-calendar",
"document-vault",
"risk-monitoring",
"group-compliance",
"contract-management"
]
}
}
}{
"type": "object",
"properties": {
"topic": {
"type": "string",
"description": "The compliance topic to navigate to",
"enum": [
"tax-e-invoicing",
"data-protection",
"labour-workforce",
"business-setup",
"government-tenders"
]
}
},
"required": [
"topic"
]
}{
"type": "object",
"properties": {
"total_revenue": {
"type": "number",
"description": "Total annual revenue in AED (e.g., 5000000)",
"minimum": 0
},
"local_procurement": {
"type": "number",
"description": "Annual local procurement spend in AED (goods/services from UAE-based suppliers)",
"minimum": 0
},
"emirati_employees": {
"type": "number",
"description": "Number of Emirati (UAE national) employees",
"minimum": 0
},
"total_employees": {
"type": "number",
"description": "Total number of employees",
"minimum": 1
},
"local_investment": {
"type": "number",
"description": "Investment in local assets/infrastructure in AED (optional)",
"minimum": 0
},
"export_revenue": {
"type": "number",
"description": "Revenue from exports in AED (optional)",
"minimum": 0
}
},
"required": [
"total_revenue",
"local_procurement",
"emirati_employees",
"total_employees"
]
}{
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "Email address to subscribe and receive the compliance checklist PDF",
"format": "email"
}
},
"required": [
"email"
]
}{
"type": "object",
"properties": {
"fullname": {
"type": "string",
"description": "Full name of the person submitting the inquiry"
},
"email": {
"type": "string",
"description": "Email address for follow-up communication",
"format": "email"
},
"company": {
"type": "string",
"description": "Company or organization name (optional)"
},
"message": {
"type": "string",
"description": "The inquiry message or question about compliance services (10-2000 characters)",
"minLength": 10,
"maxLength": 2000
}
},
"required": [
"fullname",
"email",
"message"
]
}{
"type": "object",
"properties": {
"service": {
"type": "string",
"description": "Service identifier to query. Leave empty to list all services.",
"enum": [
"corporate-tax",
"icv-procurement",
"regulatory-advisory",
"e-invoicing",
"pro-services",
"data-protection",
"business-setup"
]
}
}
}