Webex · Schema

TrackingCodeItemForCreateMeetingObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Name of the tracking code. The name cannot be empty and the maximum size is 120 characters.
value string Value for the tracking code. `value` cannot be empty and the maximum size is 120 characters.
View JSON Schema on GitHub

JSON Schema

webex-trackingcodeitemforcreatemeetingobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrackingCodeItemForCreateMeetingObject",
  "title": "TrackingCodeItemForCreateMeetingObject",
  "type": "object",
  "required": [
    "name",
    "value"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "Department",
      "description": "Name of the tracking code. The name cannot be empty and the maximum size is 120 characters."
    },
    "value": {
      "type": "string",
      "description": "Value for the tracking code. `value` cannot be empty and the maximum size is 120 characters."
    }
  }
}