65 lines
2.1 KiB
Plaintext
65 lines
2.1 KiB
Plaintext
{
|
|
"type": "object",
|
|
"properties": {
|
|
"leads": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"company_name": { "type": "string" },
|
|
"website": { "type": "string" },
|
|
"industry": { "type": "string" },
|
|
"description": { "type": "string" },
|
|
"employee_count": { "type": "string" },
|
|
"lead_attractiveness_score": { "type": "integer" },
|
|
"scoring_reasoning": { "type": "string" },
|
|
"general_contacts": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"value": { "type": "string" },
|
|
"type": { "type": "string", "enum": ["EMAIL", "PHONE"] },
|
|
"category": { "type": "string", "enum": ["SALES_DIRECT", "GENERAL_INFO", "SUPPORT", "PRESS_MARKETING", "OTHER"] },
|
|
"source_url": { "type": "string" }
|
|
},
|
|
"required": ["value", "type", "category", "source_url"],
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"employees": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": { "type": "string" },
|
|
"role": { "type": "string" },
|
|
"email": { "type": "string" },
|
|
"phone": { "type": "string" },
|
|
"linkedin_url": { "type": "string" },
|
|
"source_url": { "type": "string" }
|
|
},
|
|
"required": ["name", "role", "email", "phone", "linkedin_url", "source_url"],
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"company_name",
|
|
"website",
|
|
"industry",
|
|
"description",
|
|
"employee_count",
|
|
"lead_attractiveness_score",
|
|
"scoring_reasoning",
|
|
"general_contacts",
|
|
"employees"
|
|
],
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
},
|
|
"required": ["leads"],
|
|
"additionalProperties": false
|
|
}
|