debian-mirror-gitlab/spec/fixtures/api/schemas/job/trigger.json

28 lines
557 B
JSON
Raw Normal View History

2018-12-05 23:21:45 +05:30
{
"type": "object",
"required": [
"short_token",
"variables"
],
"properties": {
"short_token": { "type": "string" },
"variables": {
"type": "array",
"items": {
"type": "object",
"required": [
"key",
"public"
],
"properties": {
"key": { "type": "string" },
2019-02-15 15:39:39 +05:30
"value": { "type": "string", "optional": true },
2018-12-05 23:21:45 +05:30
"public": { "type": "boolean" }
},
"additionalProperties": false
}
}
},
"additionalProperties": false
}