Microsoft Azure · Schema

ContainerListResult

List of Cosmos DB containers.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
_rid string
DocumentCollections array List of containers.
_count integer
View JSON Schema on GitHub

JSON Schema

microsoft-azure-containerlistresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContainerListResult",
  "title": "ContainerListResult",
  "type": "object",
  "description": "List of Cosmos DB containers.",
  "properties": {
    "_rid": {
      "type": "string",
      "readOnly": true,
      "example": "500123"
    },
    "DocumentCollections": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Container"
      },
      "description": "List of containers.",
      "example": []
    },
    "_count": {
      "type": "integer",
      "readOnly": true,
      "example": 10
    }
  }
}