{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PhoneTemplateContent", "title": "PhoneTemplateContent", "type": "object", "additionalProperties": false, "minProperties": 1, "properties": { "syntax": { "type": "string" }, "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" } } }