Webex · Schema

ProcRes

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
activities object Stores list of activities/events
links array Stores list of links
View JSON Schema on GitHub

JSON Schema

webex-procres-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProcRes",
  "title": "ProcRes",
  "type": "object",
  "properties": {
    "activities": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/ActivityRes"
      },
      "description": "Stores list of activities/events",
      "example": {
        "493751c9-7b87-4e93-9999-084f89f9e17b": {
          "id": "493751c9-7b87-4e93-9999-084f89f9e17b",
          "name": "NewPhoneContact",
          "group": "start",
          "properties": {
            "name": "NewPhoneContact",
            "event": "NewPhoneContact",
            "activityId": "start"
          }
        }
      }
    },
    "links": {
      "type": "array",
      "description": "Stores list of links",
      "items": {
        "$ref": "#/components/schemas/LinkRes"
      }
    }
  }
}