debian-mirror-gitlab/spec/fixtures/api/schemas/job/job_details.json
2020-03-13 15:44:24 +05:30

30 lines
767 B
JSON

{
"allOf": [
{ "$ref": "job.json" }
],
"description": "An extension of job.json with more detailed information",
"required": [
"artifact",
"runner",
"runners",
"has_trace",
"stage"
],
"properties": {
"artifact": { "$ref": "artifact.json" },
"terminal_path": { "type": "string" },
"trigger": { "$ref": "trigger.json" },
"deployment_status": { "$ref": "deployment_status.json" },
"deployment_cluster": {
"oneOf": [
{ "$ref": "../deployment_cluster.json" },
{ "type": "null" }
]
},
"runner": { "$ref": "runner.json" },
"runners": { "$ref": "runners.json" },
"has_trace": { "type": "boolean" },
"stage": { "type": "string" },
"stuck": { "type": "boolean" }
}
}