{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PartialPhoneTemplateContent", "title": "PartialPhoneTemplateContent", "type": "object", "additionalProperties": false, "minProperties": 1, "properties": { "from": { "type": "string", "description": "Default phone number to be used as 'from' when sending a phone notification", "minLength": 1, "maxLength": 16 }, "body": { "$ref": "#/components/schemas/PhoneTemplateBody" } } }