debian-mirror-gitlab/spec/fixtures/api/schemas/job/trigger.json
2019-02-15 15:39:39 +05:30

27 lines
557 B
JSON

{
"type": "object",
"required": [
"short_token",
"variables"
],
"properties": {
"short_token": { "type": "string" },
"variables": {
"type": "array",
"items": {
"type": "object",
"required": [
"key",
"public"
],
"properties": {
"key": { "type": "string" },
"value": { "type": "string", "optional": true },
"public": { "type": "boolean" }
},
"additionalProperties": false
}
}
},
"additionalProperties": false
}