{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreatePhoneProviderSendTestRequestContent", "title": "CreatePhoneProviderSendTestRequestContent", "type": "object", "additionalProperties": false, "required": [ "to" ], "properties": { "to": { "type": "string", "description": "The recipient phone number to receive a given notification.", "minLength": 1, "maxLength": 16 }, "delivery_method": { "$ref": "#/components/schemas/PhoneProviderDeliveryMethodEnum" } } }