Properties
| Name | Type | Description |
|---|---|---|
| number_of_collections | integer | |
| max_collections | integer | |
| collections | array | |
| snapshots | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CollectionsTelemetry",
"title": "CollectionsTelemetry",
"type": "object",
"required": [
"number_of_collections"
],
"properties": {
"number_of_collections": {
"type": "integer",
"format": "uint",
"minimum": 0
},
"max_collections": {
"type": "integer",
"format": "uint",
"minimum": 0,
"nullable": true
},
"collections": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CollectionTelemetryEnum"
},
"nullable": true
},
"snapshots": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CollectionSnapshotTelemetry"
},
"nullable": true
}
}
}