Webex · Schema

NumberOwnerObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier of the owner to which the PSTN Phone number is assigned.
type object Type of the PSTN phone number's owner.
firstName string First name of the PSTN phone number's owner. This field will be present only when the owner `type` is `PEOPLE` or `VIRTUAL_LINE`.
lastName string Last name of the PSTN phone number's owner. This field will be present only when the owner `type` is `PEOPLE` or `VIRTUAL_LINE`.
displayName string Display name of the PSTN phone number's owner. This field will be present except when the owner `type` is `PEOPLE` or `VIRTUAL_LINE`.
View JSON Schema on GitHub

JSON Schema

webex-numberownerobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NumberOwnerObject",
  "title": "NumberOwnerObject",
  "type": "object",
  "required": [
    "id",
    "type"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS9jODhiZGIwNC1jZjU5LTRjMjMtODQ4OC00NTNhOTE3ZDFlMjk",
      "description": "Unique identifier of the owner to which the PSTN Phone number is assigned."
    },
    "type": {
      "$ref": "#/components/schemas/NumberOwnerType",
      "description": "Type of the PSTN phone number's owner."
    },
    "firstName": {
      "type": "string",
      "example": "Test",
      "description": "First name of the PSTN phone number's owner. This field will be present only when the owner `type` is `PEOPLE` or `VIRTUAL_LINE`."
    },
    "lastName": {
      "type": "string",
      "example": "Person",
      "description": "Last name of the PSTN phone number's owner. This field will be present only when the owner `type` is `PEOPLE` or `VIRTUAL_LINE`."
    },
    "displayName": {
      "type": "string",
      "example": "TestWorkSpace",
      "description": "Display name of the PSTN phone number's owner. This field will be present except when the owner `type` is `PEOPLE` or `VIRTUAL_LINE`."
    }
  }
}