Webex · Schema

OwnerObject

Details of the owner of the device.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
lastName string First name of device owner.
firstName string Last name of device owner.
type object
View JSON Schema on GitHub

JSON Schema

webex-ownerobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OwnerObject",
  "title": "OwnerObject",
  "type": "object",
  "description": "Details of the owner of the device.",
  "example": {
    "lastName": "Mac",
    "firstName": "Jone",
    "type": "PEOPLE"
  },
  "required": [
    "lastName",
    "firstName",
    "type"
  ],
  "properties": {
    "lastName": {
      "type": "string",
      "example": "user",
      "description": "First name of device owner."
    },
    "firstName": {
      "type": "string",
      "example": "user1",
      "description": "Last name of device owner."
    },
    "type": {
      "$ref": "#/components/schemas/MemberType"
    }
  }
}