summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/job/job_details.json
blob: 8218474705c45f569d5d54ef5bafae03b5c1cf83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "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" },
    "runner": { "$ref": "runner.json" },
    "runners": { "$ref": "runners.json" },
    "has_trace": { "type": "boolean" },
    "stage": { "type": "string" }
  }
}