{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-structure/datadog-metrics-metric-timeseries-response-structure.json", "name": "MetricTimeseriesResponse", "description": "Response containing timeseries metric data for the requested queries", "type": "object", "properties": { "data": { "type": "object", "description": "The response data object", "properties": { "type": { "type": "string", "description": "The type identifier for the response" }, "id": { "type": "string", "description": "A unique identifier for this response" }, "attributes": { "type": "object", "description": "The response attributes containing timeseries results", "properties": { "times": { "type": "array", "description": "Array of Unix timestamps in milliseconds for each data point", "items": { "type": "int64" } }, "series": { "type": "array", "description": "List of timeseries results, one per query formula", "items": { "$ref": "#/components/schemas/TimeseriesResult" } } } } } } } }