Datadog · JSON Structure

Datadog Metrics Metric Timeseries Response Structure

Response containing timeseries metric data for the requested queries

Type: object Properties: 1
AnalyticsDashboardsMonitoringPlatformT1Visualizations

MetricTimeseriesResponse is a JSON Structure definition published by Datadog, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

data

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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