Webex · Schema

MetaResourceVersionInfo

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
orgId string Organization ID used for this operation.
resourceVersionList array List of all resources, and it's supported versions available to subscribe.
View JSON Schema on GitHub

JSON Schema

webex-metaresourceversioninfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetaResourceVersionInfo",
  "title": "MetaResourceVersionInfo",
  "required": [
    "resourceVersionList"
  ],
  "type": "object",
  "properties": {
    "orgId": {
      "type": "string",
      "description": "Organization ID used for this operation.",
      "format": "uuid",
      "example": "97cdbf45-ebe2-4687-8341-44d5c7abf101"
    },
    "resourceVersionList": {
      "type": "array",
      "description": "List of all resources, and it's supported versions available to subscribe.",
      "items": {
        "$ref": "#/components/schemas/ResourceVersion"
      }
    }
  }
}