summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/variable.json
blob: 6f6b044115bbdaa275bf96e906a6fe3ad45acf72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "type": "object",
  "required": [
    "id",
    "key",
    "value",
    "protected"
  ],
  "properties": {
    "id": { "type": "integer" },
    "key": { "type": "string" },
    "value": { "type": "string" },
    "protected": { "type": "boolean" },
    "environment_scope": { "type": "string", "optional": true }
  },
  "additionalProperties": false
}