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

microsoft-azure-databaselistresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatabaseListResult",
  "title": "DatabaseListResult",
  "type": "object",
  "description": "List of Cosmos DB databases.",
  "properties": {
    "_rid": {
      "type": "string",
      "readOnly": true,
      "description": "The resource ID.",
      "example": "500123"
    },
    "Databases": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Database"
      },
      "description": "List of databases.",
      "example": []
    },
    "_count": {
      "type": "integer",
      "readOnly": true,
      "description": "The number of databases returned.",
      "example": 10
    }
  }
}