Webex · Schema

DynamicSkills

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
add array The list of dynamic skills to add.
remove array The list of dynamic skills to remove.
View JSON Schema on GitHub

JSON Schema

webex-dynamicskills-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DynamicSkills",
  "title": "DynamicSkills",
  "type": "object",
  "properties": {
    "add": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UpdateDynamicSkillsDTO"
      },
      "description": "The list of dynamic skills to add."
    },
    "remove": {
      "type": "array",
      "items": {
        "type": "string",
        "description": "A dynamic skill identifier to remove."
      },
      "description": "The list of dynamic skills to remove."
    }
  }
}