summaryrefslogtreecommitdiff
path: root/lib/gitlab/metrics/dashboard/validator/schemas/panel_group.json
blob: 1306fc475dba802b7355abc789831c3970bf6735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  "type": "object",
  "required": ["group", "panels"],
  "properties": {
    "group": { "type": "string" },
    "priority": { "type": "number" },
    "panels": {
      "type": "array",
      "items": { "$ref": "./panel.json" }
    }
  }
}