Datadog · Schema
MetricTimeseriesResponse
Response containing timeseries metric data for the requested queries
AnalyticsDashboardsMonitoringPlatformT1Visualizations
Properties
| Name | Type | Description |
|---|---|---|
| data | object | The response data object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-schema/datadog-metrics-metric-timeseries-response-schema.json",
"title": "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": "integer",
"format": "int64"
}
},
"series": {
"type": "array",
"description": "List of timeseries results, one per query formula",
"items": {
"$ref": "#/components/schemas/TimeseriesResult"
}
}
}
}
}
}
}
}