Webex · Schema

ActivityRes

CallingCollaborationCommunicationsEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
group string Group of the activity. It is one of 'start', 'action', 'event', and 'end'.
id string Activity ID
name string Activity label
properties object Additional properties are stored here
View JSON Schema on GitHub

JSON Schema

webex-activityres-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActivityRes",
  "title": "ActivityRes",
  "type": "object",
  "properties": {
    "group": {
      "type": "string",
      "description": "Group of the activity. It is one of 'start', 'action', 'event', and 'end'.",
      "example": "start"
    },
    "id": {
      "type": "string",
      "description": "Activity ID",
      "example": "9813529a-b01a-4eee-a79c-5016f7b0c772"
    },
    "name": {
      "type": "string",
      "description": "Activity label",
      "example": "NewPhoneContact"
    },
    "properties": {
      "type": "object",
      "properties": {},
      "description": "Additional properties are stored here",
      "example": {
        "displayName": "NewPhoneContact"
      }
    }
  }
}