Webex · Schema

deviceOwner

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier of a person or a workspace.
type object Enumeration that indicates if the member is of type `PEOPLE` or `PLACE`.
firstName string First name of device owner.
lastName string Last name of device owner.
View JSON Schema on GitHub

JSON Schema

webex-deviceowner-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/deviceOwner",
  "title": "deviceOwner",
  "type": "object",
  "required": [
    "id",
    "type",
    "firstName",
    "lastName"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of a person or a workspace."
    },
    "type": {
      "$ref": "#/components/schemas/MemberType",
      "description": "Enumeration that indicates if the member is of type `PEOPLE` or `PLACE`."
    },
    "firstName": {
      "type": "string",
      "description": "First name of device owner."
    },
    "lastName": {
      "type": "string",
      "description": "Last name of device owner."
    }
  }
}