Public source validation / validate (push) Failing after 3m8s
17 lines
459 B
JSON
17 lines
459 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://itworx.local/pulse/specs/metric-catalog.schema.json",
|
|
"title": "Pulse semantic metric catalog",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["schemaVersion", "metrics"],
|
|
"properties": {
|
|
"schemaVersion": {"const": 1},
|
|
"metrics": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {"$ref": "metric-definition.schema.json"}
|
|
}
|
|
}
|
|
}
|