debian-mirror-gitlab/spec/fixtures/api/schemas/jira_connect/branch.json
2023-03-05 14:24:40 +05:30

38 lines
No EOL
614 B
JSON

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