RecipientsResponse schema from ActiveCampaign API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/activecampaign/refs/heads/main/json-schema/activecampaign-sms-recipients-response-schema.json", "title": "RecipientsResponse", "description": "RecipientsResponse schema from ActiveCampaign API", "type": "object", "properties": { "recipients": { "type": "array", "items": { "$ref": "#/components/schemas/Recipient" } }, "meta": { "type": "object", "properties": { "total": { "type": "integer" }, "limit": { "type": "integer" }, "offset": { "type": "integer" } } } } }