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

basic.json « pipeline « 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: a7207d2d9911460b8ab0a09d5286432ee810d406 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "type": "object",
  "required" : [
    "id",
    "sha",
    "ref",
    "status",
    "web_url"
  ],
  "properties" : {
    "id": { "type": "integer" },
    "sha": { "type": "string" },
    "ref": { "type": "string" },
    "status": { "type": "string" },
    "web_url": { "type": "string" }
  }
}