debian-mirror-gitlab/lib/gitlab/metrics/dashboard/validator/schemas/dashboard.json

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

19 lines
376 B
JSON
Raw Normal View History

2020-10-24 23:57:45 +05:30
{
"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" }
}
}
}