Basisprofil Medikation eines Patienten (MedicationStatement)

Canonical URL: http://fhir.de/StructureDefinition/medicationstatement-de-basis/0.2

identifierΣ0..*Identifier
basedOnΣ0..*Reference(MedicationRequest | CarePlan | ProcedureRequest | ReferralRequest)
partOfΣ0..*Reference(MedicationAdministration | MedicationDispense | MedicationStatement | Procedure | Observation | MedicationStatement, deutsches Basisprofil (Version 0.2))
contextΣ0..1Reference(Encounter | EpisodeOfCare)
statusΣ ?!1..1codeBinding
categoryΣ0..1CodeableConceptBinding
dateAssertedΣ0..1dateTime
informationSource0..1Reference(Patient | Practitioner | RelatedPerson | Organization | Patient, deutsches Basisprofil (Version 0.2) | Practitioner, deutsches Basisprofil (Version 0.2))
subjectΣ1..1Reference(Patient | Group | Patient, deutsches Basisprofil (Version 0.2))
derivedFrom0..*Reference(Resource)
takenΣ ?!1..1codeBinding
reasonNotTaken0..*CodeableConcept
reasonCode0..*CodeableConcept
reasonReference0..*Reference(Condition | Observation | Deutsches Basisprofil einer Condition (Version 0.2) | Observation, deutsches Basisprofil (Version 0.2))
note0..*Annotation

Beispiele

XML-Format

<MedicationStatement>
    <meta>
        <profile value="http://fhir.de/StructureDefinition/medicationstatement-de-basis/0.2" />
    </meta>
    <status value="active" />
    <medicationReference>
        <reference value="/Medication/987654" />
    </medicationReference>
    <effectivePeriod>
        <start value="2017-08-08" />
    </effectivePeriod>
    <dateAsserted value="2017-08-01" />
    <subject>
        <reference value="Patient/13345" />
    </subject>
    <taken value="y" />
    <dosage>
        <timing>
            <code>
                <coding>
                    <system value="http://hl7.org/fhir/v3/TimingEvent" />
                    <code value="CV" />
                </coding>
            </code>
        </timing>
        <doseQuantity>
            <value value="1" />
            <system value="http://fhir.de/CodeSystem/kbv/s-bmp-dosiereinheit" />
            <code value="1" />
        </doseQuantity>
    </dosage>
</MedicationStatement>

JSON-Format

{
    "resourceType":"MedicationStatement",
    "meta":{
        "profile": [
            "http://fhir.de/StructureDefinition/medicationstatement-de-basis/0.2"
        ]
    },
    "status":"active",
    "medicationReference":{
        "reference":"/Medication/987654"
    },
    "effectivePeriod":{
        "start":"2017-08-08"
    },
    "dateAsserted":"2017-08-01",
    "subject":{
        "reference":"Patient/13345"
    },
    "taken":"y",
    "dosage": [
        {
            "timing":{
                "code":{
                    "coding": [
                        {
                            "system":"http://hl7.org/fhir/v3/TimingEvent",
                            "code":"CV"
                        }
                    ]
                }
            },
            "doseQuantity":{
                "value":"1",
                "system":"http://fhir.de/CodeSystem/kbv/s-bmp-dosiereinheit",
                "code":"1"
            }
        }
    ]
}