Metrics set representation.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/apache-ignite/refs/heads/main/json-schema/rest-api-metric-set-schema.json", "title": "MetricSet", "description": "Metrics set representation.", "type": "object", "properties": { "name": { "type": "string", "description": "Metric set name." }, "metrics": { "type": "array", "description": "Metrics.", "items": { "$ref": "#/components/schemas/Metric" } } }, "required": [ "metrics", "name" ] }