{ "$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 } } }