MetricDataResponseType schema
{ "$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" } } }