Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dashboard.json « schemas « validator « dashboard « metrics « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 313f03be7dc09bae7df4051bf626003c54a3443e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "type": "object",
  "required": ["dashboard", "panel_groups"],
  "properties": {
    "dashboard": { "type": "string" },
    "panel_groups": {
      "type": "array",
      "items": { "$ref": "./panel_group.json" }
    },
    "templating": {
      "$ref": "./templating.json"
    },
    "links": {
      "type": "array",
      "items": { "$ref": "./link.json" }
    }
  }
}