Webex · Schema

CreateOrUpdateTemplateModel

Create Or Update Template

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Template Name
attributes array
View JSON Schema on GitHub

JSON Schema

webex-createorupdatetemplatemodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateOrUpdateTemplateModel",
  "title": "CreateOrUpdateTemplateModel",
  "required": [
    "attributes",
    "name"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Template Name",
      "example": "sample-template"
    },
    "attributes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ProfileViewAttributeRequestModel"
      }
    }
  },
  "description": "Create Or Update Template"
}