Webex · Schema

UserSessionTypes

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
personId string A unique identifier for the user.
email string The email of the user.
siteUrl string Site URL for the user.
sessionTypes array All session types are supported by the user on the site.
View JSON Schema on GitHub

JSON Schema

webex-usersessiontypes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserSessionTypes",
  "title": "UserSessionTypes",
  "type": "object",
  "properties": {
    "personId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8yNWJiZjgzMS01YmU5LTRjMjUtYjRiMC05YjU5MmM4YTA4NmI",
      "description": "A unique identifier for the user."
    },
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "The email of the user."
    },
    "siteUrl": {
      "type": "string",
      "example": "example.webex.com",
      "description": "Site URL for the user."
    },
    "sessionTypes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SessionType"
      },
      "description": "All session types are supported by the user on the site."
    }
  }
}