api dashboard antrian per kategori

This commit is contained in:
renaldybrada
2026-02-03 13:45:43 +07:00
parent 3aebfc4efe
commit 1f760ff9d5
8 changed files with 251 additions and 0 deletions
+39
View File
@@ -105,6 +105,31 @@
}
}
},
"/dashboard/antrian-per-kategori/": {
"get": {
"tags": [
"Dashboard"
],
"summary": "Get Antrian Per Kategori",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/dashboard.AntrianPerKategori"
}
}
},
"500": {
"description": "Internal Server Error",
"schema": {
"$ref": "#/definitions/shared.BaseErrorResponse"
}
}
}
}
},
"/reference/dokter/": {
"get": {
"tags": [
@@ -488,6 +513,20 @@
}
}
},
"dashboard.AntrianPerKategori": {
"type": "object",
"properties": {
"id_kategori": {
"type": "integer"
},
"jumlah_antrean": {
"type": "integer"
},
"kategori": {
"type": "string"
}
}
},
"dokter.DokterResponse": {
"type": "object",
"properties": {