{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Termenul de căutat",
"minLength": 2,
"maxLength": 100
}
},
"required": [
"query"
],
"additionalProperties": false
}{
"type": "object",
"properties": {
"section": {
"type": "string",
"description": "Secțiunea dorită",
"enum": [
"contact",
"companie"
]
}
},
"additionalProperties": false
}{
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "Categoria de serviciu pentru filtrare",
"enum": [
"seo",
"audit",
"optimizare",
"link-building",
"local",
"ecommerce",
"tehnic"
]
}
},
"additionalProperties": false
}{
"type": "object",
"properties": {
"website": {
"type": "string",
"description": "Adresa site-ului de auditat",
"maxLength": 200,
"pattern": "^[^\\s]+\\.[^\\s]+$"
},
"name": {
"type": "string",
"description": "Numele persoanei de contact",
"minLength": 2,
"maxLength": 100
},
"email": {
"type": "string",
"description": "Adresa de email de contact",
"format": "email",
"maxLength": 150,
"pattern": "^[^@\\s]+@[^@\\s]+\\.[^@\\s]+$"
},
"phone": {
"type": "string",
"description": "Număr de telefon (opțional)",
"maxLength": 20,
"pattern": "^[0-9+()\\s-]{6,20}$"
},
"message": {
"type": "string",
"description": "Detalii suplimentare (opțional)",
"maxLength": 1000
}
},
"required": [
"website",
"name",
"email"
],
"additionalProperties": false
}{
"type": "object",
"properties": {
"website": {
"type": "string",
"description": "Adresa site-ului de analizat",
"minLength": 3,
"maxLength": 255
},
"name": {
"type": "string",
"description": "Numele persoanei de contact",
"minLength": 2,
"maxLength": 120
},
"email": {
"type": "string",
"description": "Adresa de email pe care primește răspunsul",
"format": "email",
"maxLength": 180,
"pattern": "^[^@\\s]+@[^@\\s]+\\.[^@\\s]+$"
}
},
"required": [
"website",
"name",
"email"
],
"additionalProperties": false
}