Webex · Schema

EntityReferenceInfoDTO

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
description string Description about reference info.
meta object
data array
View JSON Schema on GitHub

JSON Schema

webex-entityreferenceinfodto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EntityReferenceInfoDTO",
  "title": "EntityReferenceInfoDTO",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "Description about reference info.",
      "example": "list of referenced entities"
    },
    "meta": {
      "$ref": "#/components/schemas/MetaDataReferencesPagingInfo"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EntityInfo"
      }
    }
  }
}