api reference diagnosa
This commit is contained in:
No files matched your search
+78
-4
@@ -130,6 +130,39 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/reference/diagnosa/": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"Reference"
|
||||
],
|
||||
"summary": "Get List Diagnosa",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "Search keyword",
|
||||
"name": "search",
|
||||
"in": "query"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/diagnosa.DiagnosaModel"
|
||||
}
|
||||
}
|
||||
},
|
||||
"500": {
|
||||
"description": "Internal Server Error",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/shared.BaseErrorResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/reference/dokter/": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -319,9 +352,14 @@
|
||||
"definitions": {
|
||||
"antrianoperasi.CreatePasienOperasiRequest": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"diagnosisItems",
|
||||
"tindakanItems"
|
||||
],
|
||||
"properties": {
|
||||
"diagnosisItems": {
|
||||
"type": "array",
|
||||
"minItems": 1,
|
||||
"items": {
|
||||
"$ref": "#/definitions/antrianoperasi.DiagnosisItemRequest"
|
||||
}
|
||||
@@ -343,6 +381,7 @@
|
||||
},
|
||||
"tindakanItems": {
|
||||
"type": "array",
|
||||
"minItems": 1,
|
||||
"items": {
|
||||
"$ref": "#/definitions/antrianoperasi.TindakanItemRequest"
|
||||
}
|
||||
@@ -351,6 +390,11 @@
|
||||
},
|
||||
"antrianoperasi.DiagnosisItemRequest": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"diagnosa",
|
||||
"jenisDiagnosa",
|
||||
"kodeDiagnosa"
|
||||
],
|
||||
"properties": {
|
||||
"diagnosa": {
|
||||
"type": "string"
|
||||
@@ -382,6 +426,9 @@
|
||||
},
|
||||
"antrianoperasi.FormDataRequest": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"nomorTelepon"
|
||||
],
|
||||
"properties": {
|
||||
"alamat": {
|
||||
"type": "string"
|
||||
@@ -400,6 +447,7 @@
|
||||
},
|
||||
"nomorTelepon": {
|
||||
"type": "array",
|
||||
"minItems": 1,
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
@@ -416,7 +464,10 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"diagnosa": {
|
||||
"type": "string"
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
@@ -427,9 +478,6 @@
|
||||
"kategori": {
|
||||
"type": "string"
|
||||
},
|
||||
"kodeDiagnosa": {
|
||||
"type": "string"
|
||||
},
|
||||
"namaPasien": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -459,11 +507,18 @@
|
||||
},
|
||||
"tglDaftar": {
|
||||
"type": "string"
|
||||
},
|
||||
"tindakan": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"antrianoperasi.RencanaOperasiRequest": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"spesialis",
|
||||
"subSpesialis"
|
||||
],
|
||||
"properties": {
|
||||
"kategoriOperasi": {
|
||||
"type": "integer"
|
||||
@@ -501,6 +556,11 @@
|
||||
},
|
||||
"antrianoperasi.TindakanItemRequest": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"kodeTindakan",
|
||||
"tindakan",
|
||||
"tindakanTambahan"
|
||||
],
|
||||
"properties": {
|
||||
"kodeTindakan": {
|
||||
"type": "string"
|
||||
@@ -527,6 +587,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"diagnosa.DiagnosaModel": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"jenisPenyakit": {
|
||||
"type": "string"
|
||||
},
|
||||
"kodeDiagnosa": {
|
||||
"type": "string"
|
||||
},
|
||||
"sebabPenyakit": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dokter.DokterResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
||||
Reference in New Issue
Block a user