debian-mirror-gitlab/spec/fixtures/lib/gitlab/metrics/dashboard/schemas/panels.json

22 lines
446 B
JSON
Raw Normal View History

2019-07-31 22:56:46 +05:30
{
"type": "object",
"required": [
"title",
"y_label",
"metrics"
],
"properties": {
"title": { "type": "string" },
2020-04-22 19:07:51 +05:30
"id": { "type": "string" },
2019-07-31 22:56:46 +05:30
"type": { "type": "string" },
"y_label": { "type": "string" },
2020-04-08 14:13:33 +05:30
"y_axis": { "$ref": "axis.json" },
2020-04-22 19:07:51 +05:30
"max_value": { "type": "number" },
2019-07-31 22:56:46 +05:30
"metrics": {
"type": "array",
"items": { "$ref": "metrics.json" }
}
},
"additionalProperties": false
}