{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreatePhoneTemplateTestNotificationRequestContent", "title": "CreatePhoneTemplateTestNotificationRequestContent", "type": "object", "additionalProperties": true, "required": [ "to" ], "properties": { "to": { "type": "string", "description": "Destination of the testing phone notification", "minLength": 1, "maxLength": 16 }, "delivery_method": { "$ref": "#/components/schemas/PhoneProviderDeliveryMethodEnum", "description": "Medium to use to send the notification" } } }