summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/pipeline.json
blob: 7e553f9e5def0e3edfefce34b24f1d7609009e7e (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
{
  "type": "object",
  "required": ["id", "project_id", "sha", "ref", "status", "created_at", "updated_at", "web_url"],
  "properties": {
    "id": {
      "type": "integer"
    },
    "project_id": {
      "type": "integer"
    },
    "sha": {
      "type": "string"
    },
    "ref": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    },
    "web_url": {
      "type": "string"
    }
  }
}