{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Stats", "title": "Stats", "type": "object", "description": "Analytics statistics response.", "properties": { "environments": { "type": "array", "description": "List of environment statistics.", "items": { "type": "object", "properties": { "name": { "type": "string" }, "dimensions": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "metrics": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "values": { "type": "array", "items": { "type": "object", "properties": { "timestamp": { "type": "string" }, "value": { "type": "string" } } } } } } } } } } } } }, "metaData": { "type": "object", "description": "Metadata about the statistics response.", "properties": { "errors": { "type": "array", "items": { "type": "string" } }, "notices": { "type": "array", "items": { "type": "string" } } } } } }