summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/jira_connect/branch.json
blob: c397d88fa91a38452a3aec27b3b496654da7b92a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "issueKeys": { "type": "array" },
    "name": { "type": "string" },
    "lastCommit": {
      "$ref": "./commit.json"
    },
    "url": { "type": "uri" },
    "createPullRequestUrl": { "type": "uri" },
    "updateSequenceId": { "type": "integer" }
  },
  "required": [
    "id", "issueKeys", "name", "lastCommit",
    "url", "createPullRequestUrl", "updateSequenceId"
  ],
  "additionalProperties": false
}