Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note

Сторінка знаходиться в процесі розробки. Інформація на ній може бути застарілою.

Properties of a REST API method document

...

Document type

...

Метод REST API

...

Document title

...

Get Medication dispense details in person context [API-005-008-001-0129]

...

Guideline ID

...

GUI-0011

...

Author

...

@

...

Document version

...

1

...

Document status

...

DRAFT

...

Date of creation

...

ХХ.ХХ.ХХХХ (дата фінальної версії документа – RC або PROD)

...

Date of update

...

ХХ.ХХ.ХХХХ (дата зміни версії)

...

Method API ID

...

API-005-008-001-0133

...

Microservices (namespace)

...

IL

...

Component

...

ePrescription

...

Component ID

...

COM-005-008

...

Link на API-специфікацію

...

https://ehealthmisapi1.docs.apiary.io/#reference/public.-reimbursement/medication-dispense/process-medication-dispense-by-pharmacy-user

...

Resource

...

{{host}}/api/pharmacy/medication_dispenses/{{id}}/actions/process

...

Scope

...

medication_dispense:process

...

Protocol type

...

REST

...

Request type

...

PATCH

...

Sync/Async

...

Sync

...

Public/Private

...

Public

Purpose

This method is designed to process previously created Medication dispense

Key points

  1. Only authenticated and authorized users of a legal entity who has created Medication dispense can process Medication dispense

  2. Medication dispense can be processed only from ‘NEW' status.

  3. The process should be signed with DS. So, all the Medication dispense data should be submitted.

  4. Invoke Get Medication dispense details by Pharmacy User to obtain previously created Medication dispense. In order to process dispense payment_id (optional) and payment_amount (optional, if medical program has funding sourse != NHS) should be added.

Logic

...

Save signed content to media storage

...

Update Medication dispense data in OPS DB:

  1. set status  =  ‘PROCESSED’

  2. updated_by = user_id

  3. updated_at = now()

...

Update related Medication request data in OPS DB:

  1. set status  =  ‘COMPLETED’

  2. updated_by = user_id

  3. updated_at = now()

...

Write changes to event manager (Medication dispense and Medication request)

Сhange Care plan activity (If related medication request has reference on Care plan, then corresponding care plan activity should be changed after Medication dispense processed):

...

Set activity status to in_progress if previous activity status was scheduled 

Check the MD identifier in outcome_reference attribute of the activity:

if not found:

...

Add reference on the medication dispense resource to the outcome_reference attribute .

If quantity in the activity was set - validate $.activity.details.remaining_quantity_type:

...

  1. select all MRR in status NEW which based on current activity

  2. select all MR in statuses ACTIVE based on current activity

  3. select all MD (medication dispenses) in status PROCESSED related to the Medication requests which are in status COMPLETED, REJECTED, EXPIRED

  4. calculate:

    1. reserved_qty as sum of medication_qty in the filtered MRR  and MR list

    2. dispensed_qty as sum of medication_qty in the filtered MD list

  5. calculate and update remaining quantity by subtracting reserved_quantity and dispensed_qty from activity quantity

...

if $.activity.details.remaining_quantity_type = for_use than:

  1. select all MD in status PROCESSED related to MR which based on care plan and current activity

  2. calculate dispensed quantity in the current activity as sum of medication_qty in the filtered MD list

  3. calculate remaining quantity by subtracting dispensed quantity from activity quantity

  4. update remaining_quantity value in the activity with calculated value

...

If found, then skip updating activity (it means that activity has been already updated by event from current MD processing).

Preconditions

If skip_medication_dispense_sign=false, MD should be created

Configuration parameters

N/A

Dictionaries

Input parameters

...

Input parameter

...

Mandatory

...

Type

...

Description

...

Example

...

id

...

M

...

String

...

Medication Dispense Response Identifier

...

a89f6a26-4221-4597-a1d2-542d5e40b565

Request structure

See on API-specification

...

titleExample

...

Headers

Headers

Request data validation

Authorize

  1. Verify the validity of access token

    • in case of error - return 401 (“Invalid access token”) in case of validation fails

  2. Verify that token is not expired

    • in case of error - return 401 (“Invalid access token”)

  3. Check user scopes in order to perform this action (scope = 'medication_dispense:process')

    • return 403 (“Your scope does not allow to access this resource. Missing allowances: medication_dispense:process”) in case of invalid scope(s)

