Webex · Schema

PersonCollectionResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
items array An array of person objects.
notFoundIds array An array of person IDs that could not be found.
View JSON Schema on GitHub

JSON Schema

webex-personcollectionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PersonCollectionResponse",
  "title": "PersonCollectionResponse",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Person"
      },
      "description": "An array of person objects."
    },
    "notFoundIds": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "An array of person IDs that could not be found."
    }
  }
}