FoundationThis is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
| Biomedical Research and Regulation Work Group | Maturity Level: N/A | Standards Status: Informative | Compartments: No defined compartments |
ShEx statement for administrableproductdefinition
PREFIX fhir: <http://hl7.org/fhir/>
PREFIX fhirvs: <http://hl7.org/fhir/ValueSet/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
IMPORT <code.shex>
IMPORT <date.shex>
IMPORT <Ratio.shex>
IMPORT <string.shex>
IMPORT <Binary.shex>
IMPORT <boolean.shex>
IMPORT <markdown.shex>
IMPORT <Quantity.shex>
IMPORT <Duration.shex>
IMPORT <Reference.shex>
IMPORT <Identifier.shex>
IMPORT <Attachment.shex>
IMPORT <DomainResource.shex>
IMPORT <CodeableConcept.shex>
IMPORT <BackboneElement.shex>
IMPORT <DeviceDefinition.shex>
IMPORT <MedicinalProductDefinition.shex>
IMPORT <ManufacturedItemDefinition.shex>
start=@<AdministrableProductDefinition> AND {fhir:nodeRole [fhir:treeRoot]}
# A medicinal product in the final form, suitable for administration - after any mixing of multiple components
<AdministrableProductDefinition> EXTENDS @<DomainResource> CLOSED {
a [fhir:AdministrableProductDefinition]?;fhir:nodeRole [fhir:treeRoot]?;
fhir:identifier @<OneOrMore_Identifier>?; # An identifier for the
# administrable product
fhir:status @<code> AND
{fhir:v @fhirvs:publication-status}; # draft | active | retired | unknown
fhir:formOf @<OneOrMore_Reference_MedicinalProductDefinition>?; # References a product from which
# one or more of the constituent
# parts of that product can be
# prepared and used as described by
# this administrable product
fhir:administrableDoseForm @<CodeableConcept>?; # The dose form of the final product
# after necessary reconstitution or
# processing
fhir:unitOfPresentation @<CodeableConcept>?; # The presentation type in which
# this item is given to a patient.
# e.g. for a spray - 'puff'
fhir:producedFrom @<OneOrMore_Reference_ManufacturedItemDefinition>?; # Indicates the specific
# manufactured items that are part
# of the 'formOf' product that are
# used in the preparation of this
# specific administrable form
fhir:ingredient @<OneOrMore_CodeableConcept>?; # The ingredients of this
# administrable medicinal product.
# This is only needed if the
# ingredients are not specified
# either using
# ManufacturedItemDefinition, or
# using incoming references from the
# Ingredient resource
fhir:device @<Reference> AND {fhir:link
@<DeviceDefinition> ? }?; # A device that is integral to the
# medicinal product, in effect being
# considered as an "ingredient" of
# the medicinal product
fhir:description @<markdown>?; # A general description of the
# product, when in its final form,
# suitable for administration e.g.
# effervescent blue liquid, to be
# swallowed
fhir:property @<OneOrMore_AdministrableProductDefinition.property>?; # Characteristics e.g. a product's
# onset of action
fhir:routeOfAdministration @<OneOrMore_AdministrableProductDefinition.routeOfAdministration>; # The path by which the product is
# taken into or makes contact with
# the body
}
# The path by which the product is taken into or makes contact with the body
<AdministrableProductDefinition.routeOfAdministration> EXTENDS @<BackboneElement> CLOSED {
fhir:code @<CodeableConcept>; # Coded expression for the route
fhir:firstDose @<Quantity>?; # The first dose (dose quantity)
# administered can be specified for
# the product
fhir:maxSingleDose @<Quantity>?; # The maximum single dose that can
# be administered
fhir:maxDosePerDay @<Quantity>?; # The maximum dose quantity to be
# administered in any one 24-h
# period
fhir:maxDosePerTreatmentPeriod @<Ratio>?; # The maximum dose per treatment
# period that can be administered
fhir:maxTreatmentPeriod @<Duration>?; # The maximum treatment period
# during which the product can be
# administered
fhir:targetSpecies @<OneOrMore_AdministrableProductDefinition.routeOfAdministration.targetSpecies>?; # A species for which this route
# applies
}
# A species specific time during which consumption of animal product is not appropriate
<AdministrableProductDefinition.routeOfAdministration.targetSpecies.withdrawalPeriod> EXTENDS @<BackboneElement> CLOSED {
fhir:tissue @<CodeableConcept>; # The type of tissue for which the
# withdrawal period applies, e.g.
# meat, milk
fhir:value @<Quantity>; # A value for the time
fhir:supportingInformation @<string>?; # Extra information about the
# withdrawal period
}
# A species for which this route applies
<AdministrableProductDefinition.routeOfAdministration.targetSpecies> EXTENDS @<BackboneElement> CLOSED {
fhir:code @<CodeableConcept>; # Coded expression for the species
fhir:withdrawalPeriod @<OneOrMore_AdministrableProductDefinition.routeOfAdministration.targetSpecies.withdrawalPeriod>?; # A species specific time during
# which consumption of animal
# product is not appropriate
}
# Characteristics e.g. a product's onset of action
<AdministrableProductDefinition.property> EXTENDS @<BackboneElement> CLOSED {
fhir:type @<CodeableConcept>; # A code expressing the type of
# characteristic
fhir:value @<CodeableConcept> OR
@<Quantity> OR
@<date> OR
@<boolean> OR
@<markdown> OR
@<Attachment> OR
(@<Reference> AND {fhir:link @<Binary> }) ?; # A value for the characteristic
fhir:status @<CodeableConcept>?; # The status of characteristic e.g.
# assigned or pending
}
#---------------------- Cardinality Types (OneOrMore) -------------------
<OneOrMore_Identifier> CLOSED {
rdf:first @<Identifier> ;
rdf:rest [rdf:nil] OR @<OneOrMore_Identifier>
}
<OneOrMore_Reference_MedicinalProductDefinition> CLOSED {
rdf:first @<Reference> AND {fhir:link
@<MedicinalProductDefinition> } ;
rdf:rest [rdf:nil] OR @<OneOrMore_Reference_MedicinalProductDefinition>
}
<OneOrMore_Reference_ManufacturedItemDefinition> CLOSED {
rdf:first @<Reference> AND {fhir:link
@<ManufacturedItemDefinition> } ;
rdf:rest [rdf:nil] OR @<OneOrMore_Reference_ManufacturedItemDefinition>
}
<OneOrMore_CodeableConcept> CLOSED {
rdf:first @<CodeableConcept> ;
rdf:rest [rdf:nil] OR @<OneOrMore_CodeableConcept>
}
<OneOrMore_AdministrableProductDefinition.property> CLOSED {
rdf:first @<AdministrableProductDefinition.property> ;
rdf:rest [rdf:nil] OR @<OneOrMore_AdministrableProductDefinition.property>
}
<OneOrMore_AdministrableProductDefinition.routeOfAdministration> CLOSED {
rdf:first @<AdministrableProductDefinition.routeOfAdministration> ;
rdf:rest [rdf:nil] OR @<OneOrMore_AdministrableProductDefinition.routeOfAdministration>
}
<OneOrMore_AdministrableProductDefinition.routeOfAdministration.targetSpecies> CLOSED {
rdf:first @<AdministrableProductDefinition.routeOfAdministration.targetSpecies> ;
rdf:rest [rdf:nil] OR @<OneOrMore_AdministrableProductDefinition.routeOfAdministration.targetSpecies>
}
<OneOrMore_AdministrableProductDefinition.routeOfAdministration.targetSpecies.withdrawalPeriod> CLOSED {
rdf:first @<AdministrableProductDefinition.routeOfAdministration.targetSpecies.withdrawalPeriod> ;
rdf:rest [rdf:nil] OR @<OneOrMore_AdministrableProductDefinition.routeOfAdministration.targetSpecies.withdrawalPeriod>
}
#---------------------- Value Sets ------------------------
# The lifecycle status of an artifact.
fhirvs:publication-status ["draft" "active" "retired" "unknown"]
Usage note: every effort has been made to ensure that the ShEx files are correct and useful, but they are not a normative part of the specification.
FHIR ®© HL7.org 2011+. FHIR R6 hl7.fhir.core#6.0.0-ballot3 generated on Thu, Oct 23, 2025 19:45+0000.
Links: Search |
Version History |
Contents |
Glossary |
QA |
Compare to R5 |
|
Propose a change