-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.json
272 lines (272 loc) · 9.63 KB
/
swagger.json
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
{
"openapi" : "3.0.1",
"info" : {
"title" : "Create Branch Wizard for Bitbucket Server REST API",
"description" : "REST API documentation for the plug-in Create Branch Wizard for Bitbucket Server.\n The REST API allows you to maintain the branch mappings of a repository.",
"contact" : {
"name" : "Mibex Software GmbH",
"url" : "https://www.mibexsoftware.com"
},
"license" : {
"name" : "Copyright (c) 2023 by Mibex Software GmbH, Switzerland. All rights reserved.",
"url" : "https://mibexsoftware.com/imprint/"
},
"version" : "v1"
},
"servers" : [ {
"url" : "https://YOUR_BITBUCKET_SERVER/rest/createbranchwizard/1.0"
} ],
"paths" : {
"/projects/{projectKey}/repos/{repositorySlug}/branch-mappings" : {
"get" : {
"tags" : [ "Branch mappings" ],
"summary" : "Returns the branch mappings for this repository.",
"operationId" : "getBranchMappings",
"parameters" : [ {
"name" : "projectKey",
"in" : "path",
"required" : true,
"schema" : {
"type" : "string"
}
}, {
"name" : "repositorySlug",
"in" : "path",
"required" : true,
"schema" : {
"type" : "string"
}
} ],
"responses" : {
"200" : {
"description" : "Branch mappings found",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/RestBranchMappings"
}
}
}
},
"401" : {
"description" : "The currently authenticated user does not have REPO_ADMIN credentials"
},
"404" : {
"description" : "Project or Repository not found"
}
}
},
"put" : {
"tags" : [ "Branch mappings" ],
"summary" : "Updates a branch mapping",
"operationId" : "updateBranchMapping",
"parameters" : [ {
"name" : "projectKey",
"in" : "path",
"required" : true,
"schema" : {
"type" : "string"
}
}, {
"name" : "repositorySlug",
"in" : "path",
"required" : true,
"schema" : {
"type" : "string"
}
} ],
"requestBody" : {
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/BranchMapping"
}
}
},
"required" : true
},
"responses" : {
"200" : {
"description" : "Branch mapping updated",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/BranchMapping"
}
}
}
},
"401" : {
"description" : "The currently authenticated user does not have REPO_ADMIN credentials"
},
"404" : {
"description" : "Project, Repository or Branch Mapping not found"
}
}
},
"post" : {
"tags" : [ "Branch mappings" ],
"summary" : "Creates a branch mapping",
"operationId" : "addBranchMapping",
"parameters" : [ {
"name" : "projectKey",
"in" : "path",
"required" : true,
"schema" : {
"type" : "string"
}
}, {
"name" : "repositorySlug",
"in" : "path",
"required" : true,
"schema" : {
"type" : "string"
}
} ],
"requestBody" : {
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/BranchMapping"
}
}
},
"required" : true
},
"responses" : {
"200" : {
"description" : "Branch mapping created",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/BranchMapping"
}
}
}
},
"400" : {
"description" : "Invalid input parameters like a non-existing Jira project key"
},
"401" : {
"description" : "The currently authenticated user does not have REPO_ADMIN credentials"
},
"404" : {
"description" : "Project or Repository not found"
}
}
},
"delete" : {
"tags" : [ "Branch mappings" ],
"summary" : "Deletes a branch mapping in this repository.",
"operationId" : "deleteBranchMapping",
"parameters" : [ {
"name" : "projectKey",
"in" : "path",
"required" : true,
"schema" : {
"type" : "string"
}
}, {
"name" : "repositorySlug",
"in" : "path",
"required" : true,
"schema" : {
"type" : "string"
}
}, {
"name" : "id",
"in" : "query",
"schema" : {
"type" : "integer",
"format" : "int32"
}
} ],
"responses" : {
"200" : {
"description" : "Branch mapping deleted"
},
"401" : {
"description" : "The currently authenticated user does not have REPO_ADMIN credentials"
},
"404" : {
"description" : "Project, Repository or Branch Mapping not found"
}
}
}
}
},
"components" : {
"schemas" : {
"BranchMapping" : {
"type" : "object",
"properties" : {
"branchFrom" : {
"type" : "string",
"description" : "The branch name you want to branch from when a new branch is created for the chosen JIRA project and issue type."
},
"branchNameStrategy" : {
"type" : "string",
"description" : "The strategy to use for building branch names. Either BRANCH_TYPE or FLEXIBLE_BRANCH_NAME",
"enum" : [ "BRANCH_TYPE", "FLEXIBLE_BRANCH_NAME" ]
},
"branchNameTemplate" : {
"type" : "string",
"description" : "Variables you can use: $issueKey, $fixVersion, $component, $issueSummary, $parentIssueKey. Example: $component/$fixVersion/$issueType/$issueKey-$issueSummary resulting in backend/1.0/bugfix/BRANCHWIZ-12-flexible-branch-strategy"
},
"branchType" : {
"type" : "string",
"description" : "The branch type you want to use for the chosen JIRA project and issue type.",
"enum" : [ "FEATURE", "RELEASE", "CUSTOM", "HOTFIX", "BUGFIX" ]
},
"customBranchPrefix" : {
"type" : "string",
"description" : "The prefix for custom branches, e.g. 'security-fixes'. The plug-in will append the JIRA issue key to the branch name, resulting in branch names like 'security-fixes/MYPROJ-123-CSRF-problem'."
},
"duplications" : {
"type" : "string",
"description" : "List of repositories that use the same branch mappings as this one."
},
"id" : {
"type" : "integer",
"description" : "ID of the branch mapping. Only necessary when updating a mapping.",
"format" : "int32"
},
"jiraComponentId" : {
"type" : "integer",
"description" : "The JIRA component for this branch mapping. This allows you to assign different repositories for different components of the same JIRA project.",
"format" : "int64"
},
"jiraIssueTypeId" : {
"type" : "integer",
"description" : "The JIRA issue type ID for this branch mapping. Whenever a branch is created from this JIRA project and issue type, the chosen branch type and branch from values below are filled in by the plug-in.",
"format" : "int64"
},
"jiraProjectKey" : {
"type" : "string",
"description" : "The JIRA project key that belongs to this repository. You can have multiple mappings with different JIRA projects for the same repository."
},
"overrideBranchFrom" : {
"type" : "boolean",
"description" : "true if you want to override the branch from value (otherwise, the default branch for the repository is taken)."
},
"removeJiraIssueSummary" : {
"type" : "boolean",
"description" : "By default Bitbucket adds the JIRA issue key and the summary to the branch name. If you enable this option, only the JIRA issue key will be used."
}
}
},
"RestBranchMappings" : {
"required" : [ "branchMappings" ],
"type" : "object",
"properties" : {
"branchMappings" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/BranchMapping"
}
}
}
}
}
}
}