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

24 lines
594 B
JSON
Raw Normal View History

2018-11-20 20:47:30 +05:30
{
2018-12-05 23:21:45 +05:30
"allOf": [
{ "$ref": "job.json" }
],
2018-11-20 20:47:30 +05:30
"description": "An extension of job.json with more detailed information",
2018-12-05 23:21:45 +05:30
"required": [
"artifact",
"runner",
"runners",
"has_trace",
"stage"
],
2018-11-20 20:47:30 +05:30
"properties": {
"artifact": { "$ref": "artifact.json" },
2018-12-05 23:21:45 +05:30
"terminal_path": { "type": "string" },
"trigger": { "$ref": "trigger.json" },
"deployment_status": { "$ref": "deployment_status.json" },
"runner": { "$ref": "runner.json" },
"runners": { "$ref": "runners.json" },
"has_trace": { "type": "boolean" },
"stage": { "type": "string" }
2018-11-20 20:47:30 +05:30
}
}