summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/pipeline_stage.json
blob: f72988a3d3dfabba648c481845562448cb7807b7 (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": "status/ci_detailed_status.json" },
    "path": { "type": "string" },
    "dropdown_path": { "type": "string" }
  },
  "additionalProperties": false
}