{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MetricDataResponseType", "title": "MetricDataResponseType", "type": "object", "properties": { "from": { "type": "string", "format": "date-time", "example": "2026-04-18T14:30:00Z" }, "metrics": { "type": "array", "items": { "$ref": "#/components/schemas/MetricResponse" }, "example": [ { "name": "example-resource-01", "timeslices": [ {} ] } ] }, "metrics_found": { "type": "string", "example": "example_string" }, "metrics_not_found": { "type": "string", "example": "example_string" }, "to": { "type": "string", "format": "date-time", "example": "2026-04-18T14:30:00Z" } } }