New Relic · Schema

MetricDataResponseType

MetricDataResponseType schema

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
from string
metrics array
metrics_found string
metrics_not_found string
to string
View JSON Schema on GitHub

JSON Schema

openapi-metric-data-response-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/new-relic/refs/heads/main/json-schema/openapi-metric-data-response-type-schema.json",
  "title": "MetricDataResponseType",
  "description": "MetricDataResponseType schema",
  "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"
    }
  }
}