Welcome to mirror list, hosted at ThFree Co, Russian Federation.

branch.json « jira_connect « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
}