{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdatePhoneTemplateResponseContent", "title": "UpdatePhoneTemplateResponseContent", "type": "object", "additionalProperties": false, "required": [ "content", "disabled", "id", "type" ], "properties": { "id": { "type": "string", "minLength": 1, "maxLength": 255 }, "channel": { "type": "string" }, "customizable": { "type": "boolean" }, "tenant": { "type": "string", "minLength": 1, "maxLength": 255 }, "content": { "$ref": "#/components/schemas/PhoneTemplateContent" }, "type": { "$ref": "#/components/schemas/PhoneTemplateNotificationTypeEnum" }, "disabled": { "type": "boolean", "description": "Whether the template is enabled (false) or disabled (true).", "default": false } } }