{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TemplateObject", "title": "TemplateObject", "type": "object", "required": [ "id", "name", "locale", "siteUrl", "templateType", "isDefault", "isStandard" ], "properties": { "id": { "type": "string", "example": "N2Q3ZWE1ZjQyYjkyMWVhY2UwNTM4NmNhMjRhZDczMGU6VS0yMDA5NzItTUMtZW5fVVM", "description": "Unique identifier for meeting template." }, "name": { "type": "string", "example": "Meeting template 1", "description": "Meeting template name." }, "locale": { "type": "string", "example": "en_US", "description": "Meeting template locale." }, "siteUrl": { "type": "string", "example": "site4-example.webex.com", "description": "Site URL for the meeting template." }, "templateType": { "type": "string", "enum": [ "meeting", "webinar" ], "description": "Meeting template type.\n * `meeting` - Webex meeting.\n * `webinar` - Webex webinar.\n" }, "isDefault": { "type": "boolean", "description": "Whether or not the meeting template is a default template." }, "isStandard": { "type": "boolean", "description": "Whether or not the meeting template is a standard template." } } }