debian-mirror-gitlab/spec/fixtures/api/schemas/variable.json

21 lines
449 B
JSON
Raw Normal View History

2018-03-17 18:26:18 +05:30
{
"type": "object",
"required": [
"id",
"key",
"value",
2019-07-07 11:18:12 +05:30
"masked",
2018-03-17 18:26:18 +05:30
"protected"
],
"properties": {
"id": { "type": "integer" },
"key": { "type": "string" },
"value": { "type": "string" },
2019-07-07 11:18:12 +05:30
"masked": { "type": "boolean" },
2018-03-17 18:26:18 +05:30
"protected": { "type": "boolean" },
2020-03-13 15:44:24 +05:30
"variable_type": { "type": "string" },
2018-03-17 18:26:18 +05:30
"environment_scope": { "type": "string", "optional": true }
},
"additionalProperties": false
}