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

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

63 lines
1 KiB
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"
},
"displayId": {
"type": "string"
},
"title": {
"type": "string"
},
2020-11-24 15:15:51 +05:30
"author": {
"$ref": "./author.json"
},
2023-03-04 22:38:38 +05:30
"commentCount": {
"type": "integer"
},
"sourceBranch": {
"type": "string"
},
"destinationBranch": {
"type": "string"
},
"lastUpdate": {
"type": "string",
"format": "date-time"
},
"status": {
"type": "string"
},
"sourceBranchUrl": {
"type": "string",
"format": "uri"
},
"url": {
"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",
"displayId",
"title",
"author",
"commentCount",
"sourceBranch",
"destinationBranch",
"lastUpdate",
"status",
"sourceBranchUrl",
"url",
"updateSequenceId"
2020-11-24 15:15:51 +05:30
],
"additionalProperties": false
2023-03-04 22:38:38 +05:30
}