Webex · Schema
FlowTagRes
Represents a tag
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| default | boolean | Determines whether the tag is a default tag |
| displayName | string | Display name of the tag. It is one of 'Live', 'Test', 'Dev', 'Latest' |
| flowVersionId | string | Flow Version object ID to with which the tag is currently associated. |
| id | string | Identifier of the tag. It is one of 'Live', 'Test', 'Dev', 'Latest |
| versionNumber | integer | Associated Flow Version object's version number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FlowTagRes",
"title": "FlowTagRes",
"type": "object",
"description": "Represents a tag",
"properties": {
"default": {
"type": "boolean",
"description": "Determines whether the tag is a default tag",
"example": false
},
"displayName": {
"type": "string",
"description": "Display name of the tag. It is one of 'Live', 'Test', 'Dev', 'Latest'",
"example": "Live"
},
"flowVersionId": {
"type": "string",
"description": "Flow Version object ID to with which the tag is currently associated.",
"example": "65c28d9db2a2375974066579"
},
"id": {
"type": "string",
"description": "Identifier of the tag. It is one of 'Live', 'Test', 'Dev', 'Latest",
"example": "Live"
},
"versionNumber": {
"type": "integer",
"description": "Associated Flow Version object's version number",
"format": "int32",
"example": 1
}
}
}