2018-03-27 19:54:05 +05:30
|
|
|
{
|
2018-12-05 23:21:45 +05:30
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
|
|
"sha",
|
|
|
|
"created_at",
|
|
|
|
"iid",
|
|
|
|
"tag",
|
|
|
|
"last?",
|
|
|
|
"ref",
|
|
|
|
"id"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"created_at": { "type": "string" },
|
|
|
|
"id": { "type": "integer" },
|
|
|
|
"iid": { "type": "integer" },
|
|
|
|
"last?": { "type": "boolean" },
|
|
|
|
"ref": {
|
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
|
|
"name"
|
|
|
|
],
|
|
|
|
"properties": {
|
2018-12-13 13:39:08 +05:30
|
|
|
"name": { "type": "string" },
|
|
|
|
"ref_path": { "type": "string" }
|
2018-12-05 23:21:45 +05:30
|
|
|
},
|
|
|
|
"additionalProperties": false
|
2018-03-27 19:54:05 +05:30
|
|
|
},
|
2018-12-05 23:21:45 +05:30
|
|
|
"sha": { "type": "string" },
|
2018-12-13 13:39:08 +05:30
|
|
|
"tag": { "type": "boolean" },
|
|
|
|
"user": {
|
|
|
|
"oneOf": [
|
|
|
|
{ "type": "null" },
|
|
|
|
{ "$ref": "entities/user.json" }
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"commit": {
|
|
|
|
"oneOf": [
|
|
|
|
{ "type": "null" },
|
|
|
|
{ "$ref": "entities/commit.json" }
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"deployable": {
|
|
|
|
"oneOf": [
|
|
|
|
{ "type": "null" },
|
|
|
|
{ "$ref": "job/job.json" }
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"manual_actions": {
|
|
|
|
"type": "array",
|
|
|
|
"items": { "$ref": "job/job.json" }
|
|
|
|
},
|
|
|
|
"scheduled_actions": {
|
|
|
|
"type": "array",
|
|
|
|
"items": { "$ref": "job/job.json" }
|
|
|
|
}
|
2018-12-05 23:21:45 +05:30
|
|
|
},
|
|
|
|
"additionalProperties": false
|
2018-03-27 19:54:05 +05:30
|
|
|
}
|