health.fhir.r4.aubase410
Module health.fhir.r4.aubase410
API
Declarations
Definitions
ballerinax/health.fhir.r4.aubase410 Ballerina library
FHIR R4 AUBase module
Sample Usage
This section focuses on samples depicting how to use this package to implement FHIR related integrations
Prerequisites
- Install Ballerina 2201.6.0 or later
1. Parse JSON FHIR resource to FHIR resource model
Sample below is using the AUBasePatient resource in health.fhir.r4.aubase410
package.
import ballerina/log; import ballerinax/health.fhir.r4; import ballerinax/health.fhir.r4.aubase410; public function main() { json patientPayload = { "resourceType": "Patient", "id": "1", "meta": { "profile": [ "http://hl7.org.au/fhir/StructureDefinition/au-patient" ] }, "active":true, "name":[ { "use":"official", "family":"Chalmers", "given":[ "Peter", "James" ] } ], "gender":"male", "birthDate":"1974-12-25", "managingOrganization":{ "reference":"Organization/1" } }; do { anydata parsedResult = check r4:parse(patientPayload, aubase410:AUBasePatient); aubase410:AUBasePatient patientModel = check parsedResult.ensureType(); log:printInfo(string `Patient name : ${patientModel.name.toString()}`); } on fail error parseError { log:printError(string `Error occurred while parsing : ${parseError.message()}`, parseError); } }
2. Creating FHIR Resource models and serializing to JSON wire formats
import ballerina/log; import ballerina/time; import ballerinax/health.fhir.r4; import ballerinax/health.fhir.r4.aubase410; public function main() { aubase410:AUBasePatient patient = { meta: { lastUpdated: time:utcToString(time:utcNow()), profile: [aubase410:PROFILE_BASE_AUBASEPATIENT] }, active: true, name: [{ family: "Doe", given: ["Jhon"], use: r4:official, prefix: ["Mr"] }], address: [{ line: ["652 S. Lantern Dr."], city: "New York", country: "United States", postalCode: "10022", 'type: r4:physical, use: r4:home }] }; r4:FHIRResourceEntity fhirEntity = new(patient); // Serialize FHIR resource record to Json payload json|r4:FHIRSerializerError jsonResult = fhirEntity.toJson(); if jsonResult is json { log:printInfo(string `Patient resource JSON payload : ${jsonResult.toJsonString()}`); } else { log:printError(string `Error occurred while serializing to JSON payload : ${jsonResult.message()}`, jsonResult); } }
Constants
health.fhir.r4.aubase410: PROFILE_BASE_AUASSERTIONNORELEVANTFINDING
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEALLERGYINTOLERANCE
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEBODYSTRUCTURE
health.fhir.r4.aubase410: PROFILE_BASE_AUBASECOMPOSITION
health.fhir.r4.aubase410: PROFILE_BASE_AUBASECONDITION
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEDIAGNOSTICIMAGINGREPORT
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEDIAGNOSTICIMAGINGRESULT
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEDIAGNOSTICREPORT
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEDIAGNOSTICREQUEST
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEDIAGNOSTICRESULT
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEENCOUNTER
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEHEALTHCARESERVICE
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEIMMUNISATION
health.fhir.r4.aubase410: PROFILE_BASE_AUBASELOCATION
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEMEDICATION
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEMEDICATIONADMINISTRATION
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEMEDICATIONDISPENSE
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEMEDICATIONREQUEST
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEMEDICATIONSTATEMENT
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEORGANISATION
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEPATHOLOGYREPORT
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEPATHOLOGYRESULT
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEPATIENT
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEPRACTITIONER
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEPRACTITIONERROLE
health.fhir.r4.aubase410: PROFILE_BASE_AUBASEPROCEDURE
health.fhir.r4.aubase410: PROFILE_BASE_AUBASERELATEDPERSON
health.fhir.r4.aubase410: PROFILE_BASE_AUBASESPECIMEN
health.fhir.r4.aubase410: PROFILE_BASE_AUBASESUBSTANCE
health.fhir.r4.aubase410: PROFILE_BASE_AUHEALTHPROGRAMPARTICIPATIONSUMMARY
health.fhir.r4.aubase410: PROFILE_BASE_AUMEDICINELIST
health.fhir.r4.aubase410: RESOURCE_NAME_AUASSERTIONNORELEVANTFINDING
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEALLERGYINTOLERANCE
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEBODYSTRUCTURE
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASECOMPOSITION
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASECONDITION
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEDIAGNOSTICIMAGINGREPORT
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEDIAGNOSTICIMAGINGRESULT
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEDIAGNOSTICREPORT
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEDIAGNOSTICREQUEST
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEDIAGNOSTICRESULT
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEENCOUNTER
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEHEALTHCARESERVICE
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEIMMUNISATION
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASELOCATION
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEMEDICATION
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEMEDICATIONADMINISTRATION
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEMEDICATIONDISPENSE
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEMEDICATIONREQUEST
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEMEDICATIONSTATEMENT
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEORGANISATION
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEPATHOLOGYREPORT
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEPATHOLOGYRESULT
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEPATIENT
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEPRACTITIONER
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEPRACTITIONERROLE
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASEPROCEDURE
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASERELATEDPERSON
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASESPECIMEN
health.fhir.r4.aubase410: RESOURCE_NAME_AUBASESUBSTANCE
health.fhir.r4.aubase410: RESOURCE_NAME_AUHEALTHPROGRAMPARTICIPATIONSUMMARY
health.fhir.r4.aubase410: RESOURCE_NAME_AUMEDICINELIST
Enums
health.fhir.r4.aubase410: AllergyIntoleranceCategory
AllergyIntoleranceCategory enum
Members
health.fhir.r4.aubase410: AllergyIntoleranceCriticality
AllergyIntoleranceCriticality enum
Members
health.fhir.r4.aubase410: AllergyIntoleranceReactionSeverity
AllergyIntoleranceReactionSeverity enum
Members
health.fhir.r4.aubase410: AllergyIntoleranceType
AllergyIntoleranceType enum
Members
health.fhir.r4.aubase410: CompositionAttesterMode
CompositionAttesterMode enum
Members
health.fhir.r4.aubase410: CompositionRelatesToCode
CompositionRelatesToCode enum
Members
health.fhir.r4.aubase410: CompositionSectionMode
CompositionSectionMode enum
Members
health.fhir.r4.aubase410: CompositionStatus
CompositionStatus enum
Members
health.fhir.r4.aubase410: DiagnosticReportStatus
DiagnosticReportStatus enum
Members
health.fhir.r4.aubase410: DiagnosticReportStatusOne
DiagnosticReportStatusOne enum
Members
health.fhir.r4.aubase410: DiagnosticReportStatusTwo
DiagnosticReportStatusTwo enum
Members
health.fhir.r4.aubase410: EncounterLocationStatus
EncounterLocationStatus enum
Members
health.fhir.r4.aubase410: EncounterStatus
EncounterStatus enum
Members
health.fhir.r4.aubase410: EncounterStatusHistoryStatus
EncounterStatusHistoryStatus enum
Members
health.fhir.r4.aubase410: HealthcareServiceAvailableTimeDaysOfWeek
HealthcareServiceAvailableTimeDaysOfWeek enum
Members
health.fhir.r4.aubase410: ImmunizationStatus
ImmunizationStatus enum
Members
health.fhir.r4.aubase410: ListMode
ListMode enum
Members
health.fhir.r4.aubase410: ListStatus
ListStatus enum
Members
health.fhir.r4.aubase410: LocationHoursOfOperationDaysOfWeek
LocationHoursOfOperationDaysOfWeek enum
Members
health.fhir.r4.aubase410: LocationMode
LocationMode enum
Members
health.fhir.r4.aubase410: LocationStatus
LocationStatus enum
Members
health.fhir.r4.aubase410: MedicationAdministrationStatus
MedicationAdministrationStatus enum
Members
health.fhir.r4.aubase410: MedicationDispenseStatus
MedicationDispenseStatus enum
Members
health.fhir.r4.aubase410: MedicationRequestIntent
MedicationRequestIntent enum
Members
health.fhir.r4.aubase410: MedicationRequestPriority
MedicationRequestPriority enum
Members
health.fhir.r4.aubase410: MedicationRequestStatus
MedicationRequestStatus enum
Members
health.fhir.r4.aubase410: MedicationStatementStatus
MedicationStatementStatus enum
Members
health.fhir.r4.aubase410: MedicationStatus
MedicationStatus enum
Members
health.fhir.r4.aubase410: ObservationStatus
ObservationStatus enum
Members
health.fhir.r4.aubase410: ObservationStatusFour
ObservationStatusFour enum
Members
health.fhir.r4.aubase410: ObservationStatusOne
ObservationStatusOne enum
Members
health.fhir.r4.aubase410: ObservationStatusThree
ObservationStatusThree enum
Members
health.fhir.r4.aubase410: ObservationStatusTwo
ObservationStatusTwo enum
Members
health.fhir.r4.aubase410: PatientContactGender
PatientContactGender enum
Members
health.fhir.r4.aubase410: PatientGender
PatientGender enum
Members
health.fhir.r4.aubase410: PatientLinkType
PatientLinkType enum
Members
health.fhir.r4.aubase410: PractitionerGender
PractitionerGender enum
Members
health.fhir.r4.aubase410: PractitionerRoleAvailableTimeDaysOfWeek
PractitionerRoleAvailableTimeDaysOfWeek enum
Members
health.fhir.r4.aubase410: ProcedureStatus
ProcedureStatus enum
Members
health.fhir.r4.aubase410: RelatedPersonGender
RelatedPersonGender enum
Members
health.fhir.r4.aubase410: ServiceRequestIntent
ServiceRequestIntent enum
Members
health.fhir.r4.aubase410: ServiceRequestPriority
ServiceRequestPriority enum
Members
health.fhir.r4.aubase410: ServiceRequestStatus
ServiceRequestStatus enum
Members
health.fhir.r4.aubase410: SpecimenStatus
SpecimenStatus enum
Members
health.fhir.r4.aubase410: SubstanceStatus
SubstanceStatus enum
Members
Variables
health.fhir.r4.aubase410: terminologyProcessor
Terminology processor instance
health.fhir.r4.aubase410: fhirRegistry
FHIR registry instance
health.fhir.r4.aubase410: FHIR_VALUE_SETS
health.fhir.r4.aubase410: FHIR_CODE_SYSTEMS
Records
health.fhir.r4.aubase410: AllergyIntoleranceReaction
FHIR AllergyIntoleranceReaction datatype record.
Fields
- severity AllergyIntoleranceReactionSeverity? - Clinical assessment of the severity of the reaction event as a whole, potentially considering multiple different manifestations.
- note Annotation[]? - Additional text about the adverse reaction event not captured in other fields.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- manifestation CodeableConcept[] - Clinical symptoms and/or signs that are observed or associated with the adverse reaction event.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- substance CodeableConcept? - Identification of the specific substance (or pharmaceutical product) considered to be responsible for the Adverse Reaction event. Note: the substance for a specific reaction may be different from the substance identified as the cause of the risk, but it must be consistent with it. For instance, it may be a more specific substance (e.g. a brand medication) or a composite product that includes the identified substance. It must be clinically safe to only process the 'code' and ignore the 'reaction.substance'. If a receiving system is unable to confirm that AllergyIntolerance.reaction.substance falls within the semantic scope of AllergyIntolerance.code, then the receiving system should ignore AllergyIntolerance.reaction.substance.
- description string? - Text description about the reaction as a whole, including details of the manifestation if required.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- onset dateTime? - Record of the date and/or time of the onset of the Reaction.
- exposureRoute CodeableConcept? - Identification of the route by which the subject was exposed to the substance.
health.fhir.r4.aubase410: AUAssertionNoRelevantFinding
FHIR AUAssertionNoRelevantFinding resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUASSERTIONNORELEVANTFINDING(default RESOURCE_NAME_AUASSERTIONNORELEVANTFINDING) - The type of the resource describes
- meta BaseAUAssertionNoRelevantFindingMeta(default { profile : [PROFILE_BASE_AUASSERTIONNORELEVANTFINDING] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- dataAbsentReason CodeableConcept? - Provides a reason why the expected value in the element Observation.value[x] is missing.
- note Annotation[]? - Comments about the observation or the results.
- partOf Reference[]? - A larger event of which this particular Observation is a component or step. For example, an observation as part of a procedure.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- code CodeableConcept - Describes what was observed. Sometimes this is called the observation 'name'.
- subject Reference - The patient, or group of patients, location, or device this observation is about and into whose record the observation is placed. If the actual focus of the observation is different from the subject (or a sample of, part, or region of the subject), the
focus
element or thecode
itself specifies the actual focus of the observation.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- focus Reference[]? - The actual focus of an observation when it is not the patient of record representing something or someone associated with the patient such as a spouse, parent, fetus, or donor. For example, fetus observations in a mother's record. The focus of an observation could also be an existing condition, an intervention, the subject's diet, another observation of the subject, or a body structure such as tumor or implanted device. An example use case would be using the Observation resource to capture whether the mother is trained to change her child's tracheostomy tube. In this example, the child is the patient of record and the mother is the focus.
- language code? - The base language in which the resource is written.
- specimen Reference? - The specimen that was used when this observation was made.
- derivedFrom Reference[]? - The target resource that represents a measurement from which this observation value is derived. For example, a calculated anion gap or a fetal measurement based on an ultrasound image.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- issued instant? - The date and time this version of the observation was made available to providers, typically after the results have been reviewed and verified.
- value CodeableConcept - An assertion that a procedure did not occur or that there are no items of specific interest (e.g. allergies, no current medications) for a patient or patient group.
- basedOn Reference[]? - A plan, proposal or order that is fulfilled in whole or in part by this event. For example, a MedicationRequest may require a patient to have laboratory test performed before it is dispensed.
- identifier Identifier[]? - A unique identifier assigned to this observation.
- performer Reference[]? - Who was responsible for asserting the observed value as 'true'.
- effectivePeriod Period? - The time or time-period the observed value is asserted as being true. For biological subjects - e.g. human patients - this is usually called the 'physiologically relevant time'. This is usually either the time of the procedure or of specimen collection, but very often the source of the date/time is not known, only the date/time itself.
- effectiveTiming Timing? - The time or time-period the observed value is asserted as being true. For biological subjects - e.g. human patients - this is usually called the 'physiologically relevant time'. This is usually either the time of the procedure or of specimen collection, but very often the source of the date/time is not known, only the date/time itself.
- method CodeableConcept? - Indicates the mechanism used to perform the observation.
- hasMember Reference[]? - This observation is a group observation (e.g. a battery, a panel of tests, a set of vital sign measurements) that includes the target as a member of the group.
- encounter Reference? - The healthcare event (e.g. a patient and healthcare provider interaction) during which this observation is made.
- bodySite CodeableConcept? - Indicates the site on the subject's body where the observation was made (i.e. the target site).
- component ObservationComponentFour[]? - Some observations have multiple component observations. These component observations are expressed as separate code value pairs that share the same attributes. Examples include systolic and diastolic component observations for blood pressure measurement and multiple component observations for genetics observations.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- referenceRange ObservationReferenceRangeFour[]? - Guidance on how to interpret the value by comparison to a normal or recommended range. Multiple reference ranges are interpreted as an 'OR'. In other words, to represent two distinct target populations, two
referenceRange
elements would be used.
- effectiveDateTime dateTime? - The time or time-period the observed value is asserted as being true. For biological subjects - e.g. human patients - this is usually called the 'physiologically relevant time'. This is usually either the time of the procedure or of specimen collection, but very often the source of the date/time is not known, only the date/time itself.
- interpretation CodeableConcept[]? - A categorical assessment of an observation value. For example, high, low, normal.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- category CodeableConcept[]? - A code that classifies the general type of observation being made.
- device Reference? - The device used to generate the observation data.
- effectiveInstant instant? - The time or time-period the observed value is asserted as being true. For biological subjects - e.g. human patients - this is usually called the 'physiologically relevant time'. This is usually either the time of the procedure or of specimen collection, but very often the source of the date/time is not known, only the date/time itself.
- status ObservationStatusFour - The status of the result value.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseAllergyIntolerance
FHIR AUBaseAllergyIntolerance resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEALLERGYINTOLERANCE(default RESOURCE_NAME_AUBASEALLERGYINTOLERANCE) - The type of the resource describes
- meta BaseAUBaseAllergyIntoleranceMeta(default { profile : [PROFILE_BASE_AUBASEALLERGYINTOLERANCE] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- note Annotation[]? - Additional narrative about the propensity for the Adverse Reaction, not captured in other fields.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- code CodeableConcept? - Code for an allergy or intolerance statement (either a positive or a negated/excluded statement). This may be a code for a substance or pharmaceutical product that is considered to be responsible for the adverse reaction risk (e.g., 'Latex'), an allergy or intolerance condition (e.g., 'Latex allergy'), or a negated/excluded code for a specific substance or class (e.g., 'No latex allergy') or a general or categorical negated statement (e.g., 'No known allergy', 'No known drug allergies'). Note: the substance for a specific reaction may be different from the substance identified as the cause of the risk, but it must be consistent with it. For instance, it may be a more specific substance (e.g. a brand medication) or a composite product that includes the identified substance. It must be clinically safe to only process the 'code' and ignore the 'reaction.substance'. If a receiving system is unable to confirm that AllergyIntolerance.reaction.substance falls within the semantic scope of AllergyIntolerance.code, then the receiving system should ignore AllergyIntolerance.reaction.substance.
- onsetRange Range? - Estimated or actual date, date-time, or age when allergy or intolerance was identified.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- criticality AllergyIntoleranceCriticality? - Estimate of the potential clinical harm, or seriousness, of the reaction to the identified substance.
- language code? - The base language in which the resource is written.
- clinicalStatus CodeableConcept? - The clinical status of the allergy or intolerance.
- onsetDateTime dateTime? - Estimated or actual date, date-time, or age when allergy or intolerance was identified.
- 'type AllergyIntoleranceType? - Identification of the underlying physiological mechanism for the reaction risk.
- onsetString string? - Estimated or actual date, date-time, or age when allergy or intolerance was identified.
- onsetAge Age? - Estimated or actual date, date-time, or age when allergy or intolerance was identified.
- lastOccurrence dateTime? - Represents the date and/or time of the last known occurrence of a reaction event.
- patient Reference - The patient who has the allergy or intolerance.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- identifier Identifier[]? - Business identifiers assigned to this AllergyIntolerance by the performer or other systems which remain constant as the resource is updated and propagates from server to server.
- recorder Reference? - Individual who recorded the record and takes responsibility for its content.
- onsetPeriod Period? - Estimated or actual date, date-time, or age when allergy or intolerance was identified.
- reaction AllergyIntoleranceReaction[]? - Details about each adverse reaction event linked to exposure to the identified substance.
- verificationStatus CodeableConcept? - Assertion about certainty associated with the propensity, or potential risk, of a reaction to the identified substance (including pharmaceutical product).
- recordedDate dateTime? - The recordedDate represents when this particular AllergyIntolerance record was created in the system, which is often a system-generated date.
- encounter Reference? - The encounter when the allergy or intolerance was asserted.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- asserter Reference? - The source of the information about the allergy that is recorded.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- category AllergyIntoleranceCategory[]? - Category of the identified substance.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseBodyStructure
FHIR AUBaseBodyStructure resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEBODYSTRUCTURE(default RESOURCE_NAME_AUBASEBODYSTRUCTURE) - The type of the resource describes
- meta BaseAUBaseBodyStructureMeta(default { profile : [PROFILE_BASE_AUBASEBODYSTRUCTURE] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- identifier Identifier[]? - Identifier for this instance of the anatomical structure.
- image Attachment[]? - Image or images used to identify a location.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- morphology CodeableConcept? - The kind of structure being represented by the body structure at
BodyStructure.location
. This can define both normal and abnormal morphologies.
- locationQualifier CodeableConcept[]? - Qualifier to refine the anatomical location. These include qualifiers for laterality, relative location, directionality, number, and plane.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- active boolean? - Whether this body site is in active use.
- description string? - A summary, characterization or explanation of the body structure.
- language code? - The base language in which the resource is written.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- patient Reference - The person to which the body site belongs.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- location CodeableConcept? - The anatomical location or region of the specimen, lesion, or body structure.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseComposition
FHIR AUBaseComposition resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASECOMPOSITION(default RESOURCE_NAME_AUBASECOMPOSITION) - The type of the resource describes
- meta BaseAUBaseCompositionMeta(default { profile : [PROFILE_BASE_AUBASECOMPOSITION] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- date dateTime - The composition editing time, when the composition was last logically changed by the author.
- identifier Identifier? - A version-independent identifier for the Composition. This identifier stays constant as the composition is changed over time.
- extension Extension[]? - An Extension
- custodian Reference? - Identifies the organization or group who is responsible for ongoing maintenance of and access to the composition/document information.
- author Reference[] - Identifies who is responsible for the information in the composition, not necessarily who typed it in.
- subject Reference? - Who or what the composition is about. The composition can be about a person, (patient or healthcare practitioner), a device (e.g. a machine) or even a group of subjects (such as a document about a herd of livestock, or a set of patients that share a common exposure).
- confidentiality code? - The code specifying the level of confidentiality of the Composition.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- language code? - The base language in which the resource is written.
- section CompositionSection[]? - The root of the sections that make up the composition.
- encounter Reference? - Describes the clinical encounter or type of care this documentation is associated with.
- title string - Official human-readable label for the composition.
- 'type CodeableConcept - Specifies the particular kind of composition (e.g. History and Physical, Discharge Summary, Progress Note). This usually equates to the purpose of making the composition.
- attester CompositionAttester[]? - A participant who has attested to the accuracy of the composition/document.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- category CodeableConcept[]? - A categorization for the type of the composition - helps for indexing and searching. This may be implied by or derived from the code specified in the Composition Type.
- event CompositionEvent[]? - The clinical service, such as a colonoscopy or an appendectomy, being documented.
- relatesTo CompositionRelatesTo[]? - Relationships that this composition has with other compositions or documents that already exist.
- status CompositionStatus - The workflow/clinical status of this composition. The status is a marker for the clinical standing of the document.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseCondition
FHIR AUBaseCondition resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASECONDITION(default RESOURCE_NAME_AUBASECONDITION) - The type of the resource describes
- meta BaseAUBaseConditionMeta(default { profile : [PROFILE_BASE_AUBASECONDITION] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- note Annotation[]? - Additional information about the Condition. This is a general notes/comments entry for description of the Condition, its diagnosis and prognosis.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- code CodeableConcept? - Identification of the condition, problem or diagnosis.
- evidence ConditionEvidence[]? - Supporting evidence / manifestations that are the basis of the Condition's verification status, such as evidence that confirmed or refuted the condition.
- onsetRange Range? - Estimated or actual date or date-time the condition began, in the opinion of the clinician.
- abatementDateTime dateTime? - The date or estimated date that the condition resolved or went into remission. This is called 'abatement' because of the many overloaded connotations associated with 'remission' or 'resolution' - Conditions are never really resolved, but they can abate.
- subject Reference - Indicates the patient or group who the condition record is associated with.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- language code? - The base language in which the resource is written.
- clinicalStatus CodeableConcept? - The clinical status of the condition.
- onsetDateTime dateTime? - Estimated or actual date or date-time the condition began, in the opinion of the clinician.
- onsetString string? - Estimated or actual date or date-time the condition began, in the opinion of the clinician.
- onsetAge Age? - Estimated or actual date or date-time the condition began, in the opinion of the clinician.
- abatementPeriod Period? - The date or estimated date that the condition resolved or went into remission. This is called 'abatement' because of the many overloaded connotations associated with 'remission' or 'resolution' - Conditions are never really resolved, but they can abate.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- abatementString string? - The date or estimated date that the condition resolved or went into remission. This is called 'abatement' because of the many overloaded connotations associated with 'remission' or 'resolution' - Conditions are never really resolved, but they can abate.
- severity CodeableConcept? - A subjective assessment of the severity of the condition as evaluated by the clinician.
- identifier Identifier[]? - Business identifiers assigned to this condition by the performer or other systems which remain constant as the resource is updated and propagates from server to server.
- recorder Reference? - Individual who recorded the record and takes responsibility for its content.
- onsetPeriod Period? - Estimated or actual date or date-time the condition began, in the opinion of the clinician.
- verificationStatus CodeableConcept? - The verification status to support the clinical status of the condition.
- recordedDate dateTime? - The recordedDate represents when this particular Condition record was created in the system, which is often a system-generated date.
- abatementRange Range? - The date or estimated date that the condition resolved or went into remission. This is called 'abatement' because of the many overloaded connotations associated with 'remission' or 'resolution' - Conditions are never really resolved, but they can abate.
- encounter Reference? - The Encounter during which this Condition was created or to which the creation of this record is tightly associated.
- bodySite CodeableConcept[]? - The anatomical location where this condition manifests itself.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- asserter Reference? - Individual who is making the condition statement.
- stage ConditionStage[]? - Clinical stage or grade of a condition. May include formal severity assessments.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- category CodeableConcept[]? - A category assigned to the condition.
- abatementAge Age? - The date or estimated date that the condition resolved or went into remission. This is called 'abatement' because of the many overloaded connotations associated with 'remission' or 'resolution' - Conditions are never really resolved, but they can abate.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseDiagnosticImagingReport
FHIR AUBaseDiagnosticImagingReport resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEDIAGNOSTICIMAGINGREPORT(default RESOURCE_NAME_AUBASEDIAGNOSTICIMAGINGREPORT) - The type of the resource describes
- meta BaseAUBaseDiagnosticImagingReportMeta(default { profile : [PROFILE_BASE_AUBASEDIAGNOSTICIMAGINGREPORT] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- code CodeableConcept - A code or name that describes this diagnostic report.
- subject Reference - The subject of the report. Usually, but not always, this is a patient. However, diagnostic services also perform analyses on specimens collected from a variety of other sources.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- presentedForm Attachment[]? - Rich text representation of the entire result as issued by the diagnostic service. Multiple formats are allowed but they SHALL be semantically equivalent.
- language code? - The base language in which the resource is written.
- media DiagnosticReportMediaTwo[]? - A list of key images associated with this report. The images are generally created during the diagnostic process, and may be directly of the patient, or of treated specimens (i.e. slides of interest).
- conclusion string? - Concise and clinically contextualized summary conclusion (interpretation/impression) of the diagnostic report.
- result Reference[]? - Observations that are part of this diagnostic report.
- specimen Reference[]? - Details about the specimens on which this diagnostic report is based.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- issued instant? - The date and time that this version of the report was made available to providers, typically after the report was reviewed and verified.
- basedOn Reference[]? - Details concerning a service requested.
- identifier Identifier[]? - Identifiers assigned to this report by the performer or other systems.
- performer Reference[]? - The diagnostic service that is responsible for issuing the report.
- effectivePeriod Period - The time or time-period the observed values are related to. When the subject of the report is a patient, this is usually either the time of the procedure or of specimen collection(s), but very often the source of the date/time is not known, only the date/time itself.
- resultsInterpreter Reference[]? - The practitioner or organization that is responsible for the report's conclusions and interpretations.
- conclusionCode CodeableConcept[]? - One or more codes that represent the summary conclusion (interpretation/impression) of the diagnostic report.
- encounter Reference? - The healthcare event (e.g. a patient and healthcare provider interaction) which this DiagnosticReport is about.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- effectiveDateTime dateTime - The time or time-period the observed values are related to. When the subject of the report is a patient, this is usually either the time of the procedure or of specimen collection(s), but very often the source of the date/time is not known, only the date/time itself.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- category CodeableConcept[] - A code that classifies the clinical discipline, department or diagnostic service that created the report (e.g. cardiology, biochemistry, hematology, MRI). This is used for searching, sorting and display purposes.
- imagingStudy Reference[]? - One or more links to full details of any imaging performed during the diagnostic investigation. Typically, this is imaging performed by DICOM enabled modalities, but this is not required. A fully enabled PACS viewer can use this information to provide views of the source images.
- status DiagnosticReportStatusTwo - The status of the diagnostic report.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseDiagnosticImagingResult
FHIR AUBaseDiagnosticImagingResult resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEDIAGNOSTICIMAGINGRESULT(default RESOURCE_NAME_AUBASEDIAGNOSTICIMAGINGRESULT) - The type of the resource describes
- meta BaseAUBaseDiagnosticImagingResultMeta(default { profile : [PROFILE_BASE_AUBASEDIAGNOSTICIMAGINGRESULT] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- valueBoolean boolean? - The information determined as a result of making the observation, if the information has a simple value.
- dataAbsentReason CodeableConcept? - Provides a reason why the expected value in the element Observation.value[x] is missing.
- note Annotation[]? - Comments about the observation or the results.
- partOf Reference[]? - A larger event of which this particular Observation is a component or step. For example, an observation as part of a procedure.
- extension Extension[]? - An Extension
- valueTime time? - The information determined as a result of making the observation, if the information has a simple value.
- code CodeableConcept - Describes what was observed. Sometimes this is called the observation 'name'.
- subject Reference - The patient, or group of patients, location, or device this observation is about and into whose record the observation is placed. If the actual focus of the observation is different from the subject (or a sample of, part, or region of the subject), the
focus
element or thecode
itself specifies the actual focus of the observation.
- valueRange Range? - The information determined as a result of making the observation, if the information has a simple value.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- focus Reference[]? - The actual focus of an observation when it is not the patient of record representing something or someone associated with the patient such as a spouse, parent, fetus, or donor. For example, fetus observations in a mother's record. The focus of an observation could also be an existing condition, an intervention, the subject's diet, another observation of the subject, or a body structure such as tumor or implanted device. An example use case would be using the Observation resource to capture whether the mother is trained to change her child's tracheostomy tube. In this example, the child is the patient of record and the mother is the focus.
- language code? - The base language in which the resource is written.
- valueCodeableConcept CodeableConcept? - The information determined as a result of making the observation, if the information has a simple value.
- valueRatio Ratio? - The information determined as a result of making the observation, if the information has a simple value.
- specimen Reference? - The specimen that was used when this observation was made.
- derivedFrom Reference[]? - The target resource that represents a measurement from which this observation value is derived. For example, a calculated anion gap or a fetal measurement based on an ultrasound image.
- valueDateTime dateTime? - The information determined as a result of making the observation, if the information has a simple value.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- issued instant? - The date and time this version of the observation was made available to providers, typically after the results have been reviewed and verified.
- valueInteger integer? - The information determined as a result of making the observation, if the information has a simple value.
- basedOn Reference[]? - A plan, proposal or order that is fulfilled in whole or in part by this event. For example, a MedicationRequest may require a patient to have laboratory test performed before it is dispensed.
- valueQuantity Quantity? - The information determined as a result of making the observation, if the information has a simple value.
- identifier Identifier[]? - A unique identifier assigned to this observation.
- performer Reference[]? - Who was responsible for asserting the observed value as 'true'.
- effectivePeriod Period - The time or time-period the observed value is asserted as being true. For biological subjects - e.g. human patients - this is usually called the 'physiologically relevant time'. This is usually either the time of the procedure or of specimen collection, but very often the source of the date/time is not known, only the date/time itself.
- method CodeableConcept? - Indicates the mechanism used to perform the observation.
- hasMember Reference[]? - This observation is a group observation (e.g. a battery, a panel of tests, a set of vital sign measurements) that includes the target as a member of the group.
- encounter Reference? - The healthcare event (e.g. a patient and healthcare provider interaction) during which this observation is made.
- bodySite CodeableConcept? - Indicates the site on the subject's body where the observation was made (i.e. the target site).
- component ObservationComponentThree[]? - Some observations have multiple component observations. These component observations are expressed as separate code value pairs that share the same attributes. Examples include systolic and diastolic component observations for blood pressure measurement and multiple component observations for genetics observations.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- referenceRange ObservationReferenceRangeThree[]? - Guidance on how to interpret the value by comparison to a normal or recommended range. Multiple reference ranges are interpreted as an 'OR'. In other words, to represent two distinct target populations, two
referenceRange
elements would be used.
- valueString string? - The information determined as a result of making the observation, if the information has a simple value.
- effectiveDateTime dateTime - The time or time-period the observed value is asserted as being true. For biological subjects - e.g. human patients - this is usually called the 'physiologically relevant time'. This is usually either the time of the procedure or of specimen collection, but very often the source of the date/time is not known, only the date/time itself.
- interpretation CodeableConcept[]? - A categorical assessment of an observation value. For example, high, low, normal.
- valueSampledData SampledData? - The information determined as a result of making the observation, if the information has a simple value.
- valuePeriod Period? - The information determined as a result of making the observation, if the information has a simple value.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- category CodeableConcept[] - A code that classifies the general type of observation being made.
- device Reference? - The device used to generate the observation data.
- status ObservationStatusThree - The status of the result value.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseDiagnosticReport
FHIR AUBaseDiagnosticReport resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEDIAGNOSTICREPORT(default RESOURCE_NAME_AUBASEDIAGNOSTICREPORT) - The type of the resource describes
- meta BaseAUBaseDiagnosticReportMeta(default { profile : [PROFILE_BASE_AUBASEDIAGNOSTICREPORT] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- code CodeableConcept - A code or name that describes this diagnostic report.
- subject Reference? - The subject of the report. Usually, but not always, this is a patient. However, diagnostic services also perform analyses on specimens collected from a variety of other sources.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- presentedForm Attachment[]? - Rich text representation of the entire result as issued by the diagnostic service. Multiple formats are allowed but they SHALL be semantically equivalent.
- language code? - The base language in which the resource is written.
- media DiagnosticReportMediaOne[]? - A list of key images associated with this report. The images are generally created during the diagnostic process, and may be directly of the patient, or of treated specimens (i.e. slides of interest).
- conclusion string? - Concise and clinically contextualized summary conclusion (interpretation/impression) of the diagnostic report.
- result Reference[]? - Observations that are part of this diagnostic report.
- specimen Reference[]? - Details about the specimens on which this diagnostic report is based.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- issued instant? - The date and time that this version of the report was made available to providers, typically after the report was reviewed and verified.
- basedOn Reference[]? - Details concerning a service requested.
- identifier Identifier[]? - Identifiers assigned to this report by the performer or other systems.
- performer Reference[]? - The diagnostic service that is responsible for issuing the report.
- effectivePeriod Period? - The time or time-period the observed values are related to. When the subject of the report is a patient, this is usually either the time of the procedure or of specimen collection(s), but very often the source of the date/time is not known, only the date/time itself.
- resultsInterpreter Reference[]? - The practitioner or organization that is responsible for the report's conclusions and interpretations.
- conclusionCode CodeableConcept[]? - One or more codes that represent the summary conclusion (interpretation/impression) of the diagnostic report.
- encounter Reference? - The healthcare event (e.g. a patient and healthcare provider interaction) which this DiagnosticReport is about.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- effectiveDateTime dateTime? - The time or time-period the observed values are related to. When the subject of the report is a patient, this is usually either the time of the procedure or of specimen collection(s), but very often the source of the date/time is not known, only the date/time itself.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- category CodeableConcept[]? - A code that classifies the clinical discipline, department or diagnostic service that created the report (e.g. cardiology, biochemistry, hematology, MRI). This is used for searching, sorting and display purposes.
- imagingStudy Reference[]? - One or more links to full details of any imaging performed during the diagnostic investigation. Typically, this is imaging performed by DICOM enabled modalities, but this is not required. A fully enabled PACS viewer can use this information to provide views of the source images.
- status DiagnosticReportStatusOne - The status of the diagnostic report.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseDiagnosticRequest
FHIR AUBaseDiagnosticRequest resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEDIAGNOSTICREQUEST(default RESOURCE_NAME_AUBASEDIAGNOSTICREQUEST) - The type of the resource describes
- meta BaseAUBaseDiagnosticRequestMeta(default { profile : [PROFILE_BASE_AUBASEDIAGNOSTICREQUEST] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- insurance Reference[]? - Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be needed for delivering the requested service.
- note Annotation[]? - Any other notes and comments made about the service request. For example, internal billing notes.
- extension Extension[]? - An Extension
- code CodeableConcept? - A code that identifies a particular service (i.e., procedure, diagnostic investigation, or panel of investigations) that have been requested.
- requisition Identifier? - A shared identifier common to all service requests that were authorized more or less simultaneously by a single author, representing the composite or group identifier.
- subject Reference - On whom or what the service is to be performed. This is usually a human patient, but can also be requested on animals, groups of humans or animals, devices such as dialysis machines, or even locations (typically for environmental scans).
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- reasonReference Reference[]? - Indicates another resource that provides a justification for why this service is being requested. May relate to the resources referred to in
supportingInfo
.
- language code? - The base language in which the resource is written.
- instantiatesUri uri[]? - The URL pointing to an externally maintained protocol, guideline, orderset or other definition that is adhered to in whole or in part by this ServiceRequest.
- relevantHistory Reference[]? - Key events in the history of the request.
- supportingInfo Reference[]? - Additional clinical information about the patient or specimen that may influence the services or their interpretations. This information includes diagnosis, clinical findings and other observations. In laboratory ordering these are typically referred to as 'ask at order entry questions (AOEs)'. This includes observations explicitly requested by the producer (filler) to provide context or supporting information needed to complete the order. For example, reporting the amount of inspired oxygen for blood gas measurements.
- specimen Reference[]? - One or more specimens that the laboratory procedure will use.
- quantityQuantity Quantity? - An amount of service being requested which can be a quantity ( for example $1,500 home modification), a ratio ( for example, 20 half day visits per month), or a range (2.0 to 1.8 Gy per fraction).
- quantityRatio Ratio? - An amount of service being requested which can be a quantity ( for example $1,500 home modification), a ratio ( for example, 20 half day visits per month), or a range (2.0 to 1.8 Gy per fraction).
- asNeededBoolean boolean? - If a CodeableConcept is present, it indicates the pre-condition for performing the service. For example 'pain', 'on flare-up', etc.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- locationReference Reference[]? - A reference to the the preferred location(s) where the procedure should actually happen. E.g. at home or nursing day care center.
- reasonCode CodeableConcept[]? - An explanation or justification for why this service is being requested in coded or textual form. This is often for billing purposes. May relate to the resources referred to in
supportingInfo
.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- doNotPerform boolean? - Set this to true if the record is saying that the service/procedure should NOT be performed.
- basedOn Reference[]? - Plan/proposal/order fulfilled by this request.
- asNeededCodeableConcept CodeableConcept? - If a CodeableConcept is present, it indicates the pre-condition for performing the service. For example 'pain', 'on flare-up', etc.
- requester Reference? - The individual who initiated the request and has responsibility for its activation.
- identifier Identifier[]? - Identifiers assigned to this order instance by the orderer and/or the receiver and/or order fulfiller.
- authoredOn dateTime? - When the request transitioned to being actionable.
- performer Reference[]? - The desired performer for doing the requested service. For example, the surgeon, dermatopathologist, endoscopist, etc.
- replaces Reference[]? - The request takes the place of the referenced completed or terminated request(s).
- encounter Reference? - An encounter that provides additional information about the healthcare context in which this request is made.
- occurrenceTiming Timing? - The date/time at which the requested service should occur.
- quantityRange Range? - An amount of service being requested which can be a quantity ( for example $1,500 home modification), a ratio ( for example, 20 half day visits per month), or a range (2.0 to 1.8 Gy per fraction).
- instantiatesCanonical canonical[]? - The URL pointing to a FHIR-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this ServiceRequest.
- priority ServiceRequestPriority? - Indicates how quickly the ServiceRequest should be addressed with respect to other requests.
- intent ServiceRequestIntent - Whether the request is a proposal, plan, an original order or a reflex order.
- performerType CodeableConcept? - Desired type of performer for doing the requested service.
- bodySite CodeableConcept[]? - Anatomic location where the procedure should be performed. This is the target site.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- occurrencePeriod Period? - The date/time at which the requested service should occur.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- occurrenceDateTime dateTime? - The date/time at which the requested service should occur.
- orderDetail CodeableConcept[]? - Additional details and instructions about the how the services are to be delivered. For example, and order for a urinary catheter may have an order detail for an external or indwelling catheter, or an order for a bandage may require additional instructions specifying how the bandage should be applied.
- category CodeableConcept[]? - A code that classifies the service for searching, sorting and display purposes (e.g. 'Surgical Procedure').
- locationCode CodeableConcept[]? - The preferred location(s) where the procedure should actually happen in coded or free text form. E.g. at home or nursing day care center.
- patientInstruction string? - Instructions in terms that are understood by the patient or consumer.
- status ServiceRequestStatus - The status of the order.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseDiagnosticResult
FHIR AUBaseDiagnosticResult resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEDIAGNOSTICRESULT(default RESOURCE_NAME_AUBASEDIAGNOSTICRESULT) - The type of the resource describes
- meta BaseAUBaseDiagnosticResultMeta(default { profile : [PROFILE_BASE_AUBASEDIAGNOSTICRESULT] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- valueBoolean boolean? - The information determined as a result of making the observation, if the information has a simple value.
- dataAbsentReason CodeableConcept? - Provides a reason why the expected value in the element Observation.value[x] is missing.
- note Annotation[]? - Comments about the observation or the results.
- partOf Reference[]? - A larger event of which this particular Observation is a component or step. For example, an observation as part of a procedure.
- extension Extension[]? - An Extension
- valueTime time? - The information determined as a result of making the observation, if the information has a simple value.
- code CodeableConcept - Describes what was observed. Sometimes this is called the observation 'name'.
- subject Reference - The patient, or group of patients, location, or device this observation is about and into whose record the observation is placed. If the actual focus of the observation is different from the subject (or a sample of, part, or region of the subject), the
focus
element or thecode
itself specifies the actual focus of the observation.
- valueRange Range? - The information determined as a result of making the observation, if the information has a simple value.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- focus Reference[]? - The actual focus of an observation when it is not the patient of record representing something or someone associated with the patient such as a spouse, parent, fetus, or donor. For example, fetus observations in a mother's record. The focus of an observation could also be an existing condition, an intervention, the subject's diet, another observation of the subject, or a body structure such as tumor or implanted device. An example use case would be using the Observation resource to capture whether the mother is trained to change her child's tracheostomy tube. In this example, the child is the patient of record and the mother is the focus.
- language code? - The base language in which the resource is written.
- valueCodeableConcept CodeableConcept? - The information determined as a result of making the observation, if the information has a simple value.
- valueRatio Ratio? - The information determined as a result of making the observation, if the information has a simple value.
- specimen Reference? - The specimen that was used when this observation was made.
- derivedFrom Reference[]? - The target resource that represents a measurement from which this observation value is derived. For example, a calculated anion gap or a fetal measurement based on an ultrasound image.
- valueDateTime dateTime? - The information determined as a result of making the observation, if the information has a simple value.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- issued instant? - The date and time this version of the observation was made available to providers, typically after the results have been reviewed and verified.
- valueInteger integer? - The information determined as a result of making the observation, if the information has a simple value.
- basedOn Reference[]? - A plan, proposal or order that is fulfilled in whole or in part by this event. For example, a MedicationRequest may require a patient to have laboratory test performed before it is dispensed.
- valueQuantity Quantity? - The information determined as a result of making the observation, if the information has a simple value.
- identifier Identifier[]? - A unique identifier assigned to this observation.
- performer Reference[]? - Who was responsible for asserting the observed value as 'true'.
- effectivePeriod Period - The time or time-period the observed value is asserted as being true. For biological subjects - e.g. human patients - this is usually called the 'physiologically relevant time'. This is usually either the time of the procedure or of specimen collection, but very often the source of the date/time is not known, only the date/time itself.
- method CodeableConcept? - Indicates the mechanism used to perform the observation.
- hasMember Reference[]? - This observation is a group observation (e.g. a battery, a panel of tests, a set of vital sign measurements) that includes the target as a member of the group.
- encounter Reference? - The healthcare event (e.g. a patient and healthcare provider interaction) during which this observation is made.
- bodySite CodeableConcept? - Indicates the site on the subject's body where the observation was made (i.e. the target site).
- component ObservationComponent[]? - Some observations have multiple component observations. These component observations are expressed as separate code value pairs that share the same attributes. Examples include systolic and diastolic component observations for blood pressure measurement and multiple component observations for genetics observations.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- referenceRange ObservationReferenceRange[]? - Guidance on how to interpret the value by comparison to a normal or recommended range. Multiple reference ranges are interpreted as an 'OR'. In other words, to represent two distinct target populations, two
referenceRange
elements would be used.
- valueString string? - The information determined as a result of making the observation, if the information has a simple value.
- effectiveDateTime dateTime - The time or time-period the observed value is asserted as being true. For biological subjects - e.g. human patients - this is usually called the 'physiologically relevant time'. This is usually either the time of the procedure or of specimen collection, but very often the source of the date/time is not known, only the date/time itself.
- interpretation CodeableConcept[]? - A categorical assessment of an observation value. For example, high, low, normal.
- valueSampledData SampledData? - The information determined as a result of making the observation, if the information has a simple value.
- valuePeriod Period? - The information determined as a result of making the observation, if the information has a simple value.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- category CodeableConcept[] - A code that classifies the general type of observation being made.
- device Reference? - The device used to generate the observation data.
- status ObservationStatus - The status of the result value.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseEncounter
FHIR AUBaseEncounter resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEENCOUNTER(default RESOURCE_NAME_AUBASEENCOUNTER) - The type of the resource describes
- meta BaseAUBaseEncounterMeta(default { profile : [PROFILE_BASE_AUBASEENCOUNTER] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- serviceType CodeableConcept? - Broad categorization of the service that is to be provided (e.g. cardiology).
- partOf Reference? - Another Encounter of which this encounter is a part of (administratively or in time).
- extension Extension[]? - An Extension
- subject Reference? - The patient or group present at the encounter.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- reasonReference Reference[]? - Reason the encounter takes place, expressed as a code. For admissions, this can be used for a coded admission diagnosis.
- appointment Reference[]? - The appointment that scheduled this encounter.
- language code? - The base language in which the resource is written.
- 'type CodeableConcept[]? - Specific type of encounter (e.g. e-mail consultation, surgical day-care, skilled nursing, rehabilitation).
- participant EncounterParticipant[]? - The list of people responsible for providing the service.
- episodeOfCare Reference[]? - Where a specific encounter should be classified as a part of a specific episode(s) of care this field should be used. This association can facilitate grouping of related encounters together for a specific purpose, such as government reporting, issue tracking, association via a common problem. The association is recorded on the encounter as these are typically created after the episode of care and grouped on entry rather than editing the episode of care to append another encounter to it (the episode of care could span years).
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- reasonCode CodeableConcept[]? - Reason the encounter takes place, expressed as a code. For admissions, this can be used for a coded admission diagnosis.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- 'class Coding - Concepts representing classification of patient encounter such as ambulatory (outpatient), inpatient, emergency, home health or others due to local variations.
- basedOn Reference[]? - The request this encounter satisfies (e.g. incoming referral or procedure request).
- identifier Identifier[]? - Identifier(s) by which this encounter is known.
- period Period? - The start and end time of the encounter.
- classHistory EncounterClassHistory[]? - The class history permits the tracking of the encounters transitions without needing to go through the resource history. This would be used for a case where an admission starts of as an emergency encounter, then transitions into an inpatient scenario. Doing this and not restarting a new encounter ensures that any lab/diagnostic results can more easily follow the patient and not require re-processing and not get lost or cancelled during a kind of discharge from emergency to inpatient.
- hospitalization EncounterHospitalization? - Details about the admission to a healthcare service.
- length Duration? - Quantity of time the encounter lasted. This excludes the time during leaves of absence.
- diagnosis EncounterDiagnosis[]? - The list of diagnosis relevant to this encounter.
- priority CodeableConcept? - Indicates the urgency of the encounter.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- statusHistory EncounterStatusHistory[]? - The status history permits the encounter resource to contain the status history without needing to read through the historical versions of the resource, or even have the server store them.
- serviceProvider Reference? - The organization that is primarily responsible for this Encounter's services. This MAY be the same as the organization on the Patient record, however it could be different, such as if the actor performing the services was from an external organization (which may be billed seperately) for an external consultation. Refer to the example bundle showing an abbreviated set of Encounters for a colonoscopy.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- location EncounterLocation[]? - List of locations where the patient has been during this encounter.
- account Reference[]? - The set of accounts that may be used for billing for this Encounter.
- status EncounterStatus - planned | arrived | triaged | in-progress | onleave | finished | cancelled +.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseHealthcareService
FHIR AUBaseHealthcareService resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEHEALTHCARESERVICE(default RESOURCE_NAME_AUBASEHEALTHCARESERVICE) - The type of the resource describes
- meta BaseAUBaseHealthcareServiceMeta(default { profile : [PROFILE_BASE_AUBASEHEALTHCARESERVICE] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- serviceProvisionCode CodeableConcept[]? - The code(s) that detail the conditions under which the healthcare service is available/offered.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- specialty CodeableConcept[]? - Collection of specialties handled by the service site. This is more of a medical term.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- eligibility HealthcareServiceEligibility[]? - Does this service have specific eligibility requirements that need to be met in order to use the service?
- language code? - The base language in which the resource is written.
- program CodeableConcept[]? - Programs that this service is applicable to.
- 'type CodeableConcept[]? - The specific type of service that may be delivered or performed.
- characteristic CodeableConcept[]? - Collection of characteristics (attributes).
- notAvailable HealthcareServiceNotAvailable[]? - The HealthcareService is not available during this period of time due to the provided reason.
- availableTime HealthcareServiceAvailableTime[]? - A collection of times that the Service Site is available.
- endpoint Reference[]? - Technical endpoints providing access to services operated for the specific healthcare services defined at this resource.
- telecom ContactPoint[]? - List of contacts related to this specific healthcare service.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- communication CodeableConcept[]? - Some services are specifically made available in multiple languages, this property permits a directory to declare the languages this is offered in. Typically this is only provided where a service operates in communities with mixed languages used.
- referralMethod CodeableConcept[]? - Ways that the service accepts referrals, if this is not provided then it is implied that no referral is required.
- providedBy Reference? - The organization that provides this healthcare service.
- identifier Identifier[]? - External identifiers for this item.
- appointmentRequired boolean? - Indicates whether or not a prospective consumer will require an appointment for a particular service at a site to be provided by the Organization. Indicates if an appointment is required for access to this service.
- active boolean? - This flag is used to mark the record to not be used. This is not used when a center is closed for maintenance, or for holidays, the notAvailable period is to be used for this.
- photo Attachment? - If there is a photo/symbol associated with this HealthcareService, it may be included here to facilitate quick identification of the service in a list.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- name string? - Further description of the service as it would be presented to a consumer while searching.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- comment string? - Any additional description of the service and/or any specific issues not covered by the other attributes, which can be displayed as further detail under the serviceName.
- location Reference[]? - The location(s) where this healthcare service may be provided.
- category CodeableConcept[]? - Identifies the broad category of service being performed or delivered.
- extraDetails markdown? - Extra details about the service that can't be placed in the other fields.
- availabilityExceptions string? - A description of site availability exceptions, e.g. public holiday availability. Succinctly describing all possible exceptions to normal site availability as details in the available Times and not available Times.
- coverageArea Reference[]? - The location(s) that this service is available to (not where the service is provided).
- never... - Rest field
health.fhir.r4.aubase410: AUBaseImmunisation
FHIR AUBaseImmunisation resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEIMMUNISATION(default RESOURCE_NAME_AUBASEIMMUNISATION) - The type of the resource describes
- meta BaseAUBaseImmunisationMeta(default { profile : [PROFILE_BASE_AUBASEIMMUNISATION] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- note Annotation[]? - Extra information about the immunization that is not conveyed by the other attributes.
- primarySource boolean? - An indication that the content of the record is based on information from the person who administered the vaccine. This reflects the context under which the data was originally recorded.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- education ImmunizationEducation[]? - Educational material presented to the patient (or guardian) at the time of vaccine administration.
- doseQuantity Quantity? - The quantity of vaccine product that was administered.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- reasonReference Reference[]? - Condition, Observation or DiagnosticReport that supports why the immunization was administered.
- language code? - The base language in which the resource is written.
- manufacturer Reference? - Physical vaccine product manufacturer.
- programEligibility CodeableConcept[]? - Indicates a patient's eligibility for a funding program.
- statusReason CodeableConcept? - Indicates the reason the immunization event was not performed.
- isSubpotent boolean? - Indication if a dose is considered to be subpotent. By default, a dose should be considered to be potent.
- patient Reference - The patient who either received or did not receive the immunization.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- reasonCode CodeableConcept[]? - Reasons why the vaccine was administered.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- vaccineCode CodeableConcept - Vaccine that was administered or was to be administered.
- expirationDate date? - Date vaccine batch expires.
- identifier Identifier[]? - A unique identifier assigned to this immunization record.
- performer ImmunizationPerformer[]? - Indicates who performed the immunization event.
- reaction ImmunizationReaction[]? - Categorical data indicating that an adverse event is associated in time to an immunization.
- subpotentReason CodeableConcept[]? - Reason why a dose is considered to be subpotent.
- encounter Reference? - The visit or admission or other contact between patient and health care provider the immunization was performed as part of.
- lotNumber string? - Lot number of the vaccine product.
- recorded dateTime? - The date the occurrence of the immunization was first captured in the record - potentially significantly after the occurrence of the event.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- site CodeableConcept? - Body site where vaccine was administered.
- route CodeableConcept? - The path by which the vaccine product is taken into the body.
- protocolApplied ImmunizationProtocolApplied[]? - The protocol (set of recommendations) being followed by the provider who administered the dose.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- reportOrigin CodeableConcept? - The source of the data when the report of the immunization event is not based on information from the person who administered the vaccine.
- location Reference? - The service delivery location where the vaccine administration occurred.
- occurrenceDateTime dateTime - Date vaccine administered or was to be administered.
- occurrenceString string - Date vaccine administered or was to be administered.
- fundingSource CodeableConcept? - Indicates the source of the vaccine actually administered. This may be different than the patient eligibility (e.g. the patient may be eligible for a publically purchased vaccine but due to inventory issues, vaccine purchased with private funds was actually administered).
- status ImmunizationStatus - Indicates the current status of the immunization event.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseLocation
FHIR AUBaseLocation resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASELOCATION(default RESOURCE_NAME_AUBASELOCATION) - The type of the resource describes
- meta BaseAUBaseLocationMeta(default { profile : [PROFILE_BASE_AUBASELOCATION] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- operationalStatus Coding? - The operational status covers operation values most relevant to beds (but can also apply to rooms/units/chairs/etc. such as an isolation unit/dialysis chair). This typically covers concepts such as contamination, housekeeping, and other activities like maintenance.
- partOf Reference? - Another Location of which this Location is physically a part of.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- description string? - Description of the Location, which helps in finding or referencing the place.
- hoursOfOperation LocationHoursOfOperation[]? - What days/times during a week is this location usually open.
- language code? - The base language in which the resource is written.
- 'type CodeableConcept[]? - Indicates the type of function performed at the location.
- mode LocationMode? - Indicates whether a resource instance represents a specific location or a class of locations.
- endpoint Reference[]? - Technical endpoints providing access to services operated for the location.
- alias string[]? - A list of alternate names that the location is known as, or was known as, in the past.
- telecom ContactPoint[]? - The contact details of communication devices available at the location. This can include phone numbers, fax numbers, mobile numbers, email addresses and web sites.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- identifier Identifier[]? - Unique code or number identifying the location to its users.
- address Address? - An address expressed using postal conventions (as opposed to GPS or other location definition formats). This data type may be used to convey addresses for use in delivering mail as well as for visiting locations which might not be valid for mail delivery. There are a variety of postal address formats defined around the world.
- physicalType CodeableConcept? - Physical form of the location, e.g. building, room, vehicle, road.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- managingOrganization Reference? - The organization responsible for the provisioning and upkeep of the location.
- name string? - Name of the location as used by humans. Does not need to be unique.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- position LocationPosition? - The absolute geographic location of the Location, expressed using the WGS84 datum (This is the same co-ordinate system used in KML).
- availabilityExceptions string? - A description of when the locations opening ours are different to normal, e.g. public holiday availability. Succinctly describing all possible exceptions to normal site availability as detailed in the opening hours Times.
- status LocationStatus? - The status property covers the general availability of the resource, not the current value which may be covered by the operationStatus, or by a schedule/slots if they are configured for the location.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseMedication
FHIR AUBaseMedication resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEMEDICATION(default RESOURCE_NAME_AUBASEMEDICATION) - The type of the resource describes
- meta BaseAUBaseMedicationMeta(default { profile : [PROFILE_BASE_AUBASEMEDICATION] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- identifier Identifier[]? - Business identifier for this medication.
- amount Ratio? - Specific amount of the drug in the packaged product. For example, when specifying a product that has the same strength (For example, Insulin glargine 100 unit per mL solution for injection), this attribute provides additional clarification of the package amount (For example, 3 mL, 10mL, etc.).
- extension Extension[]? - An Extension
- code CodeableConcept? - A code (or set of codes) that specify this medication, or a textual description if no code is available. Usage note: This could be a standard medication code such as a code from RxNorm, SNOMED CT, IDMP etc. It could also be a national or local formulary code, optionally with translations to other code systems.
- ingredient MedicationIngredient[]? - Identifies a particular constituent of interest in the product. Can be coded with AMT.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- batch MedicationBatch? - Information that only applies to packages (not products).
- language code? - The base language in which the resource is written.
- manufacturer Reference? - Describes the details of the manufacturer of the medication product. This is not intended to represent the distributor of a medication product it is the manufacturer of the actual physical medicine product.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- form CodeableConcept? - Describes the form of the item. Powder; tablets; capsule.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- status MedicationStatus? - A code to indicate if the medication is in active use.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseMedicationAdministration
FHIR AUBaseMedicationAdministration resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEMEDICATIONADMINISTRATION(default RESOURCE_NAME_AUBASEMEDICATIONADMINISTRATION) - The type of the resource describes
- meta BaseAUBaseMedicationAdministrationMeta(default { profile : [PROFILE_BASE_AUBASEMEDICATIONADMINISTRATION] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- dosage MedicationAdministrationDosage? - Describes the medication dosage information details e.g. dose, rate, site, route, etc.
- instantiates uri[]? - A protocol, guideline, orderset, or other definition that was adhered to in whole or in part by this event.
- note Annotation[]? - Extra information about the medication administration that is not conveyed by the other attributes.
- partOf Reference[]? - A larger event of which this particular event is a component or step.
- request Reference? - The original request, instruction or authority to perform the administration.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- subject Reference - The person or animal or group receiving the medication.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- reasonReference Reference[]? - Condition or observation that supports why the medication was administered.
- language code? - The base language in which the resource is written.
- medicationReference Reference - Identifies the medication that was administered. This is either a link to a resource representing the details of the medication or a simple attribute carrying a code that identifies the medication from a known list of medications.
- statusReason CodeableConcept[]? - A code indicating why the administration was not performed.
- context Reference? - The visit, admission, or other contact between patient and health care provider during which the medication administration was performed.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- reasonCode CodeableConcept[]? - A code indicating why the medication was given.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- identifier Identifier[]? - Identifiers associated with this Medication Administration that are defined by business processes and/or used to refer to it when a direct URL reference to the resource itself is not appropriate. They are business identifiers assigned to this resource by the performer or other systems and remain constant as the resource is updated and propagates from server to server.
- performer MedicationAdministrationPerformer[]? - Indicates who or what performed the medication administration and how they were involved.
- effectivePeriod Period - A specific date/time or interval of time during which the administration took place (or did not take place, when the 'notGiven' attribute is true). For many administrations, such as swallowing a tablet the use of dateTime is more appropriate.
- supportingInformation Reference[]? - Additional information (for example, patient height and weight) that supports the administration of the medication.
- medicationCodeableConcept CodeableConcept - Identifies the medication that was administered. This is either a link to a resource representing the details of the medication or a simple attribute carrying a code that identifies the medication from a known list of medications.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- effectiveDateTime dateTime - A specific date/time or interval of time during which the administration took place (or did not take place, when the 'notGiven' attribute is true). For many administrations, such as swallowing a tablet the use of dateTime is more appropriate.
- eventHistory Reference[]? - A summary of the events of interest that have occurred, such as when the administration was verified.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- category CodeableConcept? - Indicates where the medication is expected to be consumed or administered.
- device Reference[]? - The device used in administering the medication to the patient. For example, a particular infusion pump.
- status MedicationAdministrationStatus - Will generally be set to show that the administration has been completed. For some long running administrations such as infusions, it is possible for an administration to be started but not completed or it may be paused while some other process is under way.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseMedicationDispense
FHIR AUBaseMedicationDispense resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEMEDICATIONDISPENSE(default RESOURCE_NAME_AUBASEMEDICATIONDISPENSE) - The type of the resource describes
- meta BaseAUBaseMedicationDispenseMeta(default { profile : [PROFILE_BASE_AUBASEMEDICATIONDISPENSE] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- note Annotation[]? - Extra information about the dispense that could not be conveyed in the other attributes.
- partOf Reference[]? - The procedure that trigger the dispense.
- extension Extension[]? - An Extension
- substitution MedicationDispenseSubstitution? - Indicates whether or not substitution was made as part of the dispense. In some cases, substitution will be expected but does not happen, in other cases substitution is not expected but does happen. This block explains what substitution did or did not happen and why. If nothing is specified, substitution was not done.
- subject Reference? - A link to a resource representing the person or the group to whom the medication will be given.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- destination Reference? - Identification of the facility/location where the medication was shipped to, as part of the dispense event.
- language code? - The base language in which the resource is written.
- statusReasonReference Reference? - Indicates the reason why a dispense was not performed.
- statusReasonCodeableConcept CodeableConcept? - Indicates the reason why a dispense was not performed.
- 'type CodeableConcept? - Indicates the type of dispensing event that is performed. For example, Trial Fill, Completion of Trial, Partial Fill, Emergency Fill, Samples, etc.
- medicationReference Reference - Identifies the medication being administered. This is either a link to a resource representing the details of the medication or a simple attribute carrying a code that identifies the medication from a known list of medications.
- context Reference? - The encounter or episode of care that establishes the context for this event.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- authorizingPrescription Reference[]? - Indicates the medication order that is being dispensed against.
- identifier Identifier[]? - Identifiers associated with this Medication Dispense that are defined by business processes and/or used to refer to it when a direct URL reference to the resource itself is not appropriate. They are business identifiers assigned to this resource by the performer or other systems and remain constant as the resource is updated and propagates from server to server.
- performer MedicationDispensePerformer[]? - Indicates who or what performed the event.
- quantity Quantity? - The amount of medication that has been dispensed. Includes unit of measure.
- detectedIssue Reference[]? - Indicates an actual or potential clinical issue with or between one or more active or proposed clinical actions for a patient; e.g. drug-drug interaction, duplicate therapy, dosage alert etc.
- receiver Reference[]? - Identifies the person who picked up the medication. This will usually be a patient or their caregiver, but some cases exist where it can be a healthcare professional.
- whenPrepared dateTime? - The time when the dispensed product was packaged and reviewed.
- daysSupply Quantity? - The amount of medication expressed as a timing amount.
- supportingInformation Reference[]? - Additional information that supports the medication being dispensed.
- whenHandedOver dateTime? - The time the dispensed product was provided to the patient or their representative.
- medicationCodeableConcept CodeableConcept - Identifies the medication being administered. This is either a link to a resource representing the details of the medication or a simple attribute carrying a code that identifies the medication from a known list of medications.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- dosageInstruction Dosage[]? - Indicates how the medication is/was taken or should be taken by the patient.
- eventHistory Reference[]? - A summary of the events of interest that have occurred, such as when the dispense was verified.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- location Reference? - The principal physical location where the dispense was performed.
- category CodeableConcept? - Indicates the type of medication dispense (for example, where the medication is expected to be consumed or administered (i.e. inpatient or outpatient)).
- status MedicationDispenseStatus - A code specifying the state of the set of dispense events.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseMedicationRequest
FHIR AUBaseMedicationRequest resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEMEDICATIONREQUEST(default RESOURCE_NAME_AUBASEMEDICATIONREQUEST) - The type of the resource describes
- meta BaseAUBaseMedicationRequestMeta(default { profile : [PROFILE_BASE_AUBASEMEDICATIONREQUEST] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- insurance Reference[]? - Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be required for delivering the requested service.
- note Annotation[]? - Extra information about the prescription that could not be conveyed by the other attributes.
- extension Extension[]? - An Extension
- substitution MedicationRequestSubstitution? - Indicates whether or not substitution can or should be part of the dispense. In some cases, substitution must happen, in other cases substitution must not happen. This block explains the prescriber's intent. If nothing is specified substitution may be done.
- courseOfTherapyType CodeableConcept? - The description of the overall patte3rn of the administration of the medication to the patient.
- priorPrescription Reference? - A link to a resource representing an earlier order related order or prescription.
- subject Reference - A link to a resource representing the person or set of individuals to whom the medication will be given.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- reasonReference Reference[]? - Condition or observation that supports why the medication was ordered.
- language code? - The base language in which the resource is written.
- instantiatesUri uri[]? - The URL pointing to an externally maintained protocol, guideline, orderset or other definition that is adhered to in whole or in part by this MedicationRequest.
- medicationReference Reference - Identifies the medication being requested. This is a link to a resource that represents the medication which may be the details of the medication or simply an attribute carrying a code that identifies the medication from a known list of medications.
- reportedReference Reference? - Indicates if this record was captured as a secondary 'reported' record rather than as an original primary source-of-truth record. It may also indicate the source of the report.
- statusReason CodeableConcept? - Captures the reason for the current state of the MedicationRequest.
- dispenseRequest MedicationRequestDispenseRequest? - Indicates the specific details for the dispense or medication supply part of a medication request (also known as a Medication Prescription or Medication Order). Note that this information is not always sent with the order. There may be in some settings (e.g. hospitals) institutional or system support for completing the dispense details in the pharmacy department.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- reasonCode CodeableConcept[]? - The reason or the indication for ordering or not ordering the medication.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- doNotPerform boolean? - If true indicates that the provider is asking for the medication request not to occur.
- basedOn Reference[]? - A plan or request that is fulfilled in whole or in part by this medication request.
- requester Reference? - The individual, organization, or device that initiated the request and has responsibility for its activation.
- identifier Identifier[]? - Identifiers associated with this medication request that are defined by business processes and/or used to refer to it when a direct URL reference to the resource itself is not appropriate. They are business identifiers assigned to this resource by the performer or other systems and remain constant as the resource is updated and propagates from server to server.
- recorder Reference? - The person who entered the order on behalf of another individual for example in the case of a verbal or a telephone order.
- reportedBoolean boolean? - Indicates if this record was captured as a secondary 'reported' record rather than as an original primary source-of-truth record. It may also indicate the source of the report.
- authoredOn dateTime? - The date (and perhaps time) when the prescription was initially written or authored on.
- performer Reference? - The specified desired performer of the medication treatment (e.g. the performer of the medication administration).
- detectedIssue Reference[]? - Indicates an actual or potential clinical issue with or between one or more active or proposed clinical actions for a patient; e.g. Drug-drug interaction, duplicate therapy, dosage alert etc.
- supportingInformation Reference[]? - Include additional information (for example, patient height and weight) that supports the ordering of the medication.
- encounter Reference? - The Encounter during which this [x] was created or to which the creation of this record is tightly associated.
- instantiatesCanonical canonical[]? - The URL pointing to a protocol, guideline, orderset, or other definition that is adhered to in whole or in part by this MedicationRequest.
- medicationCodeableConcept CodeableConcept - Identifies the medication being requested. This is a link to a resource that represents the medication which may be the details of the medication or simply an attribute carrying a code that identifies the medication from a known list of medications.
- priority MedicationRequestPriority? - Indicates how quickly the Medication Request should be addressed with respect to other requests.
- intent MedicationRequestIntent - Whether the request is a proposal, plan, or an original order.
- performerType CodeableConcept? - Indicates the type of performer of the administration of the medication.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- dosageInstruction Dosage[]? - Indicates how the medication is/was taken or should be taken by the patient.
- eventHistory Reference[]? - Links to Provenance records for past versions of this resource or fulfilling request or event resources that identify key state transitions or updates that are likely to be relevant to a user looking at the current version of the resource.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- category CodeableConcept[]? - Indicates the type of medication request (for example, where the medication is expected to be consumed or administered (i.e. inpatient or outpatient)).
- groupIdentifier Identifier? - A shared identifier common to all requests that were authorized more or less simultaneously by a single author, representing the identifier of the requisition or prescription.
- status MedicationRequestStatus - A code specifying the current state of the order. Generally, this will be active or completed state.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseMedicationStatement
FHIR AUBaseMedicationStatement resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEMEDICATIONSTATEMENT(default RESOURCE_NAME_AUBASEMEDICATIONSTATEMENT) - The type of the resource describes
- meta BaseAUBaseMedicationStatementMeta(default { profile : [PROFILE_BASE_AUBASEMEDICATIONSTATEMENT] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- dosage Dosage[]? - Indicates how the medication is/was taken or should be taken by the patient.
- note Annotation[]? - Provides extra information about the medication statement that is not conveyed by the other attributes.
- partOf Reference[]? - A larger event of which this particular event is a component or step.
- extension Extension[]? - An Extension
- subject Reference - The person, animal or group who is/was taking the medication.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- reasonReference Reference[]? - Condition or observation that supports why the medication is being/was taken.
- language code? - The base language in which the resource is written.
- medicationReference Reference - Identifies the medication being administered. This is either a link to a resource representing the details of the medication or a simple attribute carrying a code that identifies the medication from a known list of medications.
- statusReason CodeableConcept[]? - Captures the reason for the current state of the MedicationStatement.
- informationSource Reference? - The person or organization that provided the information about the taking of this medication. Note: Use derivedFrom when a MedicationStatement is derived from other resources, e.g. Claim or MedicationRequest.
- context Reference? - The encounter or episode of care that establishes the context for this MedicationStatement.
- derivedFrom Reference[]? - Allows linking the MedicationStatement to the underlying MedicationRequest, or to other information that supports or is used to derive the MedicationStatement.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- reasonCode CodeableConcept[]? - A reason for why the medication is being/was taken.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- dateAsserted dateTime? - The date when the medication statement was asserted by the information source.
- basedOn Reference[]? - A plan, proposal or order that is fulfilled in whole or in part by this event.
- identifier Identifier[]? - Identifiers associated with this Medication Statement that are defined by business processes and/or used to refer to it when a direct URL reference to the resource itself is not appropriate. They are business identifiers assigned to this resource by the performer or other systems and remain constant as the resource is updated and propagates from server to server.
- effectivePeriod Period? - The interval of time during which it is being asserted that the patient is/was/will be taking the medication (or was not taking, when the MedicationStatement.taken element is No).
- medicationCodeableConcept CodeableConcept - Identifies the medication being administered. This is either a link to a resource representing the details of the medication or a simple attribute carrying a code that identifies the medication from a known list of medications.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- effectiveDateTime dateTime? - The interval of time during which it is being asserted that the patient is/was/will be taking the medication (or was not taking, when the MedicationStatement.taken element is No).
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- category CodeableConcept? - Indicates where the medication is expected to be consumed or administered.
- status MedicationStatementStatus - A code representing the patient or other source's judgment about the state of the medication used that this statement is about. Generally, this will be active or completed.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseOrganisation
FHIR AUBaseOrganisation resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEORGANISATION(default RESOURCE_NAME_AUBASEORGANISATION) - The type of the resource describes
- meta BaseAUBaseOrganisationMeta(default { profile : [PROFILE_BASE_AUBASEORGANISATION] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- identifier Identifier[]? - Identifier for the organization that is used to identify the organization across multiple disparate systems.
- partOf Reference? - The organization of which this organization forms a part.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- address Address[]? - An address expressed using postal conventions (as opposed to GPS or other location definition formats). This data type may be used to convey addresses for use in delivering mail as well as for visiting locations which might not be valid for mail delivery. There are a variety of postal address formats defined around the world.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- active boolean? - Whether the organization's record is still in active use.
- language code? - The base language in which the resource is written.
- 'type CodeableConcept[]? - The kind(s) of organization that this is.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- endpoint Reference[]? - Technical endpoints providing access to services operated for the organization.
- contact OrganizationContact[]? - Contact for the organization for a certain purpose.
- name string? - A name associated with the organization.
- alias string[]? - A list of alternate names that the organization is known as, or was known as in the past.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- telecom ContactPoint[]? - A contact detail for the organization.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- never... - Rest field
health.fhir.r4.aubase410: AUBasePathologyReport
FHIR AUBasePathologyReport resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEPATHOLOGYREPORT(default RESOURCE_NAME_AUBASEPATHOLOGYREPORT) - The type of the resource describes
- meta BaseAUBasePathologyReportMeta(default { profile : [PROFILE_BASE_AUBASEPATHOLOGYREPORT] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- code CodeableConcept - A code or name that describes this diagnostic report.
- subject Reference - The subject of the report. Usually, but not always, this is a patient. However, diagnostic services also perform analyses on specimens collected from a variety of other sources.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- presentedForm Attachment[]? - Rich text representation of the entire result as issued by the diagnostic service. Multiple formats are allowed but they SHALL be semantically equivalent.
- language code? - The base language in which the resource is written.
- media DiagnosticReportMedia[]? - A list of key images associated with this report. The images are generally created during the diagnostic process, and may be directly of the patient, or of treated specimens (i.e. slides of interest).
- conclusion string? - Concise and clinically contextualized summary conclusion (interpretation/impression) of the diagnostic report.
- result Reference[]? - Observations that are part of this diagnostic report.
- specimen Reference[]? - Details about the specimens on which this diagnostic report is based.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- issued instant? - The date and time that this version of the report was made available to providers, typically after the report was reviewed and verified.
- basedOn Reference[]? - Details concerning a service requested.
- identifier Identifier[]? - Identifiers assigned to this report by the performer or other systems.
- performer Reference[]? - The diagnostic service that is responsible for issuing the report.
- effectivePeriod Period - The time or time-period the observed values are related to. When the subject of the report is a patient, this is usually either the time of the procedure or of specimen collection(s), but very often the source of the date/time is not known, only the date/time itself.
- resultsInterpreter Reference[]? - The practitioner or organization that is responsible for the report's conclusions and interpretations.
- conclusionCode CodeableConcept[]? - One or more codes that represent the summary conclusion (interpretation/impression) of the diagnostic report.
- encounter Reference? - The healthcare event (e.g. a patient and healthcare provider interaction) which this DiagnosticReport is about.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- effectiveDateTime dateTime - The time or time-period the observed values are related to. When the subject of the report is a patient, this is usually either the time of the procedure or of specimen collection(s), but very often the source of the date/time is not known, only the date/time itself.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- category CodeableConcept[] - A code that classifies the clinical discipline, department or diagnostic service that created the report (e.g. cardiology, biochemistry, hematology, MRI). This is used for searching, sorting and display purposes.
- imagingStudy Reference[]? - One or more links to full details of any imaging performed during the diagnostic investigation. Typically, this is imaging performed by DICOM enabled modalities, but this is not required. A fully enabled PACS viewer can use this information to provide views of the source images.
- status DiagnosticReportStatus - The status of the diagnostic report.
- never... - Rest field
health.fhir.r4.aubase410: AUBasePathologyResult
FHIR AUBasePathologyResult resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEPATHOLOGYRESULT(default RESOURCE_NAME_AUBASEPATHOLOGYRESULT) - The type of the resource describes
- meta BaseAUBasePathologyResultMeta(default { profile : [PROFILE_BASE_AUBASEPATHOLOGYRESULT] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- valueBoolean boolean? - The information determined as a result of making the observation, if the information has a simple value.
- dataAbsentReason CodeableConcept? - Provides a reason why the expected value in the element Observation.value[x] is missing.
- note Annotation[]? - Comments about the observation or the results.
- partOf Reference[]? - A larger event of which this particular Observation is a component or step. For example, an observation as part of a procedure.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- valueTime time? - The information determined as a result of making the observation, if the information has a simple value.
- code CodeableConcept - Describes what was observed. Sometimes this is called the observation 'name'.
- subject Reference - The patient, or group of patients, location, or device this observation is about and into whose record the observation is placed. If the actual focus of the observation is different from the subject (or a sample of, part, or region of the subject), the
focus
element or thecode
itself specifies the actual focus of the observation.
- valueRange Range? - The information determined as a result of making the observation, if the information has a simple value.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- focus Reference[]? - The actual focus of an observation when it is not the patient of record representing something or someone associated with the patient such as a spouse, parent, fetus, or donor. For example, fetus observations in a mother's record. The focus of an observation could also be an existing condition, an intervention, the subject's diet, another observation of the subject, or a body structure such as tumor or implanted device. An example use case would be using the Observation resource to capture whether the mother is trained to change her child's tracheostomy tube. In this example, the child is the patient of record and the mother is the focus.
- language code? - The base language in which the resource is written.
- valueCodeableConcept CodeableConcept? - The information determined as a result of making the observation, if the information has a simple value.
- valueRatio Ratio? - The information determined as a result of making the observation, if the information has a simple value.
- specimen Reference? - The specimen that was used when this observation was made.
- derivedFrom Reference[]? - The target resource that represents a measurement from which this observation value is derived. For example, a calculated anion gap or a fetal measurement based on an ultrasound image.
- valueDateTime dateTime? - The information determined as a result of making the observation, if the information has a simple value.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- issued instant? - The date and time this version of the observation was made available to providers, typically after the results have been reviewed and verified.
- valueInteger integer? - The information determined as a result of making the observation, if the information has a simple value.
- basedOn Reference[]? - A plan, proposal or order that is fulfilled in whole or in part by this event. For example, a MedicationRequest may require a patient to have laboratory test performed before it is dispensed.
- valueQuantity Quantity? - The information determined as a result of making the observation, if the information has a simple value.
- identifier Identifier[]? - A unique identifier assigned to this observation.
- performer Reference[]? - Who was responsible for asserting the observed value as 'true'.
- effectivePeriod Period - The time or time-period the observed value is asserted as being true. For biological subjects - e.g. human patients - this is usually called the 'physiologically relevant time'. This is usually either the time of the procedure or of specimen collection, but very often the source of the date/time is not known, only the date/time itself.
- method CodeableConcept? - Indicates the mechanism used to perform the observation.
- hasMember Reference[]? - This observation is a group observation (e.g. a battery, a panel of tests, a set of vital sign measurements) that includes the target as a member of the group.
- encounter Reference? - The healthcare event (e.g. a patient and healthcare provider interaction) during which this observation is made.
- bodySite CodeableConcept? - Indicates the site on the subject's body where the observation was made (i.e. the target site).
- component ObservationComponentOne[]? - Some observations have multiple component observations. These component observations are expressed as separate code value pairs that share the same attributes. Examples include systolic and diastolic component observations for blood pressure measurement and multiple component observations for genetics observations.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- referenceRange ObservationReferenceRangeOne[]? - Guidance on how to interpret the value by comparison to a normal or recommended range. Multiple reference ranges are interpreted as an 'OR'. In other words, to represent two distinct target populations, two
referenceRange
elements would be used.
- valueString string? - The information determined as a result of making the observation, if the information has a simple value.
- effectiveDateTime dateTime - The time or time-period the observed value is asserted as being true. For biological subjects - e.g. human patients - this is usually called the 'physiologically relevant time'. This is usually either the time of the procedure or of specimen collection, but very often the source of the date/time is not known, only the date/time itself.
- interpretation CodeableConcept[]? - A categorical assessment of an observation value. For example, high, low, normal.
- valueSampledData SampledData? - The information determined as a result of making the observation, if the information has a simple value.
- valuePeriod Period? - The information determined as a result of making the observation, if the information has a simple value.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- category CodeableConcept[] - A code that classifies the general type of observation being made.
- device Reference? - The device used to generate the observation data.
- status ObservationStatusOne - The status of the result value.
- never... - Rest field
health.fhir.r4.aubase410: AUBasePatient
FHIR AUBasePatient resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEPATIENT(default RESOURCE_NAME_AUBASEPATIENT) - The type of the resource describes
- meta BaseAUBasePatientMeta(default { profile : [PROFILE_BASE_AUBASEPATIENT] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- extension Extension[]? - An Extension
- gender PatientGender? - Administrative Gender - the gender that the patient is considered to have for administration and record keeping purposes.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- link PatientLink[]? - Link to a Patient or RelatedPerson resource that concerns the same actual person.
- language code? - The base language in which the resource is written.
- contact PatientContact[]? - A contact party (e.g. guardian, partner, friend) for the patient.
- deceasedDateTime dateTime? - Indicates if the individual is deceased or not. Deceased date accuracy indicator is optional.
- generalPractitioner Reference[]? - Patient's nominated care provider.
- telecom ContactPoint[]? - A contact detail (e.g. a telephone number or an email address) by which the individual may be contacted.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- communication PatientCommunication[]? - A language which may be used to communicate with the patient about his or her health.
- identifier Identifier[]? - An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.
- address Address[]? - An Australian address expressed using postal conventions (as opposed to GPS or other location definition formats).
- multipleBirthBoolean boolean? - Indicates whether the patient is part of a multiple (boolean) or indicates the actual birth order (integer).
- active boolean? - Whether this patient record is in active use. Many systems use this property to mark as non-current patients, such as those that have not been seen for a period of time based on an organization's business rules. It is often used to filter patient lists to exclude inactive patients Deceased patients may also be marked as inactive for the same reasons, but may be active for some time after death.
- photo Attachment[]? - Image of the patient.
- birthDate date? - The date of birth for the individual.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- deceasedBoolean boolean? - Indicates if the individual is deceased or not. Deceased date accuracy indicator is optional.
- managingOrganization Reference? - Organization that is the custodian of the patient record.
- multipleBirthInteger integer? - Indicates whether the patient is part of a multiple (boolean) or indicates the actual birth order (integer).
- name HumanName[]? - A name associated with the individual.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- maritalStatus CodeableConcept? - This field contains a patient's most recent marital (civil) status.
- never... - Rest field
health.fhir.r4.aubase410: AUBasePractitioner
FHIR AUBasePractitioner resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEPRACTITIONER(default RESOURCE_NAME_AUBASEPRACTITIONER) - The type of the resource describes
- meta BaseAUBasePractitionerMeta(default { profile : [PROFILE_BASE_AUBASEPRACTITIONER] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- identifier Identifier[]? - An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- address Address[]? - An address expressed using postal conventions (as opposed to GPS or other location definition formats). This data type may be used to convey addresses for use in delivering mail as well as for visiting locations which might not be valid for mail delivery. There are a variety of postal address formats defined around the world.
- gender PractitionerGender? - Administrative Gender - the gender that the person is considered to have for administration and record keeping purposes.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- active boolean? - Whether this practitioner's record is in active use.
- photo Attachment[]? - Image of the person.
- language code? - The base language in which the resource is written.
- birthDate date? - The date of birth for the practitioner.
- qualification PractitionerQualification[]? - The official certifications, training, and licenses that authorize or otherwise pertain to the provision of care by the practitioner. For example, a medical license issued by a medical board authorizing the practitioner to practice medicine within a certian locality.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- name HumanName[]? - The name(s) associated with the practitioner.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- telecom ContactPoint[]? - A contact detail for the practitioner, e.g. a telephone number or an email address.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- communication CodeableConcept[]? - A language the practitioner can use in patient communication.
- never... - Rest field
health.fhir.r4.aubase410: AUBasePractitionerRole
FHIR AUBasePractitionerRole resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEPRACTITIONERROLE(default RESOURCE_NAME_AUBASEPRACTITIONERROLE) - The type of the resource describes
- meta BaseAUBasePractitionerRoleMeta(default { profile : [PROFILE_BASE_AUBASEPRACTITIONERROLE] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- identifier Identifier[]? - Business Identifiers that are specific to a role/location.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- period Period? - The period during which the person is authorized to act as a practitioner in these role(s) for the organization.
- specialty CodeableConcept[]? - Specific specialty of the practitioner.
- code CodeableConcept[]? - Roles which this practitioner is authorized to perform for the organization.
- practitioner Reference? - Practitioner that is able to provide the defined services for the organization.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- active boolean? - Whether this practitioner role record is in active use.
- language code? - The base language in which the resource is written.
- notAvailable PractitionerRoleNotAvailable[]? - The practitioner is not available or performing this role during this period of time due to the provided reason.
- availableTime PractitionerRoleAvailableTime[]? - A collection of times the practitioner is available or performing this role at the location and/or healthcareservice.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- endpoint Reference[]? - Technical endpoints providing access to services operated for the practitioner with this role.
- healthcareService Reference[]? - The list of healthcare services that this worker provides for this role's Organization/Location(s).
- organization Reference? - The organization where the Practitioner performs the roles associated.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- location Reference[]? - The location(s) at which this practitioner provides care.
- telecom ContactPoint[]? - Contact details that are specific to the role/location/service.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- availabilityExceptions string? - A description of site availability exceptions, e.g. public holiday availability. Succinctly describing all possible exceptions to normal site availability as details in the available Times and not available Times.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseProcedure
FHIR AUBaseProcedure resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASEPROCEDURE(default RESOURCE_NAME_AUBASEPROCEDURE) - The type of the resource describes
- meta BaseAUBaseProcedureMeta(default { profile : [PROFILE_BASE_AUBASEPROCEDURE] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- note Annotation[]? - Any other notes and comments about the procedure.
- partOf Reference[]? - A larger event of which this particular procedure is a component or step.
- complication CodeableConcept[]? - Any complications that occurred during the procedure, or in the immediate post-performance period. These are generally tracked separately from the notes, which will typically describe the procedure itself rather than any 'post procedure' issues.
- extension Extension[]? - An Extension
- code CodeableConcept? - The specific procedure that is performed. Use text if the exact nature of the procedure cannot be coded (e.g. 'Laparoscopic Appendectomy').
- subject Reference - The person, animal or group on which the procedure was performed.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- reasonReference Reference[]? - The justification of why the procedure was performed.
- language code? - The base language in which the resource is written.
- performedRange Range? - Estimated or actual date, date-time, period, or age when the procedure was performed. Allows a period to support complex procedures that span more than one date, and also allows for the length of the procedure to be captured.
- performedAge Age? - Estimated or actual date, date-time, period, or age when the procedure was performed. Allows a period to support complex procedures that span more than one date, and also allows for the length of the procedure to be captured.
- instantiatesUri uri[]? - The URL pointing to an externally maintained protocol, guideline, order set or other definition that is adhered to in whole or in part by this Procedure.
- performedPeriod Period? - Estimated or actual date, date-time, period, or age when the procedure was performed. Allows a period to support complex procedures that span more than one date, and also allows for the length of the procedure to be captured.
- performedString string? - Estimated or actual date, date-time, period, or age when the procedure was performed. Allows a period to support complex procedures that span more than one date, and also allows for the length of the procedure to be captured.
- followUp CodeableConcept[]? - If the procedure required specific follow up - e.g. removal of sutures. The follow up may be represented as a simple note or could potentially be more complex, in which case the CarePlan resource can be used.
- statusReason CodeableConcept? - Captures the reason for the current state of the procedure.
- usedCode CodeableConcept[]? - Identifies coded items that were used as part of the procedure.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- reasonCode CodeableConcept[]? - The coded reason why the procedure was performed. This may be a coded entity of some type, or may simply be present as text.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- performedDateTime dateTime? - Estimated or actual date, date-time, period, or age when the procedure was performed. Allows a period to support complex procedures that span more than one date, and also allows for the length of the procedure to be captured.
- basedOn Reference[]? - A reference to a resource that contains details of the request for this procedure.
- outcome CodeableConcept? - The outcome of the procedure - did it resolve the reasons for the procedure being performed?
- identifier Identifier[]? - Business identifiers assigned to this procedure by the performer or other systems which remain constant as the resource is updated and is propagated from server to server.
- recorder Reference? - Individual who recorded the record and takes responsibility for its content.
- complicationDetail Reference[]? - Any complications that occurred during the procedure, or in the immediate post-performance period.
- performer ProcedurePerformer[]? - Limited to 'real' people rather than equipment.
- usedReference Reference[]? - Identifies medications, devices and any other substance used as part of the procedure.
- focalDevice ProcedureFocalDevice[]? - A device that is implanted, removed or otherwise manipulated (calibration, battery replacement, fitting a prosthesis, attaching a wound-vac, etc.) as a focal portion of the Procedure.
- encounter Reference? - The Encounter during which this Procedure was created or performed or to which the creation of this record is tightly associated.
- instantiatesCanonical canonical[]? - The URL pointing to a FHIR-defined protocol, guideline, order set or other definition that is adhered to in whole or in part by this Procedure.
- bodySite CodeableConcept[]? - Detailed and structured anatomical location information. Multiple locations are allowed - e.g. multiple punch biopsies of a lesion.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- asserter Reference? - Individual who is making the procedure statement.
- report Reference[]? - This could be a histology result, pathology report, surgical report, etc.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- location Reference? - The location where the procedure actually happened. E.g. a newborn at home, a tracheostomy at a restaurant.
- category CodeableConcept? - A code that classifies the procedure for searching, sorting and display purposes (e.g. 'Surgical Procedure').
- status ProcedureStatus - A code specifying the state of the procedure. Generally, this will be the in-progress or completed state.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseRelatedPerson
FHIR AUBaseRelatedPerson resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASERELATEDPERSON(default RESOURCE_NAME_AUBASERELATEDPERSON) - The type of the resource describes
- meta BaseAUBaseRelatedPersonMeta(default { profile : [PROFILE_BASE_AUBASERELATEDPERSON] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- identifier Identifier[]? - Identifier for a person within a particular scope.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- period Period? - The period of time during which this relationship is or was active. If there are no dates defined, then the interval is unknown.
- address Address[]? - Address where the related person can be contacted or visited.
- gender RelatedPersonGender? - Administrative Gender - the gender that the person is considered to have for administration and record keeping purposes.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- active boolean? - Whether this related person record is in active use.
- photo Attachment[]? - Image of the person.
- language code? - The base language in which the resource is written.
- birthDate date? - The date on which the related person was born.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- patient Reference - The patient this person is related to.
- name HumanName[]? - A name associated with the person.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- telecom ContactPoint[]? - A contact detail for the person, e.g. a telephone number or an email address.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- communication RelatedPersonCommunication[]? - A language which may be used to communicate with about the patient's health.
- relationship CodeableConcept[]? - The nature of the relationship between a patient and the related person.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseSpecimen
FHIR AUBaseSpecimen resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASESPECIMEN(default RESOURCE_NAME_AUBASESPECIMEN) - The type of the resource describes
- meta BaseAUBaseSpecimenMeta(default { profile : [PROFILE_BASE_AUBASESPECIMEN] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- container SpecimenContainer[]? - The container holding the specimen. The recursive nature of containers; i.e. blood in tube in tray in rack is not addressed here.
- accessionIdentifier Identifier? - The identifier assigned by the lab when accessioning specimen(s). This is not necessarily the same as the specimen identifier, depending on local lab procedures.
- identifier Identifier[]? - Id for specimen.
- note Annotation[]? - To communicate any details or issues about the specimen or during the specimen collection. (for example: broken vial, sent with patient, frozen).
- parent Reference[]? - Reference to the parent (source) specimen which is used when the specimen was either derived from or a component of another specimen.
- request Reference[]? - Details concerning a service request that required a specimen to be collected.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- subject Reference? - Where the specimen came from. This may be from patient(s), from a location (e.g., the source of an environmental sample), or a sampling of a substance or a device.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- language code? - The base language in which the resource is written.
- collection SpecimenCollection? - Details concerning the specimen collection.
- 'type CodeableConcept? - The kind of material that forms the specimen.
- condition CodeableConcept[]? - A mode or state of being that describes the nature of the specimen.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- receivedTime dateTime? - Time when specimen was received for processing or testing.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- processing SpecimenProcessing[]? - Details concerning processing and processing steps for the specimen.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- status SpecimenStatus? - The availability of the specimen.
- never... - Rest field
health.fhir.r4.aubase410: AUBaseSubstance
FHIR AUBaseSubstance resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUBASESUBSTANCE(default RESOURCE_NAME_AUBASESUBSTANCE) - The type of the resource describes
- meta BaseAUBaseSubstanceMeta(default { profile : [PROFILE_BASE_AUBASESUBSTANCE] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- identifier Identifier[]? - Unique identifier for the substance.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- code CodeableConcept - A code (or set of codes) that identify this substance.
- ingredient SubstanceIngredient[]? - A substance can be composed of other substances.
- instance SubstanceInstance[]? - Substance may be used to describe a kind of substance, or a specific package/container of the substance: an instance.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- description string? - A description of the substance - its appearance, handling requirements, and other usage notes.
- language code? - The base language in which the resource is written.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- category CodeableConcept[]? - A code that classifies the general type of substance. This is used for searching, sorting and display purposes.
- status SubstanceStatus? - A code to indicate if the substance is actively used.
- never... - Rest field
health.fhir.r4.aubase410: AUHealthProgramParticipationSummary
FHIR AUHealthProgramParticipationSummary resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUHEALTHPROGRAMPARTICIPATIONSUMMARY(default RESOURCE_NAME_AUHEALTHPROGRAMPARTICIPATIONSUMMARY) - The type of the resource describes
- meta BaseAUHealthProgramParticipationSummaryMeta(default { profile : [PROFILE_BASE_AUHEALTHPROGRAMPARTICIPATIONSUMMARY] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- valueBoolean boolean? - The information determined as a result of making the observation, if the information has a simple value.
- dataAbsentReason CodeableConcept? - Provides a reason why the expected value in the element Observation.value[x] is missing.
- note Annotation[]? - Comments about the observation or the results.
- partOf Reference[]? - A larger event of which this particular Observation is a component or step. For example, an observation as part of a procedure.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- valueTime time? - The information determined as a result of making the observation, if the information has a simple value.
- code CodeableConcept - Describes the nature of the observation including specifying the type of program for which participation information for an individual is observed, e.g. national breast cancer screening, or a substance use therapy program such as a twelve step alcohol program.
- effective dateTime - Date, and optionally time, this program participation information is asserted as 'true'.
- subject Reference - The patient, or group of patients, location, or device this observation is about and into whose record the observation is placed. If the actual focus of the observation is different from the subject (or a sample of, part, or region of the subject), the
focus
element or thecode
itself specifies the actual focus of the observation.
- valueRange Range? - The information determined as a result of making the observation, if the information has a simple value.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- focus Reference[]? - The actual focus of an observation when it is not the patient of record representing something or someone associated with the patient such as a spouse, parent, fetus, or donor. For example, fetus observations in a mother's record. The focus of an observation could also be an existing condition, an intervention, the subject's diet, another observation of the subject, or a body structure such as tumor or implanted device. An example use case would be using the Observation resource to capture whether the mother is trained to change her child's tracheostomy tube. In this example, the child is the patient of record and the mother is the focus.
- language code? - The base language in which the resource is written.
- valueCodeableConcept CodeableConcept? - The information determined as a result of making the observation, if the information has a simple value.
- valueRatio Ratio? - The information determined as a result of making the observation, if the information has a simple value.
- specimen Reference? - The specimen that was used when this observation was made.
- derivedFrom Reference[]? - The target resource that represents a measurement from which this observation value is derived. For example, a calculated anion gap or a fetal measurement based on an ultrasound image.
- valueDateTime dateTime? - The information determined as a result of making the observation, if the information has a simple value.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- issued instant? - The date and time this version of the observation was made available to providers, typically after the results have been reviewed and verified.
- valueInteger integer? - The information determined as a result of making the observation, if the information has a simple value.
- basedOn Reference[]? - A plan, proposal or order that is fulfilled in whole or in part by this event. For example, a MedicationRequest may require a patient to have laboratory test performed before it is dispensed.
- valueQuantity Quantity? - The information determined as a result of making the observation, if the information has a simple value.
- identifier Identifier[]? - A unique identifier assigned to this observation.
- performer Reference[]? - Who was responsible for asserting the observed value as 'true'.
- method CodeableConcept? - Indicates the mechanism used to perform the observation.
- hasMember Reference[]? - This observation is a group observation (e.g. a battery, a panel of tests, a set of vital sign measurements) that includes the target as a member of the group.
- encounter Reference? - The healthcare event (e.g. a patient and healthcare provider interaction) during which this observation is made.
- bodySite CodeableConcept? - Indicates the site on the subject's body where the observation was made (i.e. the target site).
- component ObservationComponentTwo[] - Some observations have multiple component observations. These component observations are expressed as separate code value pairs that share the same attributes. Examples include systolic and diastolic component observations for blood pressure measurement and multiple component observations for genetics observations.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- referenceRange ObservationReferenceRangeTwo[]? - Guidance on how to interpret the value by comparison to a normal or recommended range. Multiple reference ranges are interpreted as an 'OR'. In other words, to represent two distinct target populations, two
referenceRange
elements would be used.
- valueString string? - The information determined as a result of making the observation, if the information has a simple value.
- interpretation CodeableConcept[]? - A categorical assessment of an observation value. For example, high, low, normal.
- valueSampledData SampledData? - The information determined as a result of making the observation, if the information has a simple value.
- valuePeriod Period? - The information determined as a result of making the observation, if the information has a simple value.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- category CodeableConcept[] - A code that classifies the general type of observation being made.
- device Reference? - The device used to generate the observation data.
- status ObservationStatusTwo - The status of the result value.
- never... - Rest field
health.fhir.r4.aubase410: AUMedicineList
FHIR AUMedicineList resource record.
Fields
- Fields Included from *DomainResource
- resourceType RESOURCE_NAME_AUMEDICINELIST(default RESOURCE_NAME_AUMEDICINELIST) - The type of the resource describes
- meta BaseAUMedicineListMeta(default { profile : [PROFILE_BASE_AUMEDICINELIST] }) - The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
- date dateTime? - The date that the list was prepared.
- identifier Identifier[]? - Identifier for the List assigned for business purposes outside the context of FHIR.
- note Annotation[]? - Comments that apply to the overall list.
- extension Extension[]? - An Extension
- code CodeableConcept? - This code defines the purpose of the list - why it was created.
- emptyReason CodeableConcept? - If the list is empty, why the list is empty.
- subject Reference? - The common subject (or patient) of the resources that are in the list if there is one.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- language code? - The base language in which the resource is written.
- encounter Reference? - The encounter that is the context in which this list was created.
- 'source Reference? - The entity responsible for deciding what the contents of the list were. Where the list was created by a human, this is the same as the author of the list.
- title string? - A label for the list assigned by the author.
- mode ListMode - How this list was prepared - whether it is a working list that is suitable for being maintained on an ongoing basis, or if it represents a snapshot of a list of items from another source, or whether it is a prepared list where items may be marked as added, modified or deleted.
- entry ListEntry[]? - Entries in this list.
- contained Resource[]? - These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.
- orderedBy CodeableConcept? - What order applies to the items in the list.
- implicitRules uri? - A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
- id string? - The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
- text Narrative? - A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.
- status ListStatus - Indicates the current state of this list.
- never... - Rest field
health.fhir.r4.aubase410: BaseAUAssertionNoRelevantFindingMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-norelevantfinding"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseAllergyIntoleranceMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-allergyintolerance"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseBodyStructureMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-bodystructure"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseCompositionMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-composition"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseConditionMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-condition"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseDiagnosticImagingReportMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-imagingreport"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseDiagnosticImagingResultMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-imagingresult"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseDiagnosticReportMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-diagnosticreport"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseDiagnosticRequestMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-diagnosticrequest"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseDiagnosticResultMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-diagnosticresult"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseEncounterMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-encounter"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseHealthcareServiceMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-healthcareservice"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseImmunisationMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-immunization"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseLocationMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-location"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseMedicationAdministrationMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-medicationadministration"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseMedicationDispenseMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-medicationdispense"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseMedicationMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-medication"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseMedicationRequestMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-medicationrequest"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseMedicationStatementMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-medicationstatement"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseOrganisationMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-organization"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBasePathologyReportMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-pathologyreport"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBasePathologyResultMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-pathologyresult"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBasePatientMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-patient"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBasePractitionerMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-practitioner"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBasePractitionerRoleMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-practitionerrole"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseProcedureMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-procedure"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseRelatedPersonMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-relatedperson"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseSpecimenMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-specimen"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUBaseSubstanceMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-substance"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUHealthProgramParticipationSummaryMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-healthprogramparticipation"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: BaseAUMedicineListMeta
Fields
- Fields Included from *Meta
- id string? -
- extension Extension[]? -
- versionId id? -
- lastUpdated instant? -
- 'source uri? -
- profile canonical[](default ["http://hl7.org.au/fhir/StructureDefinition/au-medlist"]) -
- security Coding[]? -
- tag Coding[]? -
health.fhir.r4.aubase410: CompositionAttester
FHIR CompositionAttester datatype record.
Fields
- mode CompositionAttesterMode - The type of attestation the authenticator offers.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- time dateTime? - When the composition was attested by the party.
- party Reference? - Who attested the composition in the specified way.
health.fhir.r4.aubase410: CompositionEvent
FHIR CompositionEvent datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- period Period? - The period of time covered by the documentation. There is no assertion that the documentation is a complete representation for this period, only that it documents events during this time.
- code CodeableConcept[]? - This list of codes represents the main clinical acts, such as a colonoscopy or an appendectomy, being documented. In some cases, the event is inherent in the typeCode, such as a 'History and Physical Report' in which the procedure being documented is necessarily a 'History and Physical' act.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- detail Reference[]? - The description and/or reference of the event(s) being documented. For example, this could be used to document such a colonoscopy or an appendectomy.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: CompositionRelatesTo
FHIR CompositionRelatesTo datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- targetIdentifier Identifier - The target composition/document of this relationship.
- code CompositionRelatesToCode - The type of relationship that this composition has with anther composition or document.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- targetReference Reference - The target composition/document of this relationship.
health.fhir.r4.aubase410: CompositionSection
FHIR CompositionSection datatype record.
Fields
- mode CompositionSectionMode? - How the entry list was prepared - whether it is a working list that is suitable for being maintained on an ongoing basis, or if it represents a snapshot of a list of items from another source, or whether it is a prepared list where items may be marked as added, modified or deleted.
- entry Reference[]? - A reference to the actual resource from which the narrative in the section is derived.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- code CodeableConcept? - A code identifying the kind of content contained within the section. This must be consistent with the section title.
- emptyReason CodeableConcept? - If the section is empty, why the list is empty. An empty section typically has some text explaining the empty reason.
- orderedBy CodeableConcept? - Specifies the order applied to the items in the section entries.
- author Reference[]? - Identifies who is responsible for the information in this section, not necessarily who typed it in.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- focus Reference? - The actual focus of the section when it is not the subject of the composition, but instead represents something or someone associated with the subject such as (for a patient subject) a spouse, parent, fetus, or donor. If not focus is specified, the focus is assumed to be focus of the parent section, or, for a section in the Composition itself, the subject of the composition. Sections with a focus SHALL only include resources where the logical subject (patient, subject, focus, etc.) matches the section focus, or the resources have no logical subject (few resources).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- text Narrative? - A human-readable narrative that contains the attested content of the section, used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it 'clinically safe' for a human to just read the narrative.
- title string? - The label for this particular section. This will be part of the rendered content for the document, and is often used to build a table of contents.
health.fhir.r4.aubase410: ConditionEvidence
FHIR ConditionEvidence datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- code CodeableConcept[]? - A manifestation or symptom that led to the recording of this condition.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- detail Reference[]? - Links to other relevant information, including pathology reports.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: ConditionStage
FHIR ConditionStage datatype record.
Fields
- summary CodeableConcept? - A simple summary of the stage such as 'Stage 3'. The determination of the stage is disease-specific.
- assessment Reference[]? - Reference to a formal record of the evidence on which the staging assessment is based.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- 'type CodeableConcept? - The kind of staging, such as pathological or clinical staging.
health.fhir.r4.aubase410: DiagnosticReportMedia
FHIR DiagnosticReportMedia datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- link Reference - Reference to the image source.
- comment string? - A comment about the image. Typically, this is used to provide an explanation for why the image is included, or to draw the viewer's attention to important features.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: DiagnosticReportMediaOne
FHIR DiagnosticReportMediaOne datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- link Reference - Reference to the image source.
- comment string? - A comment about the image. Typically, this is used to provide an explanation for why the image is included, or to draw the viewer's attention to important features.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: DiagnosticReportMediaTwo
FHIR DiagnosticReportMediaTwo datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- link Reference - Reference to the image source.
- comment string? - A comment about the image. Typically, this is used to provide an explanation for why the image is included, or to draw the viewer's attention to important features.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: EncounterClassHistory
FHIR EncounterClassHistory datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- period Period - The time that the episode was in the specified class.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- 'class Coding - inpatient | outpatient | ambulatory | emergency +.
health.fhir.r4.aubase410: EncounterDiagnosis
FHIR EncounterDiagnosis datatype record.
Fields
- condition Reference - Reason the encounter takes place, as specified using information from another resource. For admissions, this is the admission diagnosis. The indication will typically be a Condition (with other resources referenced in the evidence.detail), or a Procedure.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- use CodeableConcept? - Role that this diagnosis has within the encounter (e.g. admission, billing, discharge …).
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- rank positiveInt? - Ranking of the diagnosis (for each role type).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: EncounterHospitalization
FHIR EncounterHospitalization datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- specialArrangement CodeableConcept[]? - Any special requests that have been made for this hospitalization encounter, such as the provision of specific equipment or other things.
- reAdmission CodeableConcept? - Whether this hospitalization is a readmission and why if known.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- origin Reference? - The location/organization from which the patient came before admission.
- destination Reference? - Location/organization to which the patient is discharged.
- dietPreference CodeableConcept[]? - Diet preferences reported by the patient.
- preAdmissionIdentifier Identifier? - Pre-admission identifier.
- specialCourtesy CodeableConcept[]? - Special courtesies (VIP, board member).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- dischargeDisposition CodeableConcept? - Category or kind of location after discharge.
- admitSource CodeableConcept? - From where patient was admitted (physician referral, transfer).
health.fhir.r4.aubase410: EncounterLocation
FHIR EncounterLocation datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- period Period? - Time period during which the patient was present at the location.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- physicalType CodeableConcept? - This will be used to specify the required levels (bed/ward/room/etc.) desired to be recorded to simplify either messaging or query.
- location Reference - The location where the encounter takes place.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- status EncounterLocationStatus? - The status of the participants' presence at the specified location during the period specified. If the participant is no longer at the location, then the period will have an end date/time.
health.fhir.r4.aubase410: EncounterParticipant
FHIR EncounterParticipant datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- period Period? - The period of time that the specified participant participated in the encounter. These can overlap or be sub-sets of the overall encounter's period.
- individual Reference? - Persons involved in the encounter other than the patient.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- 'type CodeableConcept[]? - Role of participant in encounter.
health.fhir.r4.aubase410: EncounterStatusHistory
FHIR EncounterStatusHistory datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- period Period - The time that the episode was in the specified status.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- status EncounterStatusHistoryStatus - planned | arrived | triaged | in-progress | onleave | finished | cancelled +.
health.fhir.r4.aubase410: HealthcareServiceAvailableTime
FHIR HealthcareServiceAvailableTime datatype record.
Fields
- allDay boolean? - Is this always available? (hence times are irrelevant) e.g. 24 hour service.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- availableEndTime time? - The closing time of day. Note: If the AllDay flag is set, then this time is ignored.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- daysOfWeek HealthcareServiceAvailableTimeDaysOfWeek[]? - Indicates which days of the week are available between the start and end Times.
- availableStartTime time? - The opening time of day. Note: If the AllDay flag is set, then this time is ignored.
health.fhir.r4.aubase410: HealthcareServiceEligibility
FHIR HealthcareServiceEligibility datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- code CodeableConcept? - Coded value for the eligibility.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- comment markdown? - Describes the eligibility conditions for the service.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: HealthcareServiceNotAvailable
FHIR HealthcareServiceNotAvailable datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- description string - The reason that can be presented to the user as to why this time is not available.
- during Period? - Service is not available (seasonally or for a public holiday) from this date.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: ImmunizationEducation
FHIR ImmunizationEducation datatype record.
Fields
- reference uri? - Reference pointer to the educational material given to the patient if the information was on line.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- documentType string? - Identifier of the material presented to the patient.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- presentationDate dateTime? - Date the educational material was given to the patient.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- publicationDate dateTime? - Date the educational material was published.
health.fhir.r4.aubase410: ImmunizationPerformer
FHIR ImmunizationPerformer datatype record.
Fields
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
health.fhir.r4.aubase410: ImmunizationProtocolApplied
FHIR ImmunizationProtocolApplied datatype record.
Fields
- doseNumberString string - Nominal position in a series.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- seriesDosesPositiveInt positiveInt? - The recommended number of doses to achieve immunity.
- series string? - One possible path to achieve presumed immunity against a disease - within the context of an authority.
- authority Reference? - Indicates the authority who published the protocol (e.g. ACIP) that is being followed.
- doseNumberPositiveInt positiveInt - Nominal position in a series.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- targetDisease CodeableConcept[]? - The vaccine preventable disease the dose is being administered against.
- seriesDosesString string? - The recommended number of doses to achieve immunity.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: ImmunizationReaction
FHIR ImmunizationReaction datatype record.
Fields
- date dateTime? - Date of reaction to the immunization.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- reported boolean? - Self-reported indicator.
- detail Reference? - Details of the reaction.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: ListEntry
FHIR ListEntry datatype record.
Fields
- extension Extension? - Description of a change including the reason for change.
- item Reference - A reference to the actual resource from which data was derived.
- flag CodeableConcept? - The flag allows the system constructing the list to indicate the role and significance of the item in the list.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: LocationHoursOfOperation
FHIR LocationHoursOfOperation datatype record.
Fields
- allDay boolean? - The Location is open all day.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- closingTime time? - Time that the Location closes.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- openingTime time? - Time that the Location opens.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- daysOfWeek LocationHoursOfOperationDaysOfWeek[]? - Indicates which days of the week are available between the start and end Times.
health.fhir.r4.aubase410: LocationPosition
FHIR LocationPosition datatype record.
Fields
- altitude decimal? - Altitude. The value domain and the interpretation are the same as for the text of the altitude element in KML (see notes below).
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- latitude decimal - Latitude. The value domain and the interpretation are the same as for the text of the latitude element in KML (see notes below).
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- longitude decimal - Longitude. The value domain and the interpretation are the same as for the text of the longitude element in KML (see notes below).
health.fhir.r4.aubase410: MedicationAdministrationDosage
FHIR MedicationAdministrationDosage datatype record.
Fields
- dose Quantity? - The amount of the medication given at one administration event. Use this value when the administration is essentially an instantaneous event such as a swallowing a tablet or giving an injection.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- rateRatio Ratio? - Identifies the speed with which the medication was or will be introduced into the patient. Typically, the rate for an infusion e.g. 100 ml per 1 hour or 100 ml/hr. May also be expressed as a rate per unit of time, e.g. 500 ml per 2 hours. Other examples: 200 mcg/min or 200 mcg/1 minute; 1 liter/8 hours.
- site CodeableConcept? - A coded specification of the anatomic site where the medication first entered the body. For example, 'left arm'.
- route CodeableConcept? - A code specifying the route or physiological path of administration of a therapeutic agent into or onto the patient. For example, topical, intravenous, etc.
- method CodeableConcept? - A coded value indicating the method by which the medication is intended to be or was introduced into or on the body. This attribute will most often NOT be populated. It is most commonly used for injections. For example, Slow Push, Deep IV.
- rateQuantity Quantity? - Identifies the speed with which the medication was or will be introduced into the patient. Typically, the rate for an infusion e.g. 100 ml per 1 hour or 100 ml/hr. May also be expressed as a rate per unit of time, e.g. 500 ml per 2 hours. Other examples: 200 mcg/min or 200 mcg/1 minute; 1 liter/8 hours.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- text string? - Free text dosage can be used for cases where the dosage administered is too complex to code. When coded dosage is present, the free text dosage may still be present for display to humans. The dosage instructions should reflect the dosage of the medication that was administered.
health.fhir.r4.aubase410: MedicationAdministrationPerformer
FHIR MedicationAdministrationPerformer datatype record.
Fields
- actor Reference - Indicates who or what performed the medication administration.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- 'function CodeableConcept? - Distinguishes the type of involvement of the performer in the medication administration.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: MedicationBatch
FHIR MedicationBatch datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- lotNumber string? - The assigned lot number of a batch of the specified product.
- expirationDate dateTime? - When this specific batch of product will expire.
health.fhir.r4.aubase410: MedicationDispensePerformer
FHIR MedicationDispensePerformer datatype record.
Fields
- actor Reference - The device, practitioner, etc. who performed the action. It should be assumed that the actor is the dispenser of the medication.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- 'function CodeableConcept? - Distinguishes the type of performer in the dispense. For example, date enterer, packager, final checker.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: MedicationDispenseSubstitution
FHIR MedicationDispenseSubstitution datatype record.
Fields
- reason CodeableConcept? - Indicates the reason for the substitution (or lack of substitution) from what was prescribed.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- wasSubstituted boolean - True if the dispenser dispensed a different drug or product from what was prescribed.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- responsibleParty Reference[]? - The person or organization that has primary responsibility for the substitution.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- 'type CodeableConcept? - A code signifying whether a different drug was dispensed from what was prescribed.
health.fhir.r4.aubase410: MedicationIngredient
FHIR MedicationIngredient datatype record.
Fields
- itemReference Reference - The actual ingredient - either a substance (simple ingredient) or another medication of a medication.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- strength Ratio? - Specifies how many (or how much) of the items there are in this Medication. For example, 250 mg per tablet. This is expressed as a ratio where the numerator is 250mg and the denominator is 1 tablet.
- itemCodeableConcept CodeableConcept - The actual ingredient - either a substance (simple ingredient) or another medication of a medication.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- isActive boolean? - Indication of whether this ingredient affects the therapeutic action of the drug.
health.fhir.r4.aubase410: MedicationRequestDispenseRequest
FHIR MedicationRequestDispenseRequest datatype record.
Fields
- validityPeriod Period? - This indicates the validity period of a prescription (stale dating the Prescription).
- dispenseInterval Duration? - The minimum period of time that must occur between dispenses of the medication.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- performer Reference? - Indicates the intended dispensing Organization specified by the prescriber.
- quantity Quantity? - The amount that is to be dispensed for one fill.
- numberOfRepeatsAllowed unsignedInt? - An integer indicating the number of times, in addition to the original dispense, (aka refills or repeats) that the patient can receive the prescribed medication. Usage Notes: This integer does not include the original order dispense. This means that if an order indicates dispense 30 tablets plus '3 repeats', then the order can be dispensed a total of 4 times and the patient can receive a total of 120 tablets. A prescriber may explicitly say that zero refills are permitted after the initial dispense.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- initialFill MedicationRequestDispenseRequestInitialFill? - Indicates the quantity or duration for the first dispense of the medication.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- expectedSupplyDuration Duration? - Identifies the period time over which the supplied product is expected to be used, or the length of time the dispense is expected to last.
health.fhir.r4.aubase410: MedicationRequestDispenseRequestInitialFill
FHIR MedicationRequestDispenseRequestInitialFill datatype record.
Fields
- duration Duration? - The length of time that the first dispense is expected to last.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- quantity Quantity? - The amount or quantity to provide as part of the first dispense.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: MedicationRequestSubstitution
FHIR MedicationRequestSubstitution datatype record.
Fields
- allowedCodeableConcept CodeableConcept - True if the prescriber allows a different drug to be dispensed from what was prescribed.
- reason CodeableConcept? - Indicates the reason for the substitution, or why substitution must or must not be performed.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- allowedBoolean boolean - True if the prescriber allows a different drug to be dispensed from what was prescribed.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: ObservationComponent
FHIR ObservationComponent datatype record.
Fields
- valueBoolean boolean? - The information determined as a result of making the observation, if the information has a simple value.
- dataAbsentReason CodeableConcept? - Provides a reason why the expected value in the element Observation.component.value[x] is missing.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- valueTime time? - The information determined as a result of making the observation, if the information has a simple value.
- code CodeableConcept - Describes what was observed. Sometimes this is called the observation 'code'.
- valueRange Range? - The information determined as a result of making the observation, if the information has a simple value.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- valueCodeableConcept CodeableConcept? - The information determined as a result of making the observation, if the information has a simple value.
- valueRatio Ratio? - The information determined as a result of making the observation, if the information has a simple value.
- valueString string? - The information determined as a result of making the observation, if the information has a simple value.
- interpretation CodeableConcept[]? - A categorical assessment of an observation value. For example, high, low, normal.
- valueSampledData SampledData? - The information determined as a result of making the observation, if the information has a simple value.
- valuePeriod Period? - The information determined as a result of making the observation, if the information has a simple value.
- valueDateTime dateTime? - The information determined as a result of making the observation, if the information has a simple value.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- valueInteger integer? - The information determined as a result of making the observation, if the information has a simple value.
- valueQuantity Quantity? - The information determined as a result of making the observation, if the information has a simple value.
health.fhir.r4.aubase410: ObservationComponentFour
FHIR ObservationComponentFour datatype record.
Fields
- valueBoolean boolean? - The information determined as a result of making the observation, if the information has a simple value.
- dataAbsentReason CodeableConcept? - Provides a reason why the expected value in the element Observation.component.value[x] is missing.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- valueTime time? - The information determined as a result of making the observation, if the information has a simple value.
- code CodeableConcept - Describes what was observed. Sometimes this is called the observation 'code'.
- valueRange Range? - The information determined as a result of making the observation, if the information has a simple value.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- valueCodeableConcept CodeableConcept? - The information determined as a result of making the observation, if the information has a simple value.
- valueRatio Ratio? - The information determined as a result of making the observation, if the information has a simple value.
- valueString string? - The information determined as a result of making the observation, if the information has a simple value.
- interpretation CodeableConcept[]? - A categorical assessment of an observation value. For example, high, low, normal.
- valueSampledData SampledData? - The information determined as a result of making the observation, if the information has a simple value.
- valuePeriod Period? - The information determined as a result of making the observation, if the information has a simple value.
- valueDateTime dateTime? - The information determined as a result of making the observation, if the information has a simple value.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- valueInteger integer? - The information determined as a result of making the observation, if the information has a simple value.
- valueQuantity Quantity? - The information determined as a result of making the observation, if the information has a simple value.
health.fhir.r4.aubase410: ObservationComponentOne
FHIR ObservationComponentOne datatype record.
Fields
- valueBoolean boolean? - The information determined as a result of making the observation, if the information has a simple value.
- dataAbsentReason CodeableConcept? - Provides a reason why the expected value in the element Observation.component.value[x] is missing.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- valueTime time? - The information determined as a result of making the observation, if the information has a simple value.
- code CodeableConcept - Describes what was observed. Sometimes this is called the observation 'code'.
- valueRange Range? - The information determined as a result of making the observation, if the information has a simple value.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- valueCodeableConcept CodeableConcept? - The information determined as a result of making the observation, if the information has a simple value.
- valueRatio Ratio? - The information determined as a result of making the observation, if the information has a simple value.
- valueString string? - The information determined as a result of making the observation, if the information has a simple value.
- interpretation CodeableConcept[]? - A categorical assessment of an observation value. For example, high, low, normal.
- valueSampledData SampledData? - The information determined as a result of making the observation, if the information has a simple value.
- valuePeriod Period? - The information determined as a result of making the observation, if the information has a simple value.
- valueDateTime dateTime? - The information determined as a result of making the observation, if the information has a simple value.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- valueInteger integer? - The information determined as a result of making the observation, if the information has a simple value.
- valueQuantity Quantity? - The information determined as a result of making the observation, if the information has a simple value.
health.fhir.r4.aubase410: ObservationComponentThree
FHIR ObservationComponentThree datatype record.
Fields
- valueBoolean boolean? - The information determined as a result of making the observation, if the information has a simple value.
- dataAbsentReason CodeableConcept? - Provides a reason why the expected value in the element Observation.component.value[x] is missing.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- valueTime time? - The information determined as a result of making the observation, if the information has a simple value.
- code CodeableConcept - Describes what was observed. Sometimes this is called the observation 'code'.
- valueRange Range? - The information determined as a result of making the observation, if the information has a simple value.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- valueCodeableConcept CodeableConcept? - The information determined as a result of making the observation, if the information has a simple value.
- valueRatio Ratio? - The information determined as a result of making the observation, if the information has a simple value.
- valueString string? - The information determined as a result of making the observation, if the information has a simple value.
- interpretation CodeableConcept[]? - A categorical assessment of an observation value. For example, high, low, normal.
- valueSampledData SampledData? - The information determined as a result of making the observation, if the information has a simple value.
- valuePeriod Period? - The information determined as a result of making the observation, if the information has a simple value.
- valueDateTime dateTime? - The information determined as a result of making the observation, if the information has a simple value.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- valueInteger integer? - The information determined as a result of making the observation, if the information has a simple value.
- valueQuantity Quantity? - The information determined as a result of making the observation, if the information has a simple value.
health.fhir.r4.aubase410: ObservationComponentTwo
FHIR ObservationComponentTwo datatype record.
Fields
- valuePeriod Period? - The information determined as a result of making the observation, if the information has a simple value.
- valueDateTime dateTime? - The information determined as a result of making the observation, if the information has a simple value.
- value CodeableConcept? - The information determined as a result of making the observation, if the information has a simple value.
health.fhir.r4.aubase410: ObservationReferenceRange
FHIR ObservationReferenceRange datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- high Quantity? - The value of the high bound of the reference range. The high bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the high bound is omitted, it is assumed to be meaningless (e.g. reference range is >= 2.3).
- low Quantity? - The value of the low bound of the reference range. The low bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the low bound is omitted, it is assumed to be meaningless (e.g. reference range is <=2.3).
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- appliesTo CodeableConcept[]? - Codes to indicate the target population this reference range applies to. For example, a reference range may be based on the normal population or a particular sex or race. Multiple
appliesTo
are interpreted as an 'AND' of the target populations. For example, to represent a target population of African American females, both a code of female and a code for African American would be used.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- text string? - Text based reference range in an observation which may be used when a quantitative range is not appropriate for an observation. An example would be a reference value of 'Negative' or a list or table of 'normals'.
- 'type CodeableConcept? - Codes to indicate the what part of the targeted reference population it applies to. For example, the normal or therapeutic range.
- age Range? - The age at which this reference range is applicable. This is a neonatal age (e.g. number of weeks at term) if the meaning says so.
health.fhir.r4.aubase410: ObservationReferenceRangeFour
FHIR ObservationReferenceRangeFour datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- high Quantity? - The value of the high bound of the reference range. The high bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the high bound is omitted, it is assumed to be meaningless (e.g. reference range is >= 2.3).
- low Quantity? - The value of the low bound of the reference range. The low bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the low bound is omitted, it is assumed to be meaningless (e.g. reference range is <=2.3).
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- appliesTo CodeableConcept[]? - Codes to indicate the target population this reference range applies to. For example, a reference range may be based on the normal population or a particular sex or race. Multiple
appliesTo
are interpreted as an 'AND' of the target populations. For example, to represent a target population of African American females, both a code of female and a code for African American would be used.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- text string? - Text based reference range in an observation which may be used when a quantitative range is not appropriate for an observation. An example would be a reference value of 'Negative' or a list or table of 'normals'.
- 'type CodeableConcept? - Codes to indicate the what part of the targeted reference population it applies to. For example, the normal or therapeutic range.
- age Range? - The age at which this reference range is applicable. This is a neonatal age (e.g. number of weeks at term) if the meaning says so.
health.fhir.r4.aubase410: ObservationReferenceRangeOne
FHIR ObservationReferenceRangeOne datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- high Quantity? - The value of the high bound of the reference range. The high bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the high bound is omitted, it is assumed to be meaningless (e.g. reference range is >= 2.3).
- low Quantity? - The value of the low bound of the reference range. The low bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the low bound is omitted, it is assumed to be meaningless (e.g. reference range is <=2.3).
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- appliesTo CodeableConcept[]? - Codes to indicate the target population this reference range applies to. For example, a reference range may be based on the normal population or a particular sex or race. Multiple
appliesTo
are interpreted as an 'AND' of the target populations. For example, to represent a target population of African American females, both a code of female and a code for African American would be used.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- text string? - Text based reference range in an observation which may be used when a quantitative range is not appropriate for an observation. An example would be a reference value of 'Negative' or a list or table of 'normals'.
- 'type CodeableConcept? - Codes to indicate the what part of the targeted reference population it applies to. For example, the normal or therapeutic range.
- age Range? - The age at which this reference range is applicable. This is a neonatal age (e.g. number of weeks at term) if the meaning says so.
health.fhir.r4.aubase410: ObservationReferenceRangeThree
FHIR ObservationReferenceRangeThree datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- high Quantity? - The value of the high bound of the reference range. The high bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the high bound is omitted, it is assumed to be meaningless (e.g. reference range is >= 2.3).
- low Quantity? - The value of the low bound of the reference range. The low bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the low bound is omitted, it is assumed to be meaningless (e.g. reference range is <=2.3).
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- appliesTo CodeableConcept[]? - Codes to indicate the target population this reference range applies to. For example, a reference range may be based on the normal population or a particular sex or race. Multiple
appliesTo
are interpreted as an 'AND' of the target populations. For example, to represent a target population of African American females, both a code of female and a code for African American would be used.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- text string? - Text based reference range in an observation which may be used when a quantitative range is not appropriate for an observation. An example would be a reference value of 'Negative' or a list or table of 'normals'.
- 'type CodeableConcept? - Codes to indicate the what part of the targeted reference population it applies to. For example, the normal or therapeutic range.
- age Range? - The age at which this reference range is applicable. This is a neonatal age (e.g. number of weeks at term) if the meaning says so.
health.fhir.r4.aubase410: ObservationReferenceRangeTwo
FHIR ObservationReferenceRangeTwo datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- high Quantity? - The value of the high bound of the reference range. The high bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the high bound is omitted, it is assumed to be meaningless (e.g. reference range is >= 2.3).
- low Quantity? - The value of the low bound of the reference range. The low bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the low bound is omitted, it is assumed to be meaningless (e.g. reference range is <=2.3).
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- appliesTo CodeableConcept[]? - Codes to indicate the target population this reference range applies to. For example, a reference range may be based on the normal population or a particular sex or race. Multiple
appliesTo
are interpreted as an 'AND' of the target populations. For example, to represent a target population of African American females, both a code of female and a code for African American would be used.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- text string? - Text based reference range in an observation which may be used when a quantitative range is not appropriate for an observation. An example would be a reference value of 'Negative' or a list or table of 'normals'.
- 'type CodeableConcept? - Codes to indicate the what part of the targeted reference population it applies to. For example, the normal or therapeutic range.
- age Range? - The age at which this reference range is applicable. This is a neonatal age (e.g. number of weeks at term) if the meaning says so.
health.fhir.r4.aubase410: OrganizationContact
FHIR OrganizationContact datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- address Address? - Visiting or postal addresses for the contact.
- purpose CodeableConcept? - Indicates a purpose for which the contact can be reached.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- name HumanName? - A name associated with the contact.
- telecom ContactPoint[]? - A contact detail (e.g. a telephone number or an email address) by which the party may be contacted.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: PatientCommunication
FHIR PatientCommunication datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- language CodeableConcept - The ISO-639-1 alpha 2 code in lower case for the language, optionally followed by a hyphen and the ISO-3166-1 alpha 2 code for the region in upper case; e.g. 'en' for English, or 'en-US' for American English versus 'en-EN' for England English.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- preferred boolean? - Indicates whether or not the patient prefers this language (over other languages he masters up a certain level).
health.fhir.r4.aubase410: PatientContact
FHIR PatientContact datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- period Period? - The period during which this contact person or organization is valid to be contacted relating to this patient.
- address Address? - An address expressed using postal conventions (as opposed to GPS or other location definition formats). This data type may be used to convey addresses for use in delivering mail as well as for visiting locations which might not be valid for mail delivery. There are a variety of postal address formats defined around the world.
- gender PatientContactGender? - Administrative Gender - the gender that the contact person is considered to have for administration and record keeping purposes.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- organization Reference? - Organization on behalf of which the contact is acting or for which the contact is working.
- name HumanName? - A name associated with the contact person.
- telecom ContactPoint[]? - A contact detail for the person, e.g. a telephone number or an email address.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- relationship CodeableConcept[]? - The nature of the relationship between the patient and the contact person.
health.fhir.r4.aubase410: PatientLink
FHIR PatientLink datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- other Reference - The other patient resource that the link refers to.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- 'type PatientLinkType - The type of link between this patient resource and another patient resource.
health.fhir.r4.aubase410: PractitionerQualification
FHIR PractitionerQualification datatype record.
Fields
- identifier Identifier[]? - An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.
- extension Extension? - Details on the Ahpra registration of profession.
- period Period? - Period during which the qualification is valid.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- issuer Reference? - Organization that regulates and issues the qualification.
health.fhir.r4.aubase410: PractitionerRoleAvailableTime
FHIR PractitionerRoleAvailableTime datatype record.
Fields
- allDay boolean? - Is this always available? (hence times are irrelevant) e.g. 24 hour service.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- availableEndTime time? - The closing time of day. Note: If the AllDay flag is set, then this time is ignored.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- daysOfWeek PractitionerRoleAvailableTimeDaysOfWeek[]? - Indicates which days of the week are available between the start and end Times.
- availableStartTime time? - The opening time of day. Note: If the AllDay flag is set, then this time is ignored.
health.fhir.r4.aubase410: PractitionerRoleNotAvailable
FHIR PractitionerRoleNotAvailable datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- description string - The reason that can be presented to the user as to why this time is not available.
- during Period? - Service is not available (seasonally or for a public holiday) from this date.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: ProcedureFocalDevice
FHIR ProcedureFocalDevice datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- action CodeableConcept? - The kind of change that happened to the device during the procedure.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- manipulated Reference - The device that was manipulated (changed) during the procedure.
health.fhir.r4.aubase410: ProcedurePerformer
FHIR ProcedurePerformer datatype record.
Fields
- actor Reference - The practitioner who was involved in the procedure.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- 'function CodeableConcept? - Distinguishes the type of involvement of the performer in the procedure. For example, surgeon, anaesthetist, endoscopist.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- onBehalfOf Reference? - The organization the device or practitioner was acting on behalf of.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
health.fhir.r4.aubase410: RelatedPersonCommunication
FHIR RelatedPersonCommunication datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- language CodeableConcept - A language which can be used to communicate with about the patient's health. The ISO-639-1 alpha 2 code in lower case for the language, optionally followed by a hyphen and the ISO-3166-1 alpha 2 code for the region in upper case; e.g. 'en' for English, or 'en-US' for American English versus 'en-EN' for England English.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- preferred boolean? - Indicates whether or not the patient prefers this language (over other languages he masters up a certain level).
health.fhir.r4.aubase410: SpecimenCollection
FHIR SpecimenCollection datatype record.
Fields
- duration Duration? - The span of time over which the collection of a specimen occurred.
- bodySite CodeableConcept? - Anatomical location from which the specimen was collected (if subject is a patient). This is the target site. This element is not used for environmental specimens.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- fastingStatusDuration Duration? - Abstinence or reduction from some or all food, drink, or both, for a period of time prior to sample collection.
- quantity Quantity? - The quantity of specimen collected; for instance the volume of a blood sample, or the physical measurement of an anatomic pathology sample.
- collectedPeriod Period? - Time when specimen was collected from subject - the physiologically relevant time.
- method CodeableConcept? - A coded value specifying the technique that is used to perform the procedure.
- collectedDateTime dateTime? - Time when specimen was collected from subject - the physiologically relevant time.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- fastingStatusCodeableConcept CodeableConcept? - Abstinence or reduction from some or all food, drink, or both, for a period of time prior to sample collection.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- collector Reference? - Person who collected the specimen.
health.fhir.r4.aubase410: SpecimenContainer
FHIR SpecimenContainer datatype record.
Fields
- identifier Identifier[]? - Id for container. There may be multiple; a manufacturer's bar code, lab assigned identifier, etc. The container ID may differ from the specimen id in some circumstances.
- specimenQuantity Quantity? - The quantity of specimen in the container; may be volume, dimensions, or other appropriate measurements, depending on the specimen type.
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- description string? - Textual description of the container.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- 'type CodeableConcept? - The type of container associated with the specimen (e.g. slide, aliquot, etc.).
- additiveReference Reference? - Introduced substance to preserve, maintain or enhance the specimen. Examples: Formalin, Citrate, EDTA.
- additiveCodeableConcept CodeableConcept? - Introduced substance to preserve, maintain or enhance the specimen. Examples: Formalin, Citrate, EDTA.
- capacity Quantity? - The capacity (volume or other measure) the container may contain.
health.fhir.r4.aubase410: SpecimenProcessing
FHIR SpecimenProcessing datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- timePeriod Period? - A record of the time or period when the specimen processing occurred. For example the time of sample fixation or the period of time the sample was in formalin.
- description string? - Textual description of procedure.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- procedure CodeableConcept? - A coded value specifying the procedure used to process the specimen.
- timeDateTime dateTime? - A record of the time or period when the specimen processing occurred. For example the time of sample fixation or the period of time the sample was in formalin.
- additive Reference[]? - Material used in the processing step.
health.fhir.r4.aubase410: SubstanceIngredient
FHIR SubstanceIngredient datatype record.
Fields
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- quantity Ratio? - The amount of the ingredient in the substance - a concentration ratio.
- substanceCodeableConcept CodeableConcept - Another substance that is a component of this substance.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
- substanceReference Reference - Another substance that is a component of this substance.
health.fhir.r4.aubase410: SubstanceInstance
FHIR SubstanceInstance datatype record.
Fields
- identifier Identifier? - Identifier associated with the package/container (usually a label affixed directly).
- extension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
- quantity Quantity? - The amount of the substance.
- modifierExtension Extension[]? - May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
- expiry dateTime? - When the substance is no longer valid to use. For some substances, a single arbitrary date is used for expiry.
- id string? - Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
Import
import ballerinax/health.fhir.r4.aubase410;
Metadata
Released date: over 1 year ago
Version: 1.0.4
Compatibility
Platform: any
Ballerina version: 2201.6.0
Pull count
Total: 148
Current verison: 1
Weekly downloads
Keywords
Healthcare
FHIR
R4
AUBase
Contributors