debian-mirror-gitlab/spec/fixtures/api/schemas/public_api/v4/pipeline.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
517 B
JSON
Raw Normal View History

2020-07-28 23:09:34 +05:30
{
"type": "object",
2021-04-17 20:07:23 +05:30
"required": ["id", "project_id", "sha", "ref", "status", "created_at", "updated_at", "web_url"],
2020-07-28 23:09:34 +05:30
"properties": {
"id": {
"type": "integer"
},
2021-04-17 20:07:23 +05:30
"project_id": {
"type": "integer"
},
2020-07-28 23:09:34 +05:30
"sha": {
"type": "string"
},
"ref": {
"type": "string"
},
"status": {
"type": "string"
},
"created_at": {
"type": "string"
},
"updated_at": {
"type": "string"
},
"web_url": {
"type": "string"
}
}
}