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

job.json « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b92ab25bc17b3b2f375d4abefddd98466af0063 (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": [
    "id",
    "name",
    "started",
    "build_path",
    "playable",
    "created_at",
    "updated_at",
    "status"
  ],
  "properties": {
    "id": { "type": "integer" },
    "name": { "type": "string" },
    "started": { "type": "boolean" } ,
    "build_path": { "type": "string" },
    "playable": { "type": "boolean" },
    "created_at": { "type": "string" },
    "updated_at": { "type": "string" },
    "status": { "$ref": "ci_detailed_status.json" }
  },
  "additionalProperties": false
}