Perbaikan Tools, Perbaikan

This commit is contained in:
2025-08-19 10:48:40 +07:00
parent 4d72e31352
commit 615db47606
9 changed files with 314 additions and 18 deletions

View File

@@ -273,6 +273,50 @@
}
}
},
"/api/v1/bpjs/reference/referensi/diagnosa": {
"get": {
"description": "Get all diagnosa reference data",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"bpjs/reference"
],
"summary": "Get all diagnosa reference data",
"responses": {
"200": {
"description": "Success response",
"schema": {
"$ref": "#/definitions/models.DiagnosaResponse"
}
},
"400": {
"description": "Bad request",
"schema": {
"type": "object",
"additionalProperties": true
}
},
"404": {
"description": "Data not found",
"schema": {
"type": "object",
"additionalProperties": true
}
},
"500": {
"description": "Internal server error",
"schema": {
"type": "object",
"additionalProperties": true
}
}
}
}
},
"/api/v1/retribusi/{id}": {
"get": {
"description": "Returns a single retribusi by ID",
@@ -1116,6 +1160,18 @@
}
}
},
"models.DiagnosaResponse": {
"type": "object",
"properties": {
"data": {
"type": "object",
"additionalProperties": true
},
"message": {
"type": "string"
}
}
},
"sql.NullString": {
"type": "object",
"properties": {