Webex · Schema

AvailableHotelingHosts

List of available hoteling hosts that a person can associate with as a guest.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
hosts array List of available hoteling hosts.
View JSON Schema on GitHub

JSON Schema

webex-availablehotelinghosts-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AvailableHotelingHosts",
  "title": "AvailableHotelingHosts",
  "type": "object",
  "required": [
    "hosts"
  ],
  "properties": {
    "hosts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AvailableHotelingHost"
      },
      "description": "List of available hoteling hosts."
    }
  },
  "description": "List of available hoteling hosts that a person can associate with as a guest.",
  "example": {
    "hosts": [
      {
        "hostId": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS9hYmNkZWYxMi0zNDU2LTc4OTAtYWJjZC1lZjEyMzQ1Njc4OTA",
        "firstName": "John",
        "lastName": "Doe",
        "phoneNumber": "+14085551234",
        "extension": "1234",
        "allowedAssociationDuration": 24
      },
      {
        "hostId": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS85ODc2NTQzMi0xMjM0LTU2NzgtOTBhYi1jZGVmMTIzNDU2Nzg",
        "firstName": "Jane",
        "lastName": "Smith",
        "phoneNumber": "+14085555678",
        "extension": "5678",
        "allowedAssociationDuration": 12
      }
    ]
  }
}