Table of Contents |
---|
Purpose
This WS is designed to qualify Device Request: check the ability of dispense Device Request within the Medical program.This method is used to qualify (possibility to use device definition for the program) Device request by Id . Fields descriptions are listed in request Example view.
Key points
Only authenticated and authorized users with appropriate scope can invoke Qualify Device Request
This method returns for existing Device Request the result of data validation within each submitted medical program, but not creates any entities in the system.
Each Medical program may have its unique conditions for the Device Dispense. They can be based on analysis of personal info, device definition list, terms, locations and combinations of them.
Any Medical program can have separate block of branching logic configured at /wiki/spaces/CSI/pages/17467605147 by NHS administrator.
Сompatibility is checked only for programs which are available in payload (array).
Successful invocation of the method returns decision for each program if it is valid or not to create Device dispense with submitted combination of parameters in the payload. If program is invalid, the reason must be returned in the response.
Allowed for existing and active Device Requests
Also medical program provision is checked for the division of the pharmacy.
Specification
...
id | API_Specification |
---|
...
Link
...
...
...
Resource
...
/api/device_requests/{{device_request_id}}/actions/qualify
...
Посилання на ресурс, наприклад: /api/persons/create
...
Scope
...
Scope для доступу
...
Components
...
Зазначається перелік бізнес компонентів, які використовують цей метод, наприклад: ePrescription
...
Microservices
...
Перелік мікросервісів, які використовує метод API, наприклад: Auth, ABAC
...
Protocol type
...
Тип протоколу, який використовується запитом, наприклад: SOAP | REST
...
Request type
...
POST
...
Тип запиту API, наприклад: GET, POST, PATCH…
...
Sync/Async
...
Метод є синхронним чи асинхронним?
...
Public/Private/Internal
...
Потрібно зазначити тип методу за ступенем доступності
Logic
Generate structure for response
If general error found at Validate division section, that doesn’t depend on medical program, then return corresponding error code with error message
If general validation passed, then collect array for all programs in payload with status for each (VALID or INVALID) and rejection_reason
For each program return a list of appropriate Device Definitions found at Validate Device Definitions step
Generate response according to specification
Input parameters
...
Input parameter
...
Values
...
Type
...
Description
...
Example
...
device_request_id
...
String
...
Device request identifier
...
2848a935-5fd7-48ba-b235-a9b5d475c647
Request structure
See on Apiary
Example:
Expand | ||
---|---|---|
| ||
|
Authorize
Authorization
Verify the validity of access token
in case of error - return 401 (“Invalid access token”) in case of validation fails
Verify that token is not expired
in case of error - return 401 (“Invalid access token”)
Check user and client scopes in order to perform this action (scope = 'device_request:read')
return 403 (“Your scope does not allow to access this resource. Missing allowances: device_request:read”) in case of invalid scope(s)
Headers
Content-Type:application/json
Authorization:Bearer c2778f3064753ea70de870a53795f5c9
api-key:aFBLVTZ6Z2dON1V
Request data validation
Validate Device request
Get Device request identifier from URL and check:
it exists in DB and has ACTIVE status
in case of error - return 404 ('Device request not found')
has a program
in case of error - return 409 ('Device request without a program cannot be qualified')
Check for existing Device dispenses
Check that there is no other
IN_PROGRESS
device dispenses based on the same device requestFind all device dispenses related to the same device request ($.based_on)
Check that there are no records in status
IN_PROGRESS
whereinserted_at
+ configdevice_dispense_ttl
>= current date-time()in case of error - return 422 "Other active device dispense already exist."
Validate request
Validate request using schema. Return 422 with the list of validation errors in case validation fails. In addition, check following:
...
Check there is at least one appropriate Device Definition for a program:
Find program_devices related to the program, that:
is active
has validity period (start_date and end_date) within current date
has max_daily_count is null or max_daily_count >= quantity.value/(occurence_period.end - occurence_period.start) of the Device Request
in case not found - return reject_reason = “No appropriate participants found for this medical program“
For found program_devices check there at least one appropriate Device Definition, that:
is active
has the same code as in the Device Request
has packaging_unit that matches to quantity.code of the Device Request
in case of error - return reject_reason = “Not found any active Device Definition with the same units of measure as pointed in the quantity of the Device Request”
has a remainder of the division ($.device_request.quantity.value/device_definition.packaging_count) that is equal to 0
in case of error - return reject_reason = “The quantity in the Device Request must be divisible to packaging_count of at least one related Device Definition”
Processing
API paragraph not found
Response structure
See on Apiary
Example:
Expand | ||
---|---|---|
| ||
|
Expand | ||
---|---|---|
| ||
|
Post-processing processes
API paragraph not found
HTTP status codes
...
id | API_HTTP status codes |
---|
...
HTTP status code
...
Message
...
What caused the error
...
200
...
...
...
422
...
...
Service logic
Generate structure for response
If general error found at Validate division section, that doesn’t depend on medical program, then return corresponding error code with error message
If general validation passed, then collect array for all programs in payload with status for each (VALID or INVALID) and rejection_reason
For each program return a list of appropriate Device Definitions found at Validate Device Definitions step
Generate response according to specification