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

dashboard.json « schemas « dashboard « metrics « gitlab « lib « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40453c61a657a6068b7849347d776b773fa98040 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
 "$schema": "http://json-schema.org/draft-07/schema#",
  "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
}