add leadfinder, add double pendulum
This commit is contained in:
64
leadfinder/data/lead_evaluation_json_schema
Normal file
64
leadfinder/data/lead_evaluation_json_schema
Normal file
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"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
|
||||
}
|
||||
Reference in New Issue
Block a user