gitlab-org--gitlab-foss/spec/fixtures/api/schemas/job/job_details.json

22 lines
546 B
JSON
Raw Normal View History

{
"allOf": [
{ "$ref": "job.json" }
],
"description": "An extension of job.json with more detailed information",
"required": [
"artifact",
"runner",
"runners",
"has_trace"
],
"properties": {
"artifact": { "$ref": "artifact.json" },
"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" }
}
}