Validate digital signature

  • Validate request is signed

    • in case of error - return 400 (“document must be signed by 1 signer but contains 0 signatures”)

  • Validate that DS is valid and not expired

  • Validate that DS belongs to the user

    • Check that DRFO from DS and party.tax_id matches

      • in case of error - return 422 (“Does not match the signer drfo“)

    • Check that Last Name from DS and party.last_name matches

      • in case of error - return 422 (“Does not match the signer last name“).

Validate Medication dispense

  • Get Medication dispense identifier from the URL

    • Check Medication dispense exists in DB (OPS)

      • Return 404 ('not_found') in case of error

    • Check Medication dispense belongs to legal entity

      • Return 404 ('not_found') in case of error

Validate User

  • Extract user_id from token

    • Return 404 ('not_found') in case employee didn’t create medication dispense

Validate Care plan and Activity

It is needed to check if medication request with a program allowed to be created for specified care plan and activity.

If based_on submitted, check field has array with two values of Reference type: one is valid Care plan resource, another - Activity resource.

  1. Verify Care plan:

    1. It should belong to the same person as set in MRR

      1. in case of error return 422 with msg ("Care plan not found")

    2. It should be in active status

  2. Verify submitted Activity:

    1. It belongs to the Care plan.

      1. in case of error return 422 with msg ("Activity not found")

    2. It has activity.detail.kind=medication_request; activity.detail.product_reference=medication_id.

      1. in case of error return 422 with msg ("Invalid activity kind")

    3. It has scheduled, in_progress status

      1. in case of error return 422 with msg ("Invalid activity status")

    4. If it has quantity then calculate remaining quantity:

      1. select all MRR in status NEW which based on current activity

      2. select all MR in statuses ACTIVE, COMPLETED based on current activity

      3. calculate reserved at the moment medication quantity as sum of medication_qty in the filtered MRR  and MR list, including medication_qty from current MRR

      4. calculate remaining quantity by subtracting reserved quantity from activity quantity

      5. Check remaining quantity is greater then or equal to zero

        1. in case of error return 409 "The total amount of the prescribed medication quantity exceeds quantity in care plan activity"

    5. check that medical_program_id equal to $.activity[].program

      1. in case of error return 422 with msg ("Medical program from activity should be equal to medical program from request")

  3. Validate started_at/ended_at of Medication request Request: 

    1. if care plan activity has detail.scheduled_timing.repeat.bounds_period - validate started_at/ended_at within bounds_period

    2. if care plan activity has detail.scheduled_period - validate started_at/ended_at within scheduled_period

    3. else - validate started_at/ended_at within care_plan.period

      1. in the case of started_at/ended_at is not within care_plan.period return 422 with msg  ("Invalid care plan period")

Validate signed content

  1. Check that signed content is equal to online generated dispense with ids in DB

    1. Do not compare:

      • payment_amount field

      • payment_id field

      • medication_request/legal_entity object

      • medication_request/division object

      • medication_request/employee object

      • medication_request/person/id field

      • medication_request/rejected_at field

      • medication_request/rejected_by field

        • in case error return 422 ("Signed content does not match to previously created dispense")

Validate transition

  • Get status of Medication dispense by $.id in OPS DB. Check that Medication dispense is in status ‘NEW’

    • in case of error - return 409 ("Can't update medication dispense status from {status} to PROCESSED")

For more information look at [Transferred] Medication dispense status model

Validate payment_amount

  1. In case if medical program has funding sourse == NHS check that payment_amount is submitted and greater or equal to 0

    1. in case of error - return 422 ("expected the value to be >= 0")

Validate division

  1. If the medical program has no setting skip_dispense_division_dls_verify or it is set in false/null validate:

    • Check $.division.dls_verify == true:

      • In case of error - return 409 "Invalid division dls status"

    else if skip_dispense_division_dls_verify = true, then skip license verification for the division

Validate related Medication request

  1. Medication request should be active in order to process medication dispense

    1. is_active = true

    2. status = 'ACTIVE'

      1. In case error - return 409 ("Medication request is not active")

  2. Medication request should not be blocked in order to process medication dispense

    1. is_blocked <> true

      1. In case of error - return 409 ("Medication request is blocked")

  3. Check that Medication request not blocked

    1. medication_requests.blocked_to <= now() (datetime) or NULL

      1. in case of error - return 409 error ('Medication request is blocked')

  4. Medication request should be up to date

    1. medication_request.dispense_valid_from ≤ now OR medication_request.dispense_valid_to ≥ now

      1. In case of error - return 409 ("Invalid dispense period")

  5. Checking the status of the legal entity where the medication request was issued

    1. status in ('ACTIVE', 'CLOSED', 'REORGANIZED')

      1. In case of error - return 422 ("value is not allowed in enum")

