Table of Contents |
---|
...
HL7 | e-Health | Result | To change DM |
---|---|---|---|
Medication | [medications], [ingridientsingredients], [innms] | ||
"code" : { CodeableConcept }, // Codes that identify this medication | id | uuid | not null | Ok | |
"status" : "<code>", // active | inactive | entered-in-error | status | varchar | not null | Ok | |
"isBrand" : <boolean>, // True if a brand | [medications] | Ok | |
"isOverTheCounter" : <boolean>, // True if medication does not require a prescription | Small problem | Nothing todo | |
"manufacturer" : { Reference(Organization) }, // Manufacturer of the item | manufacturer_name_country | jsonb | not null | Ok | |
"form" : { CodeableConcept }, // powder | tablets | capsule + | route | varchar | not null | Ok | |
"ingredient" : [{ // Active or inactive ingredient | [ingridientsinngredients] | Ok | |
→// item[x]: The product contained. One of these 2: | |||
→"itemCodeableConcept" : { CodeableConcept }, | |||
→"itemReference" : { Reference(Substance|Medication)}, | [ingridientsingredients].innms_id | Ok | |
→"isActive" : <boolean>, // Active ingredient indicator | [ingridientsingredients].is_active_substance | Ok | |
→"amount" : { Ratio } // Quantity of ingredient present | [ingridientsingredients].dasagedosage | Ok | |
"package" : { // Details about packaged medications | Ok | ||
→"container" : { CodeableConcept }, // E.g. box, vial, blister-pack | [medications].container_dosage | Ok | |
→"content" : [{ // What is in the package | |||
→→// item[x]: The item in the package. One of these 2: | |||
→→"itemCodeableConcept" : { CodeableConcept }, | |||
→→"itemReference" : { Reference(Medication) }, | [medications] | Ok | |
→→"amount" : { Quantity(SimpleQuantity) } // Quantity present in the package | container_dosage | jsonb | not null package_qty | number| not null | Ok | |
"batch" : [{ // Identifies a single production run | ??? | Small problem | Nothing todo |
→"lotNumber" : "<string>", // Identifier assigned to batch | ??? | Small problem | Nothing todo |
→"expirationDate" : "<dateTime>" // When batch will expire | ??? | Small problem | Nothing todo |
"image" : [{ Attachment }] // Picture of the medication | ??? | Small problem | Nothing todo |
...