debian-mirror-gitlab/spec/fixtures/api/schemas/pipeline_schedule_variable.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
327 B
JSON
Raw Normal View History

2018-03-17 18:26:18 +05:30
{
2019-07-31 22:56:46 +05:30
"type": "object",
"required": [
"key",
"value",
"variable_type"
],
2018-03-17 18:26:18 +05:30
"properties": {
2023-01-13 00:05:48 +05:30
"key": {
"type": "string"
},
"value": {
"type": "string"
},
"variable_type": {
"type": "string"
},
"raw": {
"type": "boolean"
}
2018-03-17 18:26:18 +05:30
},
"additionalProperties": false
2023-01-13 00:05:48 +05:30
}