Check if related medication request has reference on the Care plan - based_on attribute filled. If it has, validate following:

  1. Care plan is not in final status.

    1. In case of error - return 409 error (Care plan is not active)

  2. If end_date Care plan is present then it should be less than or equal than todays date

    1. In case of error - return 409 ("Care plan expired")

  3. Corresponding Care plan activity is not in final status.

    1. In case of error - return 409 error (Care plan activity should be scheduled or in_progress)

Processing

...

Save signed content to media storage

...

Update Medication dispense data in OPS DB:

  1. set status  =  ‘PROCESSED’

  2. updated_by = user_id

  3. updated_at = now()

...

Update related Medication request data in OPS DB (if total medication_dispense quantity = medication_request.medication_qty):

  1. set status  =  ‘COMPLETED’

  2. updated_by = user_id

  3. updated_at = now()

...

Write changes to event manager (Medication dispense and Medication request)

Сhange Care plan activity (If related medication request has reference on Care plan, then corresponding care plan activity should be changed after Medication dispense processed):

...

Set activity status to in_progress if previous activity status was scheduled 

Check the MD identifier in outcome_reference attribute of the activity:

if not found:

...

Add reference on the medication dispense resource to the outcome_reference attribute.

If quantity in the activity was set - validate $.activity.details.remaining_quantity_type:

...

  1. select all MRR in status NEW which based on current activity

  2. select all MR in statuses ACTIVE based on current activity

  3. select all MD (medication dispenses) in status PROCESSED related to the Medication requests which are in status COMPLETE, REJECTED, EXPIRED

  4. calculate:

    1. reserved_qty as sum of medication_qty in the filtered MRR  and MR list

    2. dispensed_qty as sum of medication_qty in the filtered MD list

  5. calculate and update remaining quantity by subtracting reserved_quantity and dispensed_qty from activity quantity

...

if $.activity.details.remaining_quantity_type = for_use than:

  1. select all MD in status PROCESSED related to MR which based on care plan and current activity

  2. calculate dispensed quantity in the current activity as sum of medication_qty in the filtered MD list

  3. calculate remaining quantity by subtracting dispensed quantity from activity quantity

  4. update remaining_quantity value in the activity with calculated value

...

If found, then skip updating activity (it means that activity has been already updated by event from current MD processing).

Response structure examples

See on API-specification

...

titleExample

...

HTTP status codes

...

Response code

...

HTTP Status code

...

Message

...

Internal name

...

Description

...

Базові

...

 

...

400

...

document must be signed by 1 signer but contains 0 signatures

...

 

...

На документ має бути накладено 1 цифровий підпис за допомогою КЕП, проте маємо 0 цифрових підписів

...

 

...

401

...

Invalid access token

...

 

...

Недійсний токен доступу

...

 

...

403

...

Your scope does not allow to access this resource. Missing allowances: medication_dispense:process

...

 

...

Для вашої ролі відсутній доступ до цього ресурсу. Необхідний доступ на обробку, перевірку погашення рецепта

...

 

...

404

...

not_found

...

 

...

не знайдено

...

 

...

409

...

Medication request is not active

...

 

...

Рецепт не активний

...

 

...

409

...

Medication request is blocked

...

 

...

Рецепт заблоковано

...

 

...

409

...

Invalid dispense period

...

 

...

Недійсний період погашення рецепта

...

 

...

409

...

Care plan is not active

...

 

...

План лікування не активний

...

 

...

409

...

Care plan expired

...

 

...

Період дії плану лікування завершився

...

 

...

409

...

Care plan activity should be scheduled or in_progress

...

 

...

Призначення має бути у плані лікування або у роботі (не у фінальному статусі)

...

Специфічні

...

 

...

422

...

Does not match the signer drfo

...

 

...

РНОКПП користувача не співпадає з РНОКПП, зазначеним у КЕП

...

 

...

422

...

Does not match the signer last name

...

 

...

