{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateContactListRequest", "title": "CreateContactListRequest", "type": "object", "required": [ "supportedChannels" ], "properties": { "supportedChannels": { "type": "array", "items": { "type": "string", "enum": [ "Voice", "SMS", "Email" ] }, "description": "Supported channels for the contact list" }, "activationTimeLagMinutes": { "type": "integer", "description": "Contact list activation time lag in minutes (0 = immediate activation, 180 = 3 hours delay). Required if activationDateTime is not provided.", "example": 180 }, "activationDateTime": { "type": "string", "description": "Contact list activation DateTimeStamp (format: YYYY-MM-DDTHH:MM). Required if activationTimeLagMinutes is not provided.", "example": "2025-09-24T18:47" } }, "example": { "supportedChannels": [ "Voice" ], "activationTimeLagMinutes": 180, "activationDateTime": "2025-09-24T18:47:00Z" } }