{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/allianz-docs/refs/heads/main/json-schema/api-connect-lead-referral-response-schema.json", "title": "LeadReferralResponse", "description": "Confirmation of a submitted lead referral", "type": "object", "properties": { "lead_id": { "type": "string", "description": "Unique identifier for the submitted lead", "example": "lead-500234" }, "status": { "type": "string", "description": "Status of the lead submission", "enum": [ "submitted", "assigned", "contacted" ], "example": "submitted" }, "created_at": { "type": "string", "format": "date-time", "description": "Timestamp when the lead was submitted", "example": "2026-04-19T10:30:00Z" }, "assigned_to": { "type": "string", "description": "Team or person the lead has been assigned to", "example": "Allianz Sales Team" } } }