forked from KamarRS-App/BackEnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenAPI.yml
2700 lines (2603 loc) · 77.4 KB
/
OpenAPI.yml
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: CAPSTONE PROJECT kamarRS
version: 1.0.0
description: Dokumentasi Project
contact:
name: kamarRS team
email: [email protected]
license:
name: MIT
url: https://opensource.org/licenses/MIT
servers:
# Added by API Auto Mocking Plugin
# Added by API Auto Mocking Plugin
- description: SwaggerHub API Auto Mocking
url: https://virtserver.swaggerhub.com/kamar-rs/kamar-rs/1.0.0
- description: SwaggerHub API Auto Mocking
url: https://virtserver.swaggerhub.com/Anti-Gen/CAPSTONE-PORJECT-kamarRS/1.0.0
- description: kamarRS server
url: http://34.135.58.227
- description: kamarRS domain
url: https://rawatinap.online
tags:
- name: Auth
description: "authentication"
- name: Users
description: "Manajemen data user"
- name: Hospital staffs
description: "Manajemen data staff Rumah sakit"
- name: Hospitals
description: "Manajemen data Rumah sakit"
- name: Patiens
description: "Manajemen data pasien"
- name: Hospital Beds
description: "Manajemen data tempat tidur di Rumah sakit"
- name: Doctors
description: "Manajemen data Dokter"
- name: Policlinics
description: "Manajemen data Poliklinik"
- name: Daily Practice
description: "Manajemen data praktek harian"
- name: Check Up Reservations
description: "Manajemen data reservasi checkup"
- name: Beds Registrations
description: "Manajemen data reservasi tempat tidur"
- name: Invoice
description: "Midtrans Callback"
- name: Kamar Rs Team
description: "Manajemen data tim kamar rs"
paths:
/login/users:
post:
tags:
- Auth
summary: Login
description: Login akun user
requestBody:
required: true
content:
application/json:
schema:
type: object
example:
email: "[email protected]"
kata_sandi: "123456"
responses:
'201':
description: Login berhasil.
content:
application/json:
schema:
type: object
example:
status: "success"
message: "Login berhasil"
data:
id: 1
email: "[email protected]"
token: "afkdnnifnnj&h3"
'404' :
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
/oauth/login/users:
get:
tags:
- Auth
summary: Login
description: Login akun user dengan akun google
responses:
'201':
description: Login berhasil.
content:
application/json:
schema:
type: object
example:
status: "success"
message: "Login berhasil"
data:
id: 1
email: "[email protected]"
token: "afkdnnifnnj&h3"
role: "user"
'404' :
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
/login/staffs:
post:
tags:
- Auth
summary: Login
description: Login akun staff
requestBody:
required: true
content:
application/json:
schema:
type: object
example:
email: "[email protected]"
kata_sandi : "123456"
responses:
'201':
description: Login berhasil.
content:
application/json:
schema:
type: object
example:
status: "success"
message: "Login berhasil"
data:
id: 1
email: "[email protected]"
token: "afkdnnifnnj&h3"
role: "Admin"
'404' :
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
/login/kamarrsteams:
post:
tags:
- Auth
summary: Login
description: Login akun kamar rs team
requestBody:
required: true
content:
application/json:
schema:
type: object
example:
email: "[email protected]"
kata_sandi: "123456"
responses:
'201':
description: Login berhasil.
content:
application/json:
schema:
type: object
example:
status: "success"
message: "Login berhasil"
data:
id: 1
email: "[email protected]"
peran: "super admin"
token: "afkdnnifnnj&h3"
'404' :
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
/users:
post:
tags:
- Users
summary: add user
description: Menambah data User (register)
security:
- JWTAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
example:
nama: "budi"
email: "[email protected]"
no_nik: "7109287651997"
no_kk: "7190398173764"
kata_sandi: "qwerty"
no_telepon: "081234"
responses:
'201':
description: Register berhasil.
content:
application/json:
schema:
type: object
example:
status: "success"
message: "register berhasil"
'400':
description: Register gagal.
content:
application/json:
schema:
type: object
example:
status: "failed"
message: "register gagal."
'500':
$ref: '#/components/responses/500'
put:
tags:
- Users
summary: Update data user
description: Memperbarui data user
security:
- JWTAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
example:
nama: "budi"
email: "[email protected]"
no_nik: "7109287651997"
no_kk: "7190398173764"
kata_sandi: "qwerty"
no_telepon: "081234"
responses:
'201':
description: Update berhasil.
content:
application/json:
schema:
type: object
example:
status: "success"
message: "Update berhasil"
'400':
description: Update gagal.
content:
application/json:
schema:
type: object
example:
status: "failed"
message: "Update gagal."
'500':
$ref: '#/components/responses/500'
get:
tags:
- Users
summary: Get user by user_id
description: Menampilkan data user yang sedang login
security:
- JWTAuth: []
responses:
'200':
description: A list of users
content:
application/json:
schema:
type: object
example:
status: "success"
message: "success get all users"
data:
id : 1
nama: "budi"
email: "[email protected]"
no_nik: "7109287651997"
no_kk: "7190398173764"
no_telepon: "081234"
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
delete:
tags:
- Users
summary: Delete data users
description: Menghapus data user
security:
- JWTAuth: []
responses:
'201':
description: Delete berhasil.
content:
application/json:
schema:
type: object
example:
status: "success"
message: "Delete success"
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
##############################################################
##############################################################
/staffs:
post:
tags:
- Hospital staffs
summary: add Hospital staffs
description: Menambah akun untuk staff rumah sakit
security:
- JWTAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
example:
nama: teguh
email: [email protected]
kata_sandi: "12345"
peran: Admin
hospital_id: 1
responses:
'201':
description: Register berhasil.
content:
application/json:
schema:
type: object
example:
status: "success"
message: "register berhasil"
'400':
description: Register gagal.
content:
application/json:
schema:
type: object
example:
status: "failed"
message: "register gagal."
'500':
$ref: '#/components/responses/500'
get:
tags:
- Hospital staffs
summary: Get staff data
description: Menampilkan data staff rumah sakit
security:
- JWTAuth: []
responses:
'200':
description: A list of staff
content:
application/json:
schema:
type: object
example:
status: "success"
message: "success get detail staff"
data:
id : 1
nama: teguh
email: [email protected]
kata_sandi: "12345"
peran: Admin
hospital id : 1
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
/staffs/{id_staff}:
put:
tags:
- Hospital staffs
summary: Update staff data
description: Memperbarui data staff Rumah sakit
security:
- JWTAuth: []
parameters:
- name: id_staff
description: "id patient"
required: true
in: path
schema:
description: "id patient"
type: integer
example: 1
requestBody:
required: true
content:
application/json:
schema:
type: object
example:
nama: teguh
email: [email protected]
kata_sandi: "12345"
peran: Admin
hospital_id: 1
responses:
'201':
description: Update berhasil.
content:
application/json:
schema:
type: object
example:
status: "success"
message: "update data staff berhasil"
'400':
description: Update gagal.
content:
application/json:
schema:
type: object
example:
status: "failed"
message: "Update data gagal."
'500':
$ref: '#/components/responses/500'
delete:
tags:
- Hospital staffs
summary: Delete hospital staff account
description: Menghapus akun staff rumah sakit
security:
- JWTAuth: []
parameters:
- name: id_staff
description: "id patient"
required: true
in: path
schema:
description: "id patient"
type: integer
example: 1
responses:
'201':
description: Delete berhasil.
content:
application/json:
schema:
type: object
example:
status: "success"
message: "Delete success"
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
##############################################################
##############################################################
/patients:
post:
tags:
- Patiens
summary: add new patient
description: add new patient information to user profile
security:
- JWTAuth: []
requestBody:
required: true
content:
multipart/form-data:
schema:
$ref: "#/components/schemas/patientRequest"
example:
user_id: 1
no_kk: "321654987321654"
nik: "321654987321654"
nama_pasien: "monkey d. luffy"
jenis_kelamin: "laki-laki"
usia: "20"
nama_wali: "monkey d. dragon"
no_telepon_wali: "081321654987"
email_wali: "[email protected]"
alamat_ktp: "wind mill village"
provinsi_ktp: "east blue"
kabupaten/kota_ktp: "doma kingdom"
alamat_domisili: "thousand sunny"
provinsi_domisili: "grand line"
kabupaten/kota_domisili: "always moving"
tanggal_lahir: "1990-08-01"
no_bpjs: "789456123"
kelas_bpjs: "kelas_1"
foto_ktp: "kanohhtihafnuef.jpg"
foto_bpjs: "kanjtquihgsa.jpg"
responses:
'201':
description: "success create patient info"
content:
application/json:
schema:
$ref: "#/components/schemas/ResponseWithoutData"
example:
status: "success"
message: "success add new patient"
'400':
$ref: "#/components/responses/400"
"401" :
$ref : "#/components/responses/401"
"404" :
$ref : "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
/patients/{patient_id}:
put:
tags:
- Patiens
summary: Update Patien Data
description: Memperbarui data pasien
security:
- JWTAuth: []
parameters:
- name: patient_id
description: "id patient"
required: true
in: path
schema:
description: "id patient"
type: integer
example: 1
requestBody:
required: true
content:
multipart/form-data:
schema:
$ref: "#/components/schemas/patientRequest"
example:
user_id: 1
no_kk: "321654987321654"
nik: "321654987321654"
nama_pasien: "monkey d. luffy"
nama_wali: "monkey d. dragon"
jenis_kelamin: "laki-laki"
usia: "20"
no_telepon_wali: "081321654987"
email_wali: "[email protected]"
alamat_ktp: "wind mill village"
provinsi_ktp: "east blue"
kabupaten/kota_ktp: "doma kingdom"
alamat_domisili: "thousand sunny"
provinsi_domisili: "grand line"
kabupaten/kota_domisili: "always moving"
tanggal_lahir: "1990-08-01"
no_bpjs: "789456123"
kelas_bpjs: "kelas_1"
foto_ktp: "kanohhtihafnuef.jpg"
foto_bpjs: "kanjtquihgsa.jpg"
responses:
'200':
description: "update patientdata "
content:
application/json:
schema:
$ref: "#/components/schemas/ResponseWithoutData"
example:
status: "success"
message: "success update patient"
"400" :
$ref : "#/components/responses/400"
"401" :
$ref : "#/components/responses/401"
"404" :
$ref : "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
delete:
tags:
- Patiens
summary: Delete patient
description: Menghapus data pasien
security:
- JWTAuth: []
parameters:
- name: patient_id
description: "id patient"
required: true
in: path
schema:
description: "id patient"
type: integer
example: 1
responses:
'200':
description: "delete patient data"
content:
application/json:
schema:
$ref: "#/components/schemas/ResponseWithoutData"
example:
status: "success"
message: "success delete patient"
"400" :
$ref : "#/components/responses/400"
"401" :
$ref : "#/components/responses/401"
"404" :
$ref : "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
get:
tags:
- Patiens
summary: Get Detail patien
description: Menampilakn data detail pasien
security:
- JWTAuth: []
parameters:
- name: patient_id
description: "id patient"
required: true
in: path
schema:
description: "id patient"
type: integer
example: 1
responses:
'200':
description: "succes get patient by id"
content:
application/json:
schema:
type: object
$ref: "#/components/schemas/ResponsePatient"
example:
status: "succes"
message: "success get patient data by id"
data:
user_id: 1
no_kk: "321654987321654"
nik: "321654987321654"
nama_pasien: "monkey d. luffy"
jenis_kelamin: "laki-laki"
usia: "20"
nama_wali: "monkey d. dragon"
email_wali: "[email protected]"
no_telepon_wali: "081321654987"
alamat_ktp: "wind mill village"
provinsi_ktp: "east blue"
kabupaten/kota_ktp: "doma kingdom"
alamat_domisili: "thousand sunny"
provinsi_domisili: "grand line"
kabupaten/kota_domisili: "always moving"
tanggal_lahir: "1990-08-01"
no_bpjs: "789456123"
kelas_bpjs: "kelas_1"
foto_ktp: "kanohhtihafnuef.jpg"
foto_bpjs: "kanjtquihgsa.jpg"
"400" :
$ref : "#/components/responses/400"
"401" :
$ref : "#/components/responses/401"
"404" :
$ref : "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
/users/{user_id}/patients:
get:
tags:
- Patiens
summary: Get List of Patient realted to user
description: Menampilakn pasien yang didaftarkan user
security:
- JWTAuth: []
parameters:
- name: user_id
description: "id user"
required: true
in: path
schema:
description: "id user"
type: integer
example: 1
responses:
'200':
description: "succes get patient by user_id"
content:
application/json:
schema:
type: object
$ref: "#/components/schemas/ResponsePatient"
example:
status: "succes"
message: "success get patient data by user_id"
data:
- id: 1
user_id: 1
no_kk: "321654987321654"
nik: "321654987321654"
nama_pasien: "monkey d. luffy"
jenis_kelamin: "laki-laki"
usia: "20"
nama_wali: "monkey d. dragon"
email_wali: "[email protected]"
no_telepon_wali: "081321654987"
alamat_ktp: "wind mill village"
provinsi_ktp: "east blue"
kabupaten/kota_ktp: "doma kingdom"
alamat_domisili: "thousand sunny"
provinsi_domisili: "grand line"
kabupaten/kota_domisili: "always moving"
tanggal_lahir: "1990-08-01"
no_bpjs: "789456123"
kelas_bpjs: "kelas_1"
foto_ktp: "kanohhtihafnuef.jpg"
foto_bpjs: "kanjtquihgsa.jpg"
- id: 2
user_id: 1
no_kk: "321654987321654"
nik: "321654987321654"
nama_pasien: "monkey d. luffy"
jenis_kelamin: "laki-laki"
usia: "20"
nama_wali: "monkey d. dragon"
email_wali: "[email protected]"
no_telepon_wali: "081321654987"
alamat_ktp: "wind mill village"
provinsi_ktp: "east blue"
kabupaten/kota_ktp: "doma kingdom"
alamat_domisili: "thousand sunny"
provinsi_domisili: "grand line"
kabupaten/kota_domisili: "always moving"
tanggal_lahir: "1990-08-01"
no_bpjs: "789456123"
kelas_bpjs: "kelas_1"
foto_ktp: "kanohhtihafnuef.jpg"
foto_bpjs: "kanjtquihgsa.jpg"
"400" :
$ref : "#/components/responses/400"
"401" :
$ref : "#/components/responses/401"
"404" :
$ref : "#/components/responses/404"
'500':
$ref: "#/components/responses/500"
/hospitals:
post:
tags:
- Hospitals
summary: Register Hospital
description: Menambahkan Rumah sakit sebagai mitra
security:
- JWTAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
example:
kode_rs: "3275013"
nama: "RSUD dr. Chasbullah Abdulmadjid"
foto: "http://url.jpg"
alamat: "Jalan Pramuka №55, Marga Jaya, Kec. Bekasi Selatan, Kota Bekasi, Jawa Barat 17141"
provinsi: "jawa barat"
kabupaten/kota: "Kota bekasi"
kecamatan: "Bekasi Selatan"
no_telepon: "021000"
email: "[email protected]"
kelas_rs: "Rumah Sakit Umum Kelas B"
pemilik/pengelola: "Pemprov"
jumlah_tempat_tidur: "100"
status_penggunaan: "RSUD Provinsi"
biaya_pendaftaran: 25000
responses:
'200':
description: add hospital
content:
application/json:
schema:
type: object
example:
status: "success"
message: "success Add hospital"
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
put:
tags:
- Hospitals
summary: Update Hospital's data
description: Memperbarui data rumah sakit
security:
- JWTAuth: []
requestBody:
required: true
content:
application/json:
schema:
type: object
example:
kode_rs: "3275013"
nama: "RSUD dr. Chasbullah Abdulmadjid"
foto: "http://url.jpg"
alamat: "Jalan Pramuka №55, Marga Jaya, Kec. Bekasi Selatan, Kota Bekasi, Jawa Barat 17141"
provinsi: "jawa barat"
kabupaten/kota: "Kota bekasi"
kecamatan: "Bekasi Selatan"
no_telepon: "024400"
email: "rsbekasi.mail.com"
kelas_rs: "Rumah Sakit Umum Kelas B"
pemilik/pengelola: "Pemprov"
jumlah_tempat_tidur: "100"
status_penggunaan: "RSUD Provinsi"
biaya_pendaftaran: 25000
responses:
'200':
description: update hospital's data
content:
application/json:
schema:
type: object
example:
status: "success"
message: "success update data hospital"
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
delete:
tags:
- Hospitals
summary: Delete Hospital
description: Menghapus Data Rumah sakit
security:
- JWTAuth: []
responses:
'201':
description: Delete berhasil.
content:
application/json:
schema:
type: object
example:
status: "success"
message: "Delete success"
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
get:
tags:
- Hospitals
summary: Get All hospitals
description: Menampilkan Daftar Rumah sakit
parameters:
- name: provinsi
description: "filter hospitals by provinsi"
required: false
in: query
schema:
type: string
example: "jawa timur"
- name: kabupaten_kota
description: "filter hospitals by kabupaten/kota"
required: false
in: query
schema:
type: string
example: "kota malang"
- name: nama
description: "filter hospitals by name"
required: false
in: query
schema:
type: string
example: "rs byouin"
- name: page
description: "shows result per page"
required: false
in: query
schema:
type: integer
example: 1
responses:
'200':
description: A list of hospitals
content:
application/json:
schema:
type: object
example:
status: "success"
message: "success get hospitals"
data:
- id : 1
kode_rs: "3275013"
nama: "RSUD dr. Chasbullah Abdulmadjid"
foto: "http://url.jpg"
alamat: "Jalan Pramuka №55, Marga Jaya, Kec. Bekasi Selatan, Kota Bekasi, Jawa Barat 17141"
provinsi: "jawa barat"
kabupaten/kota: "Kota bekasi"
kecamatan: "Bekasi Selatan"
no_telepon: "024400"
email: "rsbekasi.mail.com"
kelas_rs: "Rumah Sakit Umum Kelas B"
pemilik/pengelola: "Pemprov"
jumlah_tempat_tidur: "100"
status_penggunaan: "RSUD Provinsi"
biaya_pendaftaran: "25.000"
- id : 2
kode_rs: "1174024"
nama: "RS Umum Az-Zuhra "
foto: "http://url.jpg"
alamat: "Jl. Pasar Inpres No.2 Desa Kutablang Kec. Banda"
provinsi: "sumatra"
kabupaten/kota: "Aceh"
kecamatan: "Banda sakti"
no_telepon: "024440"
email: rsbekasi.mail.com"
kelas_rs: "D"
pemilik/pengelola: "perusahaan"
jumlah_tempat_tidur: "30"
status_penggunaan: "RSUD swasta"
biaya_pendaftaran: "25.000"
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
/hospitals/{hospital_id}:
get:
tags:
- Hospitals
summary: Get Detail Hospital
description: Menampilkan detail rumah sakit
parameters:
- name: hospital_id
description: "id rumah sakit"
required: true
in: path
schema:
description: "id rumah sakit"
type: integer
example: 1
responses:
'200':
description: hospital's Details
content:
application/json:
schema:
type: object
example:
status: "success"
message: "success get hospitals"
data:
id : 1
kode_rs: "3275013"
nama: "RSUD dr. Chasbullah Abdulmadjid"
foto: "http://url.jpg"
alamat: "Jalan Pramuka №55, Marga Jaya, Kec. Bekasi Selatan, Kota Bekasi, Jawa Barat 17141"
provinsi: "jawa barat"