Прізвище користувача не співпадає з прізвищем, зазначеним у КЕП

...

 

...

422

...

Care plan not found

...

 

...

План лікування не знайдено

...

 

...

422

...

Activity not found

...

 

...

Призначення не знайдено

...

 

...

422

...

Invalid activity kind

...

 

...

Невірний тип призначення

...

 

...

422

...

Invalid activity status

...

 

...

Невірний статус призначення

...

 

...

422

...

Medical program from activity should be equal to medical program from request

...

 

...

Програма відшкодування у заявці на рецепт повинна бути такою ж як і в призначенні на лікарський засіб

...

 

...

422

...

Invalid care plan period

...

 

...

Недійсний період плану лікування

...

 

...

422

...

Signed content does not match to previously created dispense

...

 

...

Підписані дані не збігаються з попередньо створеною заявкою на погашення рецепта

...

 

...

422

...

Can't update medication dispense status from {status} to PROCESSED

...

 

...

Не вдається оновити статус заявки на погашення рецепта із вказаного статусу {status} на PROCESSED

...

 

...

422

...

expected the value to be >= 0

...

 

...

Очікується, що значення буде >= 0

...

 

...

422

...

value is not allowed in enum

...

 

...

Properties of a REST API method document

Document type

Метод REST API

Document title

Get Medication dispense details in person context [API-005-008-001-0129]

Guideline ID

GUI-0011

Author

@

Document version

1

Document status

DRAFT

Date of creation

ХХ.ХХ.ХХХХ (дата фінальної версії документа – RC або PROD)

Date of update

ХХ.ХХ.ХХХХ (дата зміни версії)

Method API ID

API-005-008-001-0129

Microservices (namespace)

IL

Component

ePrescription

Component ID

COM-005-008

Link на API-специфікацію

GENERAL MIS API · Apiary

Resource

{{host}}/api/persons/person_id/medication_dispenses/id

Scope

medication_dispense:read

Protocol type

REST

Request type

GET

Sync/Async

Sync

Public/Private

Public

Purpose

This method allows getting short information about the patient’s Medication dispense. Obtaining a medication dispenses list or receiving full information is restricted for the MSP side. Only short medication dispense information is allowed.

Logic

Service returns specified Medication dispense related to the patient:

  • Get Medication dispense by ID from medication_dispenses DB (OPS).

  • Validate data consistency:

    • Ensure that requested Medication dispense relates to requested Patient (from URL)

      • Return 404 ('not_found') in case of error.

  • Render a response according to specification.

Preconditions

N/A

Configuration parameters

Access to the method is defined by the scope medication_dispense:read. Permission for this scope is determined by the System administrator by configuring scopes in the context of clients and roles.

Dictionaries

API paragraph not found

Input parameters

Input parameter

Mandatory

Type

Description

Example

1

id

M

String

Medication Dispense Response Identifier. Required.

a89f6a26-4221-4597-a1d2-542d5e40b565

Request structure

See on API-specification

Headers

Headers

Request data validation

Authorize

  • Verify the validity of access token

    • 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 scopes in order to perform this action (scope = 'medication_dispense:read')

    • Return (403, 'Your scope does not allow to access this resource. Missing allowances: medication dispense:read') in case of invalid scope(s).

Validate Person

  • Get Person identifier from the URL.

  • Check it exists in DB

    • Return 404 ('not_found') in case of error.

Validate Medication dispense

  • Get Medication dispense identifier from the URL

    • Check it exists in DB

      • Return 404 ('not_found') in case of error;

    • Check Medication dispense belongs to patient

      • Return 404 ('not_found') in case of error.

Validate User

  • Extract user_id from token.

  • Check user has an active and approved employee from legal entity (token) that:

    • has an active declaration with the patient;

    • has access to connected with medication requests episode with the patient (created in current MSP or approval on Episode resource);

    • has access to connected with medication requests care plan with the patient (approval on Care plan resource)

      • Return 403 ('Access denied') in case employee has no declaration or access connected with medication requests episode or care plan.

Response structure examples

See on API-specification

