debian-mirror-gitlab/spec/fixtures/api/schemas/variable.json
2023-03-05 14:24:40 +05:30

38 lines
No EOL
568 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"
},
"raw": {
"type": "boolean"
},
"variable_type": {
"type": "string"
},
"environment_scope": {
"type": "string",
"optional": true
}
},
"additionalProperties": false
}