Welcome to mirror list, hosted at ThFree Co, Russian Federation.

variable.json « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
}