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
systemΣ1..1uriFixed Value
versionΣ0..1string
codeΣ1..1codeFixed Value
displayΣ0..1string
userSelectedΣ0..1boolean
textΣ0..1string
subjectΣ1..1Reference(Patient | Group | Patient, deutsches Basisprofil (Version 0.2))
context0..1Reference(Encounter | EpisodeOfCare)
effectiveDateTimedateTime
effectivePeriodPeriod
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))
valueΣ1..1decimal
comparatorΣ ?!0..1codeBinding
unitΣ1..1stringBinding
systemΣ1..1uri
codeΣ1..1code
dataAbsentReason0..1CodeableConceptBinding
interpretation0..1CodeableConceptBinding
comment0..1string
bodySite0..1CodeableConcept
method0..1CodeableConcept
specimen0..1Reference(Specimen)
device0..1Reference(Device | DeviceMetric)
low0..1SimpleQuantity
high0..1SimpleQuantity
type0..1CodeableConceptBinding
appliesTo0..*CodeableConcept
age0..1Range
text0..1string
type0..1codeBinding
target1..1Reference(Observation | QuestionnaireResponse | Sequence | Observation, deutsches Basisprofil (Version 0.2))
codeΣ1..1CodeableConcept
valueQuantityQuantity
valueCodeableConceptCodeableConcept
valueStringstring
valueRangeRange
valueRatioRatio
valueSampledDataSampledData
valueAttachmentAttachment
valueTimetime
valueDateTimedateTime
valuePeriodPeriod
dataAbsentReason0..1CodeableConceptBinding
interpretation0..1CodeableConceptBinding
referenceRange0..*see (referenceRange)

Beispiele

XML-Format

<Observation xmlns="http://hl7.org/fhir">
    <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"
    }
}