Webex · Schema

TagsObj

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Name of the tag.
description string Description of the tag
View JSON Schema on GitHub

JSON Schema

webex-tagsobj-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagsObj",
  "title": "TagsObj",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "Tag name",
      "description": "Name of the tag."
    },
    "description": {
      "type": "string",
      "example": "Tag description",
      "description": "Description of the tag"
    }
  }
}