Paginated list of contacts.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContactListResponse", "title": "ContactListResponse", "type": "object", "description": "Paginated list of contacts.", "properties": { "results": { "type": "array", "description": "Array of contact records.", "items": { "$ref": "#/components/schemas/Contact" } } } }