gitlab-org--gitlab-foss/spec/fixtures/api/schemas/variable.json

25 lines
486 B
JSON
Raw Normal View History

{
2018-02-01 21:18:03 +00:00
"type": "object",
"required": ["variables"],
"properties": {
"variables": {
"type": "array",
"items": {
"required": [
"id",
"key",
"value",
"protected"
],
"properties": {
"id": { "type": "integer" },
"key": { "type": "string" },
"value": { "type": "string" },
"protected": { "type": "boolean" }
}
}
}
},
"additionalProperties": false
}