gitlab-org--gitlab-foss/spec/fixtures/lib/gitlab/metrics/dashboard/schemas/dashboard.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
623 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
2019-07-24 20:26:44 +00:00
"required": [
"dashboard",
"priority",
"panel_groups"
],
"properties": {
"dashboard": { "type": "string" },
2019-04-17 14:12:21 +00:00
"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
}