Webex · Schema

PublishParameters

Metadata for the published version.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
comment string A comment to provide context on publishing the flow.
tagIds array Tag IDs appropriate to this version. It must be one of 'Live', 'Test', 'Dev', 'Latest.
View JSON Schema on GitHub

JSON Schema

webex-publishparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PublishParameters",
  "title": "PublishParameters",
  "type": "object",
  "description": "Metadata for the published version.",
  "properties": {
    "comment": {
      "type": "string",
      "description": "A comment to provide context on publishing the flow.",
      "example": "Publishing the latest version"
    },
    "tagIds": {
      "type": "array",
      "description": "Tag IDs appropriate to this version. It must be one of 'Live', 'Test', 'Dev', 'Latest.",
      "example": [
        "Live"
      ],
      "items": {
        "type": "string"
      }
    }
  }
}