summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/pipeline_stage.json
blob: c01a194618588b24e8254fb43bdd3381efbadb2e (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
25
26
27
28
29
{
  "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
    },
    "retried": {
      "type": "array",
      "items": { "$ref": "job/job.json" },
      "optional": true
    },
    "status": { "$ref": "status/ci_detailed_status.json" },
    "path": { "type": "string" },
    "dropdown_path": { "type": "string" }
  },
  "additionalProperties": false
}