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