{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LeadInput", "title": "LeadInput", "type": "object", "properties": { "email": { "type": "string", "format": "email", "description": "Email address of the lead.", "example": "user@example.com" }, "first_name": { "type": "string", "description": "First name of the lead.", "example": "example_value" }, "last_name": { "type": "string", "description": "Last name of the lead.", "example": "example_value" }, "position": { "type": "string", "description": "Job position or title.", "example": "example_value" }, "company": { "type": "string", "description": "Company name.", "example": "example_value" }, "company_industry": { "type": "string", "description": "Industry of the company.", "example": "example_value" }, "company_size": { "type": "string", "description": "Size range of the company.", "example": "example_value" }, "confidence_score": { "type": "integer", "minimum": 0, "maximum": 100, "description": "Confidence score for the lead email.", "example": 10 }, "website": { "type": "string", "format": "uri", "description": "Website URL associated with the lead.", "example": "https://www.example.com" }, "country_code": { "type": "string", "description": "ISO 3166-1 alpha-2 country code.", "example": "example_value" }, "linkedin_url": { "type": "string", "format": "uri", "description": "LinkedIn profile URL.", "example": "https://www.example.com" }, "phone_number": { "type": "string", "description": "Phone number.", "example": "example_value" }, "twitter": { "type": "string", "description": "Twitter handle.", "example": "example_value" }, "notes": { "type": "string", "description": "Free-text notes about the lead.", "example": "example_value" }, "leads_list_id": { "type": "integer", "description": "Identifier of the leads list to add the lead to.", "example": "500123" } } }