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