launchdarkly · Schema

Metrics

A collection of metrics.

Properties

Name Type Description
items array The list of metrics.
_links object
View JSON Schema on GitHub

JSON Schema

launchdarkly-metrics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Metrics",
  "title": "Metrics",
  "type": "object",
  "description": "A collection of metrics.",
  "properties": {
    "items": {
      "type": "array",
      "description": "The list of metrics.",
      "items": {
        "$ref": "#/components/schemas/Metric"
      }
    },
    "_links": {
      "$ref": "#/components/schemas/Links"
    }
  }
}