debian-mirror-gitlab/spec/fixtures/api/schemas/jira_connect/branch.json
2020-11-24 15:15:51 +05:30

19 lines
483 B
JSON

{
"type": "object",
"properties": {
"id": { "type": "string" },
"issueKeys": { "type": "array" },
"name": { "type": "string" },
"lastCommit": {
"$ref": "./commit.json"
},
"url": { "type": "uri" },
"createPullRequestUrl": { "type": "uri" },
"updateSequenceId": { "type": "integer" }
},
"required": [
"id", "issueKeys", "name", "lastCommit",
"url", "createPullRequestUrl", "updateSequenceId"
],
"additionalProperties": false
}