debian-mirror-gitlab/spec/fixtures/api/schemas/variable.json
2020-03-13 15:44:24 +05:30

21 lines
449 B
JSON

{
"type": "object",
"required": [
"id",
"key",
"value",
"masked",
"protected"
],
"properties": {
"id": { "type": "integer" },
"key": { "type": "string" },
"value": { "type": "string" },
"masked": { "type": "boolean" },
"protected": { "type": "boolean" },
"variable_type": { "type": "string" },
"environment_scope": { "type": "string", "optional": true }
},
"additionalProperties": false
}