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

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

44 lines
725 B
JSON
Raw Normal View History

2017-09-10 17:25:29 +05:30
{
"type": "object",
2023-03-04 22:38:38 +05:30
"required": [
2017-09-10 17:25:29 +05:30
"name",
"commit",
"merged",
"protected",
2018-11-20 20:47:30 +05:30
"default",
2017-09-10 17:25:29 +05:30
"developers_can_push",
2020-05-24 23:13:21 +05:30
"developers_can_merge",
"web_url"
2017-09-10 17:25:29 +05:30
],
2023-03-04 22:38:38 +05:30
"properties": {
"name": {
"type": "string"
},
"commit": {
"$ref": "commit/basic.json"
},
"merged": {
"type": "boolean"
},
"protected": {
"type": "boolean"
},
"default": {
"type": "boolean"
},
"developers_can_push": {
"type": "boolean"
},
"developers_can_merge": {
"type": "boolean"
},
"can_push": {
"type": "boolean"
},
"web_url": {
"type": "string",
"format": "uri"
}
2017-09-10 17:25:29 +05:30
},
"additionalProperties": false
2023-03-04 22:38:38 +05:30
}