summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/jira_connect/pull_request.json
blob: 56ce6faf49866ee1b790211da8c26f643bd2a912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "issueKeys": { "type": "array" },
    "displayId": { "type": "string" },
    "title": { "type": "string" },
    "author": {
      "$ref": "./author.json"
    },
    "commentCount": { "type": "integer" },
    "sourceBranch": { "type": "string" },
    "destinationBranch": { "type": "string" },
    "lastUpdate": { "type": "timestamp" },
    "status": { "type": "string" },
    "sourceBranchUrl": { "type": "uri" },
    "url": { "type": "uri" },
    "updateSequenceId": { "type": "integer" }
  },
  "required": [
    "id", "issueKeys", "displayId", "title", "author", "commentCount",
    "sourceBranch", "destinationBranch", "lastUpdate", "status",
    "sourceBranchUrl", "url", "updateSequenceId"
  ],
  "additionalProperties": false
}