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