Webex · Schema

EventFlowRes

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
description string Description of the event pane
diagram object
id string Identifier of the event pane
name string Name of the event pane
onEvents object List of events to which the flow version subscribes
process object
View JSON Schema on GitHub

JSON Schema

webex-eventflowres-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventFlowRes",
  "title": "EventFlowRes",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "Description of the event pane",
      "example": "description"
    },
    "diagram": {
      "$ref": "#/components/schemas/DiagramRes"
    },
    "id": {
      "type": "string",
      "description": "Identifier of the event pane",
      "example": "GLOBAL_EVENTS"
    },
    "name": {
      "type": "string",
      "description": "Name of the event pane",
      "example": "name"
    },
    "onEvents": {
      "type": "object",
      "additionalProperties": {
        "type": "string",
        "description": "Holds event IDs",
        "example": "13ae6d9e-e607-4e43-aab7-a1af579953a7"
      },
      "description": "List of events to which the flow version subscribes",
      "example": {
        "GlobalErrorHandling": "13ae6d9e-e607-4e43-aab7-a1af579953a7"
      }
    },
    "process": {
      "$ref": "#/components/schemas/ProcRes"
    }
  }
}