Webex · Schema

MonitoredPersonObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier of the person.
lastName string Last name of the person.
firstName string First name of the person.
displayName string Display name of the person.
type object Type usually indicates `PEOPLE`, `PLACE` or `VIRTUAL_LINE`. Push-to-Talk and Privacy features only supports `PEOPLE`.
email string Email address of the person.
numbers array List of phone numbers of the person.
View JSON Schema on GitHub

JSON Schema

webex-monitoredpersonobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MonitoredPersonObject",
  "title": "MonitoredPersonObject",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82MWU3MDlkNy1hM2IxLTQ2MDctOTBiOC04NmE5MDgxYWFkNmE",
      "description": "Unique identifier of the person."
    },
    "lastName": {
      "type": "string",
      "example": "Little",
      "description": "Last name of the person."
    },
    "firstName": {
      "type": "string",
      "example": "Alice",
      "description": "First name of the person."
    },
    "displayName": {
      "type": "string",
      "example": "Alice Little",
      "description": "Display name of the person."
    },
    "type": {
      "$ref": "#/components/schemas/PeopleOrPlaceOrVirtualLineType",
      "description": "Type usually indicates `PEOPLE`, `PLACE` or `VIRTUAL_LINE`. Push-to-Talk and Privacy features only supports `PEOPLE`."
    },
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email address of the person."
    },
    "numbers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PushToTalkNumberObject"
      },
      "description": "List of phone numbers of the person."
    }
  }
}