Webex · Schema

ResourceCollectionDetails

Details of a resource collection, including its ID.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string ID of this contact center resource.
View JSON Schema on GitHub

JSON Schema

webex-resourcecollectiondetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceCollectionDetails",
  "title": "ResourceCollectionDetails",
  "type": "object",
  "description": "Details of a resource collection, including its ID.",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of this contact center resource.",
      "example": "af9eecc5-0472-4549-9a83-2afdae0d4ba0",
      "minLength": 1
    }
  },
  "required": [
    "id"
  ]
}