Körpergröße

Canonical URL: http://fhir.de/StructureDefinition/observation-de-koerpergroesse/0.2

identifierΣ0..*Identifier
basedOnΣ0..*Reference(CarePlan | DeviceRequest | ImmunizationRecommendation | MedicationRequest | NutritionOrder | ProcedureRequest | ReferralRequest)
statusΣ ?!1..1codeBinding
category0..*CodeableConceptBinding
subjectΣ1..1Reference(Patient | Group | Patient, deutsches Basisprofil (Version 0.2))
context0..1Reference(Encounter | EpisodeOfCare)
issuedΣ0..1instant
performerΣ0..*Reference(Practitioner | Organization | Patient | RelatedPerson | Organisation, deutsches Basisprofil (Version 0.2) | Patient, deutsches Basisprofil (Version 0.2) | Practitioner, deutsches Basisprofil (Version 0.2))
dataAbsentReason0..1CodeableConceptBinding
interpretation0..1CodeableConceptBinding
comment0..1string
bodySite0..1CodeableConcept
method0..1CodeableConcept
specimen0..1Reference(Specimen)
device0..1Reference(Device | DeviceMetric)

Beispiele

XML-Format

<Observation>
    <meta>
        <profile value="http://fhir.de/StructureDefinition/observation-de-koerpergroesse/0.2" />
    </meta>
    <status value="final" />
    <code>
        <coding>
            <system value="http://loinc.org" />
            <code value="8302-2" />
        </coding>
    </code>
    <subject>
        <reference value="Patient/12345" />
    </subject>
    <valueQuantity>
        <value value="172" />
        <unit value="cm" />
        <system value="http://unitsofmeasure.org" />
        <code value="cm" />
    </valueQuantity>
</Observation>

JSON-Format

{
    "resourceType":"Observation",
    "meta":{
        "profile": [
            "http://fhir.de/StructureDefinition/observation-de-koerpergroesse/0.2"
        ]
    },
    "status":"final",
    "code":{
        "coding": [
            {
                "system":"http://loinc.org",
                "code":"8302-2"
            }
        ]
    },
    "subject":{
        "reference":"Patient/12345"
    },
    "valueQuantity":{
        "value":"172",
        "unit":"cm",
        "system":"http://unitsofmeasure.org",
        "code":"cm"
    }
}