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

pipeline_stage.json « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb2667295f0d841bb23e1aa8f6492f29be2a06e4 (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
{
  "type": "object",
  "required" : [
    "name",
    "title",
    "status",
    "path",
    "dropdown_path"
  ],
  "properties" : {
    "name": { "type": "string" },
    "title": { "type": "string" },
    "groups": { "optional": true },
    "latest_statuses": {
      "type": "array",
      "items": { "$ref": "job/job.json" },
      "optional": true
    },
    "status": { "$ref": "ci_detailed_status.json" },
    "path": { "type": "string" },
    "dropdown_path": { "type": "string" }
  },
  "additionalProperties": false
}