Microsoft Azure · Schema

ItemListResult

List of Cosmos DB items.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

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

JSON Schema

azure-cosmos-db-item-list-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ItemListResult",
  "type": "object",
  "description": "List of Cosmos DB items.",
  "properties": {
    "_rid": {
      "type": "string"
    },
    "Documents": {
      "type": "array",
      "description": "List of items."
    },
    "_count": {
      "type": "integer"
    }
  }
}