Basisprofil Medikations-Verordnung (MedicationRequest)

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

rezept-zusatzinfos0..1Extension(Complex)
identifier0..*Identifier
definitionΣ0..*Reference(ActivityDefinition | PlanDefinition)
basedOnΣ0..*Reference(CarePlan | MedicationRequest | ProcedureRequest | ReferralRequest | MedicationRequest, deutsches Basisprofil (Version 0.2))
groupIdentifierΣ0..1Identifier
statusΣ ?!0..1codeBinding
intentΣ ?!1..1codeBinding
category0..1CodeableConceptBinding
priorityΣ0..1codeBinding
medicationCodeableConceptCodeableConcept
medicationReferenceReference(Medication | Medication, deutsches Basisprofil (Version 0.2))
subjectΣ1..1Reference(Patient | Group | Patient, deutsches Basisprofil (Version 0.2))
context0..1Reference(Encounter | EpisodeOfCare)
supportingInformation0..*Reference(Resource)
authoredOnΣ0..1dateTime
agentΣ1..1Reference(Practitioner | Organization | Patient | RelatedPerson | Device | Practitioner, deutsches Basisprofil (Version 0.2) | Organisation, deutsches Basisprofil (Version 0.2) | Patient, deutsches Basisprofil (Version 0.2))
onBehalfOfΣ0..1Reference(Organization)
recorder0..1Reference(Practitioner | Practitioner, deutsches Basisprofil (Version 0.2))
reasonCode0..*CodeableConcept
reasonReference0..*Reference(Condition | Observation | Observation, deutsches Basisprofil (Version 0.2) | Deutsches Basisprofil einer Condition (Version 0.2))
note0..*Annotation
dosageInstruction0..*Dosage
validityPeriod0..1Period
numberOfRepeatsAllowed0..1positiveInt
quantity0..1SimpleQuantity
expectedSupplyDuration0..1Duration
performer0..1Reference(Organization | Organisation, deutsches Basisprofil (Version 0.2))
allowed?!1..1boolean
reason0..1CodeableConcept
priorPrescription0..1Reference(MedicationRequest | MedicationRequest, deutsches Basisprofil (Version 0.2))
detectedIssue0..*Reference(DetectedIssue)
eventHistory0..*Reference(Provenance)

Beispiele

XML-Format

<MedicationRequest>
    <meta>
        <profile value="http://fhir.de/StructureDefinition/medicationrequest-de-basis/0.2" />
    </meta>
    <extension url="http://fhir.de/StructureDefinition/rezept-zusatzinfos/0.2">
        <extension url="unfall">
            <valueBoolean value="true" />
        </extension>
    </extension>
    <status value="active" />
    <intent value="order" />
    <medicationReference>
        <reference value="/Medication/987654" />
    </medicationReference>
    <subject>
        <reference value="Patient/12345" />
    </subject>
    <requester>
        <agent>
            <reference value="Pracitioner/9876" />
        </agent>
        <onBehalfOf>
            <reference value="Organization/5432" />
        </onBehalfOf>
    </requester>
    <substitution>
        <allowed value="true" />
    </substitution>
</MedicationRequest>

JSON-Format

{
    "resourceType":"MedicationRequest",
    "meta":{
        "profile": [
            "http://fhir.de/StructureDefinition/medicationrequest-de-basis/0.2"
        ]
    },
    "extension": [
        {
            "extension": [
                {
                    "url":"unfall",
                    "valueBoolean":true
                }
            ],
            "url":"http://fhir.de/StructureDefinition/rezept-zusatzinfos/0.2"
        }
    ],
    "status":"active",
    "intent":"order",
    "medicationReference":{
        "reference":"/Medication/987654"
    },
    "subject":{
        "reference":"Patient/12345"
    },
    "requester":{
        "agent":{
            "reference":"Pracitioner/9876"
        },
        "onBehalfOf":{
            "reference":"Organization/5432"
        }
    },
    "substitution":{
        "allowed":true
    }
}