Microsoft Azure · Schema
Database
A Cosmos DB database resource.
API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique name that identifies the database. |
| _rid | string | System-generated resource ID. |
| _ts | integer | System-generated timestamp (epoch value). |
| _self | string | System-generated URI for the resource. |
| _etag | string | System-generated resource etag for optimistic concurrency. |
| _colls | string | System-generated addressable path for the collections resource. |
| _users | string | System-generated addressable path for the users resource. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Database",
"title": "Database",
"type": "object",
"description": "A Cosmos DB database resource.",
"properties": {
"id": {
"type": "string",
"description": "The unique name that identifies the database.",
"example": "abc123"
},
"_rid": {
"type": "string",
"readOnly": true,
"description": "System-generated resource ID.",
"example": "500123"
},
"_ts": {
"type": "integer",
"readOnly": true,
"description": "System-generated timestamp (epoch value).",
"example": 10
},
"_self": {
"type": "string",
"readOnly": true,
"description": "System-generated URI for the resource.",
"example": "example_value"
},
"_etag": {
"type": "string",
"readOnly": true,
"description": "System-generated resource etag for optimistic concurrency.",
"example": "example_value"
},
"_colls": {
"type": "string",
"readOnly": true,
"description": "System-generated addressable path for the collections resource.",
"example": "example_value"
},
"_users": {
"type": "string",
"readOnly": true,
"description": "System-generated addressable path for the users resource.",
"example": "example_value"
}
},
"required": [
"id"
]
}