{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PhoneTemplateBody", "title": "PhoneTemplateBody", "type": "object", "additionalProperties": false, "minProperties": 1, "properties": { "text": { "type": "string", "description": "Content of the phone template for text notifications", "minLength": 1, "maxLength": 20000 }, "voice": { "type": "string", "description": "Content of the phone template for voice notifications", "minLength": 1, "maxLength": 20000 } } }