summaryrefslogtreecommitdiff
path: root/spec/fixtures/lib/gitlab/metrics/dashboard/schemas/panels.json
blob: b4809a8510135efc17d8acd54e19ea0d048a86eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "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
}