2019-07-31 22:56:46 +05:30
|
|
|
{
|
2021-06-08 01:23:25 +05:30
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
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" },
|
2021-06-08 01:23:25 +05:30
|
|
|
"y_axis": { "$ref": "spec/fixtures/lib/gitlab/metrics/dashboard/schemas/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",
|
2021-06-08 01:23:25 +05:30
|
|
|
"items": { "$ref": "spec/fixtures/lib/gitlab/metrics/dashboard/schemas/metrics.json" }
|
2019-07-31 22:56:46 +05:30
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|