Webex · Schema

AvailableHotelingHost

Information about an available hoteling host.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
hostId string Unique identifier for the person or workspace.
firstName string First name of the hoteling host.
lastName string Last name of the hoteling host.
phoneNumber string Phone number of the hoteling host.
extension string Extension of the hoteling host.
allowedAssociationDuration integer Maximum allowed association duration in hours for this host.
View JSON Schema on GitHub

JSON Schema

webex-availablehotelinghost-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AvailableHotelingHost",
  "title": "AvailableHotelingHost",
  "type": "object",
  "required": [
    "hostId",
    "firstName",
    "lastName",
    "phoneNumber",
    "extension",
    "allowedAssociationDuration"
  ],
  "properties": {
    "hostId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS9hYmNkZWYxMi0zNDU2LTc4OTAtYWJjZC1lZjEyMzQ1Njc4OTA",
      "description": "Unique identifier for the person or workspace."
    },
    "firstName": {
      "type": "string",
      "example": "John",
      "description": "First name of the hoteling host."
    },
    "lastName": {
      "type": "string",
      "example": "Doe",
      "description": "Last name of the hoteling host."
    },
    "phoneNumber": {
      "type": "string",
      "example": "+14085551234",
      "description": "Phone number of the hoteling host."
    },
    "extension": {
      "type": "string",
      "example": "1234",
      "description": "Extension of the hoteling host."
    },
    "allowedAssociationDuration": {
      "type": "integer",
      "minimum": 1,
      "maximum": 999,
      "example": 24,
      "description": "Maximum allowed association duration in hours for this host."
    }
  },
  "description": "Information about an available hoteling host."
}