"isBrand":
"product":
"code":
"manufacturer":
"package":
{
"resourceType" : "Medication",
// from Resource: id, meta, implicitRules, and language
// from DomainResource: text, contained, extension, and modifierExtension
"code" : { CodeableConcept }, // Codes that identify this medication
"isBrand" : <boolean>, // True if a brand
"manufacturer" : { Reference(Organization) }, // Manufacturer of the item
"product" : { // Administrable medication details
"form" : { CodeableConcept }, // powder | tablets | carton +
"ingredient" : [{ // Active or inactive ingredient
"item" : { Reference(Substance|Medication) }, // R! The product contained
"amount" : { Ratio } // Quantity of ingredient present
}],
"batch" : [{ //
"lotNumber" : "<string>", //
"expirationDate" : "<dateTime>" //
}]
},
"package" : { // Details about packaged medications
"container" : { CodeableConcept }, // E.g. box, vial, blister-pack
"content" : [{ // What is in the package
"item" : { Reference(Medication) }, // R! A product in the package
"amount" : { Quantity(SimpleQuantity) } // Quantity present in the package
}]
}
}
The following search parameters can be used to query Medication resources. Just submit them like so:
https://api.1up.health/fhir/dstu2/Medication?query-param=queryvalue
Search Parameter | Field Type | Resource Fields Searched |
---|---|---|
code | text | code |
container | text | package.container |
content | reference | package.content.item |
form | text | product.form |
ingredient | reference | product.ingredient.item |
manufacturer | reference | manufacturer |