summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/commit/detail.json
blob: 88a3cad62f6b71eac7bde0f286e20827cae59b5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "type": "object",
  "allOf": [
    { "$ref": "basic.json" },
    {
      "required" : [
        "stats",
        "status",
        "last_pipeline"
      ],
      "properties": {
        "stats": { "$ref": "../commit_stats.json" },
        "status": { "type": ["string", "null"] },
        "last_pipeline": {
          "oneOf": [
            { "type": "null" },
            { "$ref": "../pipeline/basic.json" }
          ]
        }
      }
    }
  ]
}