New Relic · JSON Structure

Metric Api Summary Value Structure

Summary metric value containing statistical aggregations

Type: object Properties: 4 Required: 4
AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

SummaryValue is a JSON Structure definition published by New Relic, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

count sum min max

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/new-relic/refs/heads/main/json-structure/metric-api-summary-value-structure.json",
  "name": "SummaryValue",
  "description": "Summary metric value containing statistical aggregations",
  "type": "object",
  "properties": {
    "count": {
      "type": "double",
      "description": "The number of measurements in this summary",
      "example": 42.5
    },
    "sum": {
      "type": "double",
      "description": "The sum of all measurement values",
      "example": 42.5
    },
    "min": {
      "type": "double",
      "description": "The minimum measurement value",
      "example": 42.5
    },
    "max": {
      "type": "double",
      "description": "The maximum measurement value",
      "example": 42.5
    }
  },
  "required": [
    "count",
    "sum",
    "min",
    "max"
  ]
}