gitlab-org--gitlab-foss/spec/fixtures/lib/gitlab/metrics/dashboard/schemas/panels.json

21 lines
386 B
JSON

{
"type": "object",
"required": [
"title",
"y_label",
"weight",
"metrics"
],
"properties": {
"title": { "type": "string" },
"type": { "type": "string" },
"y_label": { "type": "string" },
"weight": { "type": "number" },
"metrics": {
"type": "array",
"items": { "$ref": "metrics.json" }
}
},
"additionalProperties": false
}