debian-mirror-gitlab/spec/fixtures/lib/gitlab/metrics/dashboard/schemas/panels.json
2020-10-24 23:57:45 +05:30

21 lines
446 B
JSON

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