summaryrefslogtreecommitdiff
path: root/spec/fixtures/lib/gitlab/metrics/dashboard/schemas/custom_variable_full_syntax.json
blob: 0d9c217afd1dcdf02937493db1bb44486cfee6a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "required": [
    "type", "options"
  ],
  "properties": {
    "type": { "enum": ["custom"] },
    "label": { "type": "string" },
    "options": { "$ref": "custom_variable_options.json" }
  },
  "additionalProperties": false
}