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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
568 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": {
2023-03-04 22:38:38 +05:30
"id": {
"type": "integer"
},
"key": {
"type": "string"
},
"value": {
"type": "string"
},
"masked": {
"type": "boolean"
},
"protected": {
"type": "boolean"
},
"raw": {
"type": "boolean"
},
"variable_type": {
"type": "string"
},
"environment_scope": {
"type": "string",
"optional": true
}
2018-03-17 18:26:18 +05:30
},
"additionalProperties": false
2023-03-04 22:38:38 +05:30
}