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
|
|
|
}
|