1{
2  "$schema": "http://json-schema.org/draft-07/schema#",
3  "type": "object",
4  "required": [
5    "title",
6    "y_label",
7    "metrics"
8  ],
9  "properties": {
10    "title": { "type": "string" },
11    "id": { "type": "string" },
12    "type": { "type": "string" },
13    "y_label": { "type": "string" },
14    "y_axis": { "$ref": "spec/fixtures/lib/gitlab/metrics/dashboard/schemas/axis.json" },
15    "max_value": { "type": "number" },
16    "metrics": {
17      "type": "array",
18      "items": { "$ref": "spec/fixtures/lib/gitlab/metrics/dashboard/schemas/metrics.json" }
19    }
20  },
21  "additionalProperties": false
22}
23