Expand
titleExample
Code Block
{
  "meta": {
    "code": 200,
    "url": "https://example.com/resource",
    "type": "object",
    "request_id": "req-adasdoijasdojsda"
  },
  "data": {
    "id": "b075f148-7f93-4fc2-b2ec-2d81b19a9b7b",
    "medication_request": {
      "id": "b075f148-7f93-4fc2-b2ec-2d81b19a9b7b",
      "status": "ACTIVE",
      "request_number": "0000-243P-1X53-EH38",
      "created_at": "2017-08-17",
      "started_at": "2017-08-17",
      "ended_at": "2017-09-16",
      "dispense_valid_from": "2017-08-17",
      "dispense_valid_to": "2017-09-16",
      "legal_entity": {
        "id": "b075f148-7f93-4fc2-b2ec-2d81b19a9b7b",
        "name": "Клініка Ноунейм",
        "short_name": "Ноунейм",
        "public_name": "Клініка Ноунейм",
        "type": "MSP",
        "edrpou": "5432345432",
        "status": "ACTIVE"
      },
      "division": {
        "id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
        "legal_entity_id": "c8aadb87-ecb9-41ca-9ad4-ffdfe1dd89c9",
        "name": "Бориспільське відділення Клініки Ноунейм",
        "addresses": [
          {
            "type": "RESIDENCE",
            "country": "UA",
            "area": "Житомирська",
            "region": "Бердичівський",
            "settlement": "Київ",
            "settlement_type": "CITY",
            "settlement_id": "b075f148",
            "street_type": "STREET",
            "street": "вул. Ніжинська",
            "building": "15",
            "apartment": "23",
            "zip": "02090"
          }
        ],
        "phones": [
          {
            "type": "MOBILE",
            "number": "+380503410870"
          }
        ],
        "email": "email@example.com",
        "working_hours": {
          "mon": [
            [
              "08.00",
              "12.00"
            ],
            [
              "14.00",
              "18.00"
            ]
          ],
          "tue": [
            [
              "08.00",
              "12.00"
            ]
          ],
          "wed": [
            [
              "08.00",
              "12.00"
            ]
          ],
          "thu": [
            [
              "08.00",
              "12.00"
            ]
          ],
          "fri": [
            [
              "08.00",
              "12.00"
            ]
          ]
        },
        "type": "CLINIC",
        "external_id": "3213213",
        "location": {
          "latitude": 30.1233,
          "longitude": 50.32423
        },
        "dls_id": "2872985",
        "dls_verified": true
      },
      "employee": {
        "id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
        "position": "P6",
        "party": {
          "id": "b075f148-7f93-4fc2-b2ec-2d81b19a9b7b",
          "no_tax_id": true,
          "first_name": "Петро",
          "last_name": "Іванов",
          "second_name": "Миколайович",
          "email": "email@example.com",
          "phones": [
            {
              "type": "MOBILE",
              "number": "+380503410870"
            }
          ]
        }
      },
      "person": {
        "id": "b075f148-7f93-4fc2-b2ec-2d81b19a9b7b",
        "short_name": "Петро І. І.",
        "age": 35
      },
      "medication_info": {
        "medication_id": "4a63b858-c138-4921-9341-ae9e384bcbd6",
        "medication_name": "Аміодарон 200мг таблетки",
        "form": "PILL",
        "dosage": {
          "numerator_unit": "MG",
          "numerator_value": 200,
          "denumerator_unit": "PILL",
          "denumerator_value": 1
        },
        "ingredients": [
          {
            "id": "1349a693-4db1-4a3f-9ac6-8c2f9e541982",
            "name": "Інсулін деглюдек",
            "name_original": "Insulin degludec",
            "sctid": "52574003",
            "dosage": {
              "numerator_unit": "MG",
              "numerator_value": 200,
              "denumerator_unit": "PILL",
              "denumerator_value": 1
            },
            "is_primary": true
          }
        ],
        "medication_qty": 10.34
      },
      "medical_program": {
        "id": "c7d52544-0bd4-4129-97b0-2d72633e0490",
        "name": "Доступні ліки",
        "medical_program_settings": {
          "care_plan_required": true,
          "employee_types_to_create_medication_request": [
            "SPECIALIST",
            "DOCTOR"
          ],
          "skip_mnn_in_treatment_period": true,
          "skip_employee_validation": true,
          "speciality_types_allowed": [
            "ENDOCRINOLOGY",
            "PEDIATRIC_NEUROLOGY"
          ],
          "conditions_icd10_am_allowed": [
            "A00.0",
            "A00.1"
          ],
          "conditions_icpc2_allowed": [
            "A01",
            "A02"
          ],
          "providing_conditions_allowed": [
            "INPATIENT",
            "OUTPATIENT"
          ],
          "medication_request_max_period_day": 90,
          "skip_medication_request_employee_declaration_verify": true,
          "skip_medication_request_legal_entity_declaration_verify": true,
          "multi_medication_dispense_allowed": true,
          "skip_medication_dispense_sign": true,
          "medication_request_notification_disabled": true,
          "skip_contract_provision_verify": true,
          "medication_dispense_period_day": 90
        },
        "medical_program_settings_text": "Some text",
        "is_active": true,
        "medication_dispense_allowed": true,
        "medication_dispense_allowed_text": "Some text",
        "medication_request_allowed": true,
        "medication_request_allowed_text": "Some text",
        "type": "MEDICATION",
        "funding_source": "NHS",
        "mr_blank_type": "F-1",
        "inserted_at": "2017-04-20T19:14:13Z",
        "inserted_by": "e1453f4c-1077-4e85-8c98-c13ffca0063e",
        "updated_at": "2017-04-20T19:14:13Z",
        "updated_by": "2922a240-63db-404e-b730-09222bfeb2dd"
      },
      "intent": "plan",
      "category": "community",
      "based_on": [
        {
          "identifier": {
            "type": {
              "coding": [
                {
                  "system": "eHealth/resources",
                  "code": "care_plan"
                }
              ]
            },
            "value": "9183a36b-4d45-4244-9339-63d81cd08d9c"
          }
        },
        {
          "identifier": {
            "type": {
              "coding": [
                {
                  "system": "eHealth/resources",
                  "code": "activity"
                }
              ]
            },
            "value": "9183a36b-4d45-4244-9339-63d81cd08d9c"
          }
        }
      ],
      "context": {
        "identifier": {
          "type": {
            "coding": [
              {
                "system": "eHealth/resources",
                "code": "encounter"
              }
            ]
          },
          "value": "9183a36b-4d45-4244-9339-63d81cd08d9c"
        }
      },
      "dosage_instruction": [
        {
          "sequence": 1,
          "text": "0.25mg PO every 6-12 hours as needed for menses from Jan 15-20, 2015.  Do not exceed more than 4mg per day",
          "additional_instruction": [
            {
              "coding": [
                {
                  "system": "eHealth/SNOMED/additional_dosage_instructions",
                  "code": "311504000"
                }
              ]
            }
          ],
          "patient_instruction": "0.25mg PO every 6-12 hours as needed for menses from Jan 15-20, 2015.  Do not exceed more than 4mg per day",
          "timing": {
            "event": [
              "2017-04-20T19:14:13Z"
            ],
            "repeat": {
              "bounds_duration": {
                "value": 10,
                "unit": "days",
                "system": "eHealth/ucum/units",
                "code": "d"
              },
              "count": 2,
              "count_max": 4,
              "duration": 4,
              "duration_max": 6,
              "duration_unit": "d",
              "frequency": 1,
              "frequency_max": 2,
              "period": 4,
              "period_max": 6,
              "period_unit": "d",
              "day_of_week": [
                "mon"
              ],
              "time_of_day": [
                "2017-04-20T19:14:13Z"
              ],
              "when": [
                "WAKE"
              ],
              "offset": 4
            },
            "code": {
              "coding": [
                {
                  "system": "TIMING_ABBREVIATIONS",
                  "code": "patient"
                }
              ]
            }
          },
          "as_needed_boolean": true,
          "site": {
            "coding": [
              {
                "system": "eHealth/SNOMED/anatomical_structure_administration_site_codes",
                "code": "344001"
              }
            ]
          },
          "route": {
            "coding": [
              {
                "system": "eHealth/SNOMED/route_codes",
                "code": "46713006"
              }
            ]
          },
          "method": {
            "coding": [
              {
                "system": "eHealth/SNOMED/administration_methods",
                "code": "419747000"
              }
            ]
          },
          "dose_and_rate": {
            "type": {
              "coding": [
                {
                  "system": "eHealth/dose_and_rate",
                  "code": "'ordered'"
                }
              ]
            },
            "dose_range": {
              "low": {
                "value": 0,
                "unit": "mg",
                "system": "eHealth/ucum/units",
                "code": "mg"
              },
              "high": {
                "value": 0,
                "unit": "mg",
                "system": "eHealth/ucum/units",
                "code": "mg"
              }
            },
            "rate_ratio": {
              "numerator": {
                "value": 0,
                "unit": "mg",
                "system": "eHealth/ucum/units",
                "code": "mg"
              },
              "denominator": {
                "value": 0,
                "unit": "mg",
                "system": "eHealth/ucum/units",
                "code": "mg"
              }
            }
          },
          "max_dose_per_period": {
            "numerator": {
              "value": 0,
              "unit": "mg",
              "system": "eHealth/ucum/units",
              "code": "mg"
            },
            "denominator": {
              "value": 0,
              "unit": "mg",
              "system": "eHealth/ucum/units",
              "code": "mg"
            }
          },
          "max_dose_per_administration": {
            "value": 0,
            "unit": "mg",
            "system": "eHealth/ucum/units",
            "code": "mg"
          },
          "max_dose_per_lifetime": {
            "value": 0,
            "unit": "mg",
            "system": "eHealth/ucum/units",
            "code": "mg"
          }
        }
      ],
      "rejected_at": "2022-01-28",
      "rejected_by": "e8e5a969-74d8-4620-8496-f5e41f2e8312",
      "reject_reason": "Incompatible drugs",
      "reject_reason_code": "PATIENT_REJECT",
      "is_blocked": false,
      "block_reason": "Підозра на фрод",
      "block_reason_code": "WRONG_QTY_DRUG",
      "priority": "routine",
      "prior_prescription": {
        "identifier": {
          "type": {
            "coding": [
              {
                "system": "eHealth/resources",
                "code": "medication_request"
              }
            ]
          },
          "value": "9183a36b-4d45-4244-9339-63d81cd08d9c"
        }
      },
      "container_dosage": {
        "system": "MEDICATION_UNIT",
        "code": "ML",
        "value": 4
      }
    },
    "dispensed_at": "2017-08-17",
    "medical_program": {
      "id": "c7d52544-0bd4-4129-97b0-2d72633e0490",
      "name": "Доступні ліки",
      "medical_program_settings": {
        "care_plan_required": true,
        "employee_types_to_create_medication_request": [
          "SPECIALIST",
          "DOCTOR"
        ],
        "skip_mnn_in_treatment_period": true,
        "skip_employee_validation": true,
        "speciality_types_allowed": [
          "ENDOCRINOLOGY",
          "PEDIATRIC_NEUROLOGY"
        ],
        "conditions_icd10_am_allowed": [
          "A00.0",
          "A00.1"
        ],
        "conditions_icpc2_allowed": [
          "A01",
          "A02"
        ],
        "providing_conditions_allowed": [
          "INPATIENT",
          "OUTPATIENT"
        ],
        "medication_request_max_period_day": 90,
        "skip_medication_request_employee_declaration_verify": true,
        "skip_medication_request_legal_entity_declaration_verify": true,
        "multi_medication_dispense_allowed": true,
        "skip_medication_dispense_sign": true,
        "medication_request_notification_disabled": true,
        "skip_contract_provision_verify": true,
        "medication_dispense_period_day": 90
      },
      "medical_program_settings_text": "Some text",
      "is_active": true,
      "medication_dispense_allowed": true,
      "medication_dispense_allowed_text": "Some text",
      "medication_request_allowed": true,
      "medication_request_allowed_text": "Some text",
      "type": "MEDICATION",
      "funding_source": "NHS",
      "mr_blank_type": "F-1",
      "inserted_at": "2017-04-20T19:14:13Z",
      "inserted_by": "e1453f4c-1077-4e85-8c98-c13ffca0063e",
      "updated_at": "2017-04-20T19:14:13Z",
      "updated_by": "2922a240-63db-404e-b730-09222bfeb2dd"
    },
    "status": "NEW",
    "inserted_at": "2017-04-20T19:14:13Z",
    "updated_at": "2017-04-20T19:14:13Z"
  }
}

HTTP status codes

Response code

HTTP Status code

Message

Internal name

Description

1

Базові

2

 

401

Invalid access token

Недійсний токен доступу

3

403

Your scope does not allow to access this resource. Missing allowances: medication dispense:read

Для вашої ролі відсутній доступ до цього ресурсу. Необхідний доступ на отримання інформації про відпущені рецепти

4

403

Access denied

У доступі відмовлено

5

404

not_found

не знайдено

6

Специфічні

7

 

Post-processing processes

N/A

Technical modules where the method is used

Title

No content found