swagger3 project.yml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. openapi: 3.0.1
  2. info:
  3. title: Project API
  4. description: Latihan Project API
  5. version: 2.0.0
  6. servers:
  7. - url: http://localhost:8080/api/v1
  8. tags:
  9. - name: projects
  10. description: everything project
  11. - name: platforms
  12. description: everything platform
  13. paths:
  14. /projects:
  15. get:
  16. tags:
  17. - projects
  18. summary: find all project
  19. description: return all project
  20. operationId: getProject
  21. responses:
  22. 200:
  23. $ref: '#/components/responses/200AP'
  24. 204:
  25. $ref: '#/components/responses/204'
  26. post:
  27. tags:
  28. - projects
  29. summary: Add new Project
  30. description: Add new Project
  31. operationId: addProject
  32. requestBody:
  33. $ref: '#/components/requestBodies/Project'
  34. responses:
  35. 201:
  36. $ref: '#/components/responses/201'
  37. 400:
  38. $ref: '#/components/responses/400'
  39. 409:
  40. $ref: '#/components/responses/409'
  41. 413:
  42. $ref: '#/components/responses/413'
  43. /projects/{projectId}:
  44. get:
  45. tags:
  46. - projects
  47. summary: find project by ID
  48. description: return project
  49. operationId: getProjectById
  50. parameters:
  51. - $ref: '#/components/parameters/projectPath'
  52. responses:
  53. 200:
  54. $ref: '#/components/responses/200SP'
  55. 404:
  56. $ref: '#/components/responses/404'
  57. put:
  58. tags:
  59. - projects
  60. summary: update existing project by ID
  61. description: update project
  62. operationId: updateProjectById
  63. parameters:
  64. - $ref: '#/components/parameters/projectPath'
  65. requestBody:
  66. $ref: '#/components/requestBodies/Project'
  67. responses:
  68. 200:
  69. $ref: '#/components/responses/200AP'
  70. 400:
  71. $ref: '#/components/responses/400'
  72. 404:
  73. $ref: '#/components/responses/404'
  74. 409:
  75. $ref: '#/components/responses/409'
  76. 413:
  77. $ref: '#/components/responses/413'
  78. delete:
  79. tags:
  80. - projects
  81. summary: Deletes a project
  82. description: delete a project
  83. operationId: deleteProject
  84. parameters:
  85. - $ref: '#/components/parameters/projectPath'
  86. responses:
  87. 200:
  88. description: successful operation
  89. 205:
  90. description: Unable to delete. Data is used.
  91. 404:
  92. $ref: '#/components/responses/404'
  93. /platforms:
  94. get:
  95. tags:
  96. - platforms
  97. summary: find all platform of a project
  98. description: return all platform of a project
  99. operationId: getPlatformByProjectId
  100. parameters:
  101. - $ref: '#/components/parameters/projectQuery'
  102. responses:
  103. 200:
  104. description: successful operation
  105. content:
  106. application/json:
  107. schema:
  108. type: array
  109. items:
  110. $ref: '#/components/schemas/Platform'
  111. post:
  112. tags:
  113. - platforms
  114. summary: Add new platform for a project
  115. description: add new platform for a project
  116. operationId: addPlatformByProjectId
  117. requestBody:
  118. description: Platform object
  119. required: true
  120. content:
  121. application/json:
  122. schema:
  123. type: object
  124. properties:
  125. name:
  126. type: string
  127. example: web
  128. project_id:
  129. type: integer
  130. example: 1
  131. responses:
  132. 201:
  133. description: record successfully added
  134. content:
  135. application/json:
  136. schema:
  137. $ref: '#/components/schemas/Platform'
  138. 400:
  139. $ref: '#/components/responses/400'
  140. 404:
  141. $ref: '#/components/responses/404'
  142. 409:
  143. $ref: '#/components/responses/409'
  144. 413:
  145. $ref: '#/components/responses/413'
  146. /platforms/{platformId}:
  147. get:
  148. tags:
  149. - platforms
  150. summary: find platform by ID
  151. description: return platform by ID
  152. operationId: getPlatformById
  153. parameters:
  154. - $ref: '#/components/parameters/platformPath'
  155. responses:
  156. 200:
  157. description: successful operation
  158. content:
  159. application/json:
  160. schema:
  161. $ref: '#/components/schemas/Platform'
  162. 404:
  163. $ref: '#/components/responses/404'
  164. put:
  165. tags:
  166. - platforms
  167. summary: update existing platform by ID
  168. description: update platform
  169. operationId: updatePlatformById
  170. parameters:
  171. - $ref: '#/components/parameters/platformPath'
  172. requestBody:
  173. description: Platform object
  174. required: true
  175. content:
  176. application/json:
  177. schema:
  178. type: object
  179. properties:
  180. name:
  181. type: string
  182. example: web
  183. project_id:
  184. type: integer
  185. example: 1
  186. responses:
  187. 200:
  188. description: successful operation
  189. content:
  190. application/json:
  191. schema:
  192. $ref: '#/components/schemas/Platform'
  193. 400:
  194. $ref: '#/components/responses/400'
  195. 404:
  196. $ref: '#/components/responses/404'
  197. 409:
  198. $ref: '#/components/responses/409'
  199. 413:
  200. $ref: '#/components/responses/413'
  201. delete:
  202. tags:
  203. - platforms
  204. summary: deletes a platform by ID
  205. description: delete a platform by ID
  206. operationId: deletePlatformById
  207. parameters:
  208. - $ref: '#/components/parameters/platformPath'
  209. responses:
  210. 200:
  211. description: successful operation
  212. 404:
  213. $ref: '#/components/responses/404'
  214. components:
  215. schemas:
  216. Project:
  217. required:
  218. - id
  219. - name
  220. type: object
  221. properties:
  222. id:
  223. type: integer
  224. uniqueItems: true
  225. example: 2
  226. name:
  227. type: string
  228. uniqueItems: true
  229. maximum: 100
  230. example: PI
  231. description:
  232. type: string
  233. maximum: 255
  234. example: PropInspector
  235. Platform:
  236. type: object
  237. required:
  238. - id
  239. - name
  240. properties:
  241. id:
  242. type: integer
  243. uniqueItems: true
  244. example: 3
  245. name:
  246. type: string
  247. uniqueItems: true
  248. maximum: 100
  249. example: mobile
  250. project_id:
  251. $ref: '#/components/schemas/Project'
  252. parameters:
  253. projectPath:
  254. name: projectId
  255. in: path
  256. description: Project ID
  257. required: true
  258. schema:
  259. type: integer
  260. platformPath:
  261. name: platformId
  262. in: path
  263. description: Platform ID
  264. required: true
  265. schema:
  266. type: integer
  267. projectQuery:
  268. name: project
  269. in: query
  270. description: Project ID
  271. schema:
  272. type: integer
  273. responses:
  274. 200SP:
  275. description: successful operation
  276. content:
  277. application/json:
  278. schema:
  279. $ref: '#/components/schemas/Project'
  280. 200AP:
  281. description: successful operation
  282. content:
  283. application/json:
  284. schema:
  285. type: array
  286. items:
  287. $ref: '#/components/schemas/Project'
  288. 201:
  289. description: Record Successfully added
  290. content:
  291. application/json:
  292. schema:
  293. $ref: '#/components/schemas/Project'
  294. 204:
  295. description: empty data
  296. 400:
  297. description: invalid data
  298. 404:
  299. description: ID not found
  300. 409:
  301. description: duplicate data
  302. 413:
  303. description: content too large
  304. requestBodies:
  305. Project:
  306. description: Project object
  307. required: true
  308. content:
  309. application/json:
  310. schema:
  311. type: object
  312. properties:
  313. name:
  314. type: string
  315. example: TM
  316. description:
  317. type: string
  318. example: TelMesengger
  319. Platform:
  320. description: Platform object
  321. required: true
  322. content:
  323. application/json:
  324. schema:
  325. type: object
  326. properties:
  327. name:
  328. type: string
  329. example: mobile
  330. project_id:
  331. $ref: '#/components/schemas/Project'