summaryrefslogtreecommitdiff
path: root/spec/fixtures/lib/gitlab/metrics/dashboard/schemas/dashboard.json
blob: 259c41bf09154a11cb0903e2508daac88de0cf49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "type": "object",
  "required": [
    "dashboard",
    "priority",
    "panel_groups"
  ],
  "properties": {
    "dashboard": { "type": "string" },
    "priority": { "type": "number" },
    "panel_groups": {
      "type": "array",
      "items": { "$ref": "spec/fixtures/lib/gitlab/metrics/dashboard/schemas/panel_groups.json" }
    },
    "templating": { "$ref": "spec/fixtures/lib/gitlab/metrics/dashboard/schemas/templating.json" },
    "links": { "$ref": "spec/fixtures/lib/gitlab/metrics/dashboard/schemas/links.json" }
  },
  "additionalProperties": false
}