Webex · Schema

LicenseRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string A unique identifier for the license.
operation string Operation type. The default operation is `add` if no operation is specified. * `remove` - Remove the license from the user * `add` - Assign the license to the user
properties object
View JSON Schema on GitHub

JSON Schema

webex-licenserequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LicenseRequest",
  "title": "LicenseRequest",
  "type": "object",
  "required": [
    "id"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0xJQ0VOU0UvOTZhYmMyYWEtM2RjYy0xMWU1LWExNTItZmUzNDgxOWNkYzlh",
      "description": "A unique identifier for the license."
    },
    "operation": {
      "type": "string",
      "enum": [
        "remove",
        "add"
      ],
      "description": "Operation type. The default operation is `add` if no operation is specified.\n * `remove` - Remove the license from the user\n * `add` - Assign the license to the user\n"
    },
    "properties": {
      "$ref": "#/components/schemas/LicenseProperties"
    }
  }
}