Webex · Schema

OptionsForCreateOrUpdateTrackingCodeObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
value string The value of a tracking code option. `value` cannot be empty and the maximum size is 120 characters.
defaultValue boolean Whether or not the option is the default option of a tracking code.
View JSON Schema on GitHub

JSON Schema

webex-optionsforcreateorupdatetrackingcodeobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OptionsForCreateOrUpdateTrackingCodeObject",
  "title": "OptionsForCreateOrUpdateTrackingCodeObject",
  "type": "object",
  "required": [
    "value",
    "defaultValue"
  ],
  "properties": {
    "value": {
      "type": "string",
      "description": "The value of a tracking code option. `value` cannot be empty and the maximum size is 120 characters."
    },
    "defaultValue": {
      "type": "boolean",
      "description": "Whether or not the option is the default option of a tracking code."
    }
  }
}