{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContactListDetail", "title": "ContactListDetail", "type": "object", "properties": { "id": { "type": "integer", "format": "int64", "description": "Unique identifier of the list." }, "name": { "type": "string", "description": "Name of the list." }, "totalSubscribers": { "type": "integer", "format": "int64", "description": "Total number of subscribers in the list." }, "totalBlacklisted": { "type": "integer", "format": "int64", "description": "Total number of blacklisted contacts in the list." }, "folderId": { "type": "integer", "format": "int64", "description": "ID of the folder containing the list." }, "createdAt": { "type": "string", "format": "date-time", "description": "UTC date-time when the list was created." } } }