Welcome to mirror list, hosted at ThFree Co, Russian Federation.

job_details.json « job « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdf7b049ab68fe9cdc298c34341fcc663fe8fee9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "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" },
    "stuck": { "type": "boolean" }
  }
}