swagger3 project.yml 8.2 KB

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