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

pipeline.json « v4 « public_api « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f83844a115d461e74796fc737ea08dc907b0e59d (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
{
  "type": "object",
  "required": ["id", "sha", "ref", "status", "created_at", "updated_at", "web_url"],
  "properties": {
    "id": {
      "type": "integer"
    },
    "sha": {
      "type": "string"
    },
    "ref": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    },
    "web_url": {
      "type": "string"
    }
  }
}