Microsoft Azure · Schema

DatabaseListResult

List of Cosmos DB databases.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
_rid string The resource ID.
Databases array List of databases.
_count integer The number of databases returned.
View JSON Schema on GitHub

JSON Schema

azure-cosmos-db-database-list-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DatabaseListResult",
  "type": "object",
  "description": "List of Cosmos DB databases.",
  "properties": {
    "_rid": {
      "type": "string",
      "description": "The resource ID."
    },
    "Databases": {
      "type": "array",
      "description": "List of databases."
    },
    "_count": {
      "type": "integer",
      "description": "The number of databases returned."
    }
  }
}