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

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

38 lines
614 B
JSON
Raw Normal View History

2020-11-24 15:15:51 +05:30
{
"type": "object",
"properties": {
2023-03-04 22:38:38 +05:30
"id": {
"type": "string"
},
"issueKeys": {
"type": "array"
},
"name": {
"type": "string"
},
2020-11-24 15:15:51 +05:30
"lastCommit": {
"$ref": "./commit.json"
},
2023-03-04 22:38:38 +05:30
"url": {
"type": "string",
"format": "uri"
},
"createPullRequestUrl": {
"type": "string",
"format": "uri"
},
"updateSequenceId": {
"type": "integer"
}
2020-11-24 15:15:51 +05:30
},
"required": [
2023-03-04 22:38:38 +05:30
"id",
"issueKeys",
"name",
"lastCommit",
"url",
"createPullRequestUrl",
"updateSequenceId"
2020-11-24 15:15:51 +05:30
],
"additionalProperties": false
2023-03-04 22:38:38 +05:30
}