job_details.json 594 Bytes
Newer Older
1
{
2 3 4
  "allOf": [
    { "$ref": "job.json" }
  ],
5
  "description": "An extension of job.json with more detailed information",
6
  "required": [
7 8 9
    "artifact",
    "runner",
    "runners",
10 11
    "has_trace",
    "stage"
12
  ],
13
  "properties": {
14
    "artifact": { "$ref": "artifact.json" },
15
    "terminal_path": { "type": "string" },
16
    "trigger": { "$ref": "trigger.json" },
Steve Azzopardi's avatar
Steve Azzopardi committed
17
    "deployment_status": { "$ref": "deployment_status.json" },
18
    "runner": { "$ref": "runner.json" },
19
    "runners": { "$ref": "runners.json" },
20 21
    "has_trace": { "type": "boolean" },
    "stage": { "type": "string" }
22 23
  }
}