Webex · Schema

TemplateObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier for meeting template.
name string Meeting template name.
locale string Meeting template locale.
siteUrl string Site URL for the meeting template.
templateType string Meeting template type. * `meeting` - Webex meeting. * `webinar` - Webex webinar.
isDefault boolean Whether or not the meeting template is a default template.
isStandard boolean Whether or not the meeting template is a standard template.
View JSON Schema on GitHub

JSON Schema

webex-templateobject-schema.json Raw ↑
{
  "$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."
    }
  }
}