Webex · Schema

DynamicSkillDTO

Dynamic skill data transfer object for skill-based queue filtering.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
skillId string The ID of the skill.
textValue string The text value for a text-type skill.
booleanValue boolean The boolean value for a boolean-type skill.
proficiencyValue integer The proficiency value for a proficiency-type skill.
enumSkillValues array The set of enum values for an enum-type skill.
View JSON Schema on GitHub

JSON Schema

webex-dynamicskilldto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DynamicSkillDTO",
  "title": "DynamicSkillDTO",
  "type": "object",
  "description": "Dynamic skill data transfer object for skill-based queue filtering.",
  "properties": {
    "skillId": {
      "type": "string",
      "description": "The ID of the skill."
    },
    "textValue": {
      "type": "string",
      "description": "The text value for a text-type skill."
    },
    "booleanValue": {
      "type": "boolean",
      "description": "The boolean value for a boolean-type skill."
    },
    "proficiencyValue": {
      "type": "integer",
      "format": "int32",
      "description": "The proficiency value for a proficiency-type skill."
    },
    "enumSkillValues": {
      "type": "array",
      "description": "The set of enum values for an enum-type skill.",
      "items": {
        "type": "string"
      },
      "uniqueItems": true
    }
  }
}