swagger3 project.yml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  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://192.168.100.205: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. 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. 204:
  110. $ref: '#/components/responses/204'
  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. parameters:
  118. - name: project
  119. in: query
  120. description: Project ID
  121. required: true
  122. schema:
  123. type: integer
  124. requestBody:
  125. description: Platform object
  126. required: true
  127. content:
  128. application/json:
  129. schema:
  130. type: object
  131. properties:
  132. name:
  133. type: string
  134. example: web
  135. responses:
  136. 201:
  137. description: record successfully addedd
  138. content:
  139. application/json:
  140. schema:
  141. $ref: '#/components/schemas/Platform'
  142. 400:
  143. $ref: '#/components/responses/400'
  144. 404:
  145. $ref: '#/components/responses/404'
  146. 409:
  147. $ref: '#/components/responses/409'
  148. 413:
  149. $ref: '#/components/responses/413'
  150. /platforms/{platformId}:
  151. get:
  152. tags:
  153. - platforms
  154. summary: find platform by ID
  155. description: return platform by ID
  156. operationId: getPlatformById
  157. parameters:
  158. - $ref: '#/components/parameters/platformPath'
  159. responses:
  160. 200:
  161. description: successful operation
  162. content:
  163. application/json:
  164. schema:
  165. $ref: '#/components/schemas/Platform'
  166. 404:
  167. $ref: '#/components/responses/404'
  168. put:
  169. tags:
  170. - platforms
  171. summary: update existing platform by ID
  172. description: update platform
  173. operationId: updatePlatformById
  174. parameters:
  175. - $ref: '#/components/parameters/platformPath'
  176. requestBody:
  177. description: Platform object
  178. required: true
  179. content:
  180. application/json:
  181. schema:
  182. type: object
  183. properties:
  184. name:
  185. type: string
  186. example: web
  187. project_id:
  188. $ref: '#/components/schemas/Project'
  189. responses:
  190. 200:
  191. description: successful operation
  192. content:
  193. application/json:
  194. schema:
  195. $ref: '#/components/schemas/Platform'
  196. 400:
  197. $ref: '#/components/responses/400'
  198. 404:
  199. $ref: '#/components/responses/404'
  200. 409:
  201. $ref: '#/components/responses/409'
  202. 413:
  203. $ref: '#/components/responses/413'
  204. delete:
  205. tags:
  206. - platforms
  207. summary: deletes a platform by ID
  208. description: delete a platform by ID
  209. operationId: deletePlatformById
  210. parameters:
  211. - $ref: '#/components/parameters/platformPath'
  212. responses:
  213. 200:
  214. description: successful operation
  215. 404:
  216. $ref: '#/components/responses/404'
  217. components:
  218. schemas:
  219. Project:
  220. required:
  221. - id
  222. - name
  223. type: object
  224. properties:
  225. id:
  226. type: integer
  227. uniqueItems: true
  228. example: 2
  229. name:
  230. type: string
  231. uniqueItems: true
  232. maximum: 100
  233. example: PI
  234. description:
  235. type: string
  236. maximum: 255
  237. example: PropInspector
  238. Platform:
  239. type: object
  240. required:
  241. - id
  242. - name
  243. properties:
  244. id:
  245. type: integer
  246. uniqueItems: true
  247. example: 3
  248. name:
  249. type: string
  250. uniqueItems: true
  251. maximum: 100
  252. example: mobile
  253. project_id:
  254. $ref: '#/components/schemas/Project'
  255. parameters:
  256. projectPath:
  257. name: projectId
  258. in: path
  259. description: Project ID
  260. required: true
  261. schema:
  262. type: integer
  263. platformPath:
  264. name: platformId
  265. in: path
  266. description: Platform ID
  267. required: true
  268. schema:
  269. type: integer
  270. projectQuery:
  271. name: project
  272. in: query
  273. description: Project ID
  274. schema:
  275. type: integer
  276. responses:
  277. 200SP:
  278. description: successful operation
  279. content:
  280. application/json:
  281. schema:
  282. $ref: '#/components/schemas/Project'
  283. 200AP:
  284. description: successful operation
  285. content:
  286. application/json:
  287. schema:
  288. type: array
  289. items:
  290. $ref: '#/components/schemas/Project'
  291. 201:
  292. description: Record Successfully added
  293. content:
  294. application/json:
  295. schema:
  296. $ref: '#/components/schemas/Project'
  297. 204:
  298. description: empty data
  299. 400:
  300. description: invalid data
  301. 404:
  302. description: ID not found
  303. 409:
  304. description: duplicate data
  305. 413:
  306. description: content too large
  307. requestBodies:
  308. Project:
  309. description: Project object
  310. required: true
  311. content:
  312. application/json:
  313. schema:
  314. type: object
  315. properties:
  316. name:
  317. type: string
  318. example: TM
  319. description:
  320. type: string
  321. example: TelMesengger
  322. Platform:
  323. description: Platform object
  324. required: true
  325. content:
  326. application/json:
  327. schema:
  328. type: object
  329. properties:
  330. name:
  331. type: string
  332. example: mobile
  333. project_id:
  334. $ref: '#/components/schemas/Project'