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

detail.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: d3cabdde45ccf781faa55215a5ea8cecee6dbfa7 (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
30
31
32
{
  "type": "object",
  "allOf": [
    { "$ref": "basic.json" },
    {
      "properties": {
        "before_sha": { "type": ["string", "null"] },
        "tag": { "type": ["boolean"] },
        "yaml_errors": { "type": ["string", "null"] },
        "user": {
          "anyOf": [
            { "type": ["object", "null"] },
            { "$ref": "../user/basic.json" }
          ]
        },
        "created_at": { "type": ["string", "null"], "format": "date-time" },
        "updated_at": { "type": ["string", "null"], "format": "date-time" },
        "started_at": { "type": ["string", "null"], "format": "date-time" },
        "finished_at": { "type": ["string", "null"], "format": "date-time" },
        "committed_at": { "type": ["string", "null"], "format": "date-time"  },
        "duration": { "type": ["number", "null"] },
        "coverage": { "type": ["string", "null"] },
        "detailed_status": {
          "oneOf": [
            { "type": "null" },
            { "$ref": "../../../status/ci_detailed_status.json" }
          ]
        }
      }
    }
  ]
}