Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| creation_time | string | |
| size | integer | |
| checksum | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SnapshotDescription",
"title": "SnapshotDescription",
"type": "object",
"required": [
"name",
"size"
],
"properties": {
"name": {
"type": "string"
},
"creation_time": {
"type": "string",
"format": "partial-date-time",
"nullable": true
},
"size": {
"type": "integer",
"format": "uint64",
"minimum": 0
},
"checksum": {
"type": "string",
"nullable": true
}
},
"example": {
"name": "my-collection-3766212330831337-2024-07-22-08-31-55.snapshot",
"creation_time": "2022-08-04T10:49:10",
"size": 1000000,
"checksum": "a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0"
}
}