{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LeadsList", "title": "LeadsList", "type": "object", "properties": { "id": { "type": "integer", "description": "Unique identifier for the leads list.", "example": "abc123" }, "name": { "type": "string", "description": "Name of the leads list.", "example": "Example Title" }, "leads_count": { "type": "integer", "description": "Number of leads in the list.", "example": 10 }, "created_at": { "type": "string", "format": "date-time", "description": "Timestamp when the list was created.", "example": "2026-01-15T10:30:00Z" } } }