-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi_doc.yml
More file actions
271 lines (258 loc) · 8.56 KB
/
api_doc.yml
File metadata and controls
271 lines (258 loc) · 8.56 KB
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
swagger: '2.0'
info:
title: Release Manager
description: This application generate version for your software.
contact:
name: Vital Leshchyk
url: https://github.com/itcreator/release-manager-micro
email: vitalleshchyk@gmail.com
license:
name: 3-Clause BSD
url: https://github.com/itcreator/release-manager-micro/blob/master/LICENSE
version: 0.2.0
schemes:
- http
# - https
consumes:
- application/release-manager.v1+json
produces:
- application/release-manager.v1+json
tags:
- name: project
description: manages project
- name: versionSemantic
description: Generate version tag. See also http://semver.org/spec/v2.0.0.html
paths:
/projects/{projectUuid}/version/semantic:
parameters:
- type: string
format: uuid
name: projectUuid
description: Project ID in UUID format
in: path
required: true
post:
operationId: semverGenerate
tags:
- versionSemantic
summary: Generate new semantic version number (based on gitflow)
description: |
Semantic Versioning 2.0.0
See also http://semver.org/spec/v2.0.0.html
Based on branching model [GitFlow](http://nvie.com/posts/a-successful-git-branching-model/)
parameters:
- name: body
in: body
schema:
$ref: "#/definitions/SemverGenerateParams"
responses:
201:
$ref: "#/responses/SemverGenerateResponse"
404:
$ref: "#/responses/SemverProjectNotFoundResponse"
500:
$ref: "#/responses/ErrorResponse"
/projects:
get:
operationId: listProjects
tags:
- project
summary: List the projects
description: |
Get all projects list.
responses:
200:
description: Successful response
# headers: ~
schema:
title: ProjectList
type: array
items:
$ref: "#/definitions/Project"
500:
$ref: "#/responses/ErrorResponse"
post:
operationId: createProject
tags:
- project
summary: Create new projects
parameters:
- name: body
in: body
schema:
$ref: "#/definitions/Project"
responses:
201:
$ref: "#/responses/ProjectResponse"
500:
$ref: "#/responses/ErrorResponse"
/projects/{uuid}:
parameters:
- type: string
description: Project ID in UUID format
format: uuid
name: uuid
in: path
required: true
get:
operationId: readProject
tags:
- project
summary: Read the projects
description: |
Get all projects list
responses:
200:
$ref: "#/responses/ProjectResponse"
404:
$ref: "#/responses/ProjectResponse"
500:
$ref: "#/responses/ErrorResponse"
put:
tags:
- project
operationId: updateProject
parameters:
- name: body
in: body
schema:
$ref: "#/definitions/Project"
responses:
200:
$ref: "#/responses/ProjectResponse"
404:
$ref: "#/responses/ProjectResponse"
500:
$ref: "#/responses/ErrorResponse"
responses:
ErrorResponse:
description: Error response
headers:
X-Error-Code:
type: string
schema:
$ref: "#/definitions/Error"
ProjectResponse:
description: Project response
headers:
X-Error-Code:
type: string
schema:
$ref: "#/definitions/Project"
SemverGenerateResponse:
description: Generate semantic version response
schema:
$ref: "#/definitions/SemverTagSet"
SemverProjectNotFoundResponse:
description: "Semver: project not found response"
schema:
$ref: "#/definitions/Error"
definitions:
Error:
title: Error Structure
description: |
Contains all the properties any error response from the API will contain.
Some properties are optional so might be empty most of the time
type: object
required:
- code
- message
properties:
code:
description: the error code, this is not necessarily the http status code
type: integer
format: int32
message:
description: a human readable version of the error
type: string
helpUrl:
description: an optional url for getting more help about this error
type: string
format: uri
Project:
title: Project
type: object
required:
- name
properties:
uuid:
title: The id of the project.
description: A unique identifier for the project. These are created in ascending order.
type: string
format: uuid
readOnly: true
name:
title: The name of the project.
type: string
minLength: 2
maxLength: 150
x-nullable: false #don't generate reference
description:
title: The description of the project.
type: string
maxLength: 4000
x-nullable: false #don't generate reference
SemverGenerateParams:
title: Paremeters for generate version number for project (Semantic Versioning)
type: object
required:
- major
- minor
- branch
properties:
major:
title: Major number
description: MAJOR version when you make incompatible API changes
type: integer
format: uint32
x-nullable: false #don't generate reference
minor:
title: Minor number
description: MAJOR version when you make incompatible API changes
type: integer
format: uint32
x-nullable: false #don't generate reference
branch:
title: Name of branch for which needed to generate a version tag.
type: string
minLength: 2
maxLength: 150
x-nullable: false #don't generate reference
SemverTagSet:
title: Semver set of tags
type: object
required:
- full
- isLatest
properties:
all:
title: "Array of all tags (e.g: [latest, v1.2.1, v1.2, v1])"
type: array
items:
type: string
x-nullable: false #don't generate reference
full:
title: "The full version tag (e.g: v1.2.1 or v1.2.0-rc.1 or v1.2.0-feature-22.1)"
type: string
minLength: 3
maxLength: 150
x-nullable: false #don't generate reference
minor:
title: "The minor version tag (e.g: v1.2)"
type: string
minLength: 3
maxLength: 150
major:
title: "The minor version tag (e.g: v1)"
type: string
minLength: 3
maxLength: 150
branch:
title: "The version tag which is generated for custom branch (e.g: v1.2.0-rc for release branch)"
type: string
minLength: 3
maxLength: 150
isLatest:
title: True if this version is latest. False - if not.
type: boolean
x-nullable: false #don't generate reference