summaryrefslogtreecommitdiff
path: root/spec/fixtures/lib/gitlab/metrics/dashboard/schemas/variables.json
blob: aec129111e0a888bb9590eae917e2b9f077a6f8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "type": "object",
  "patternProperties": {
    "^[a-zA-Z0-9_]*$": {
        "anyOf": [
          { "$ref": "text_variable_full_syntax.json" },
          { "type": "string" },
          {
            "type": "array",
            "items": { "type": "string" }
          },
          { "$ref": "custom_variable_full_syntax.json" },
          { "$ref": "metric_label_values_variable_full_syntax.json" }
        ]
      }
  },
  "additionalProperties": false
}