Behandlungsziel

Das Behandlungsziel wird primär als Freitext im Feld description.text übermittelt, kann aber auch strukturiert in description.coding hinterlegt werden. Über target können weitere Informationen (semi-)strukturiert hinterlegt werden.

GoalOfTreatment

idΣ0..1string
metaΣ0..1Meta
implicitRulesΣ ?!0..1uri
language0..1codeBinding
text0..1Narrative
contained0..*Resource
extensionI0..*Extension
modifierExtension?! I0..*Extension
identifier0..*Identifier
lifecycleStatusΣ ?!1..1codeBinding
achievementStatusΣ0..1CodeableConceptBinding
categoryΣ0..*CodeableConcept
priorityΣ0..1CodeableConceptBinding
descriptionS Σ1..1CodeableConcept
subjectΣ I1..1Reference(Patient)
startDatedate
startCodeableConceptCodeableConcept
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
measureΣ I0..1CodeableConcept
detailQuantityQuantity
detailRangeRange
detailCodeableConceptCodeableConcept
detailStringstring
detailBooleanboolean
detailIntegerinteger
detailRatioRatio
dueDatedate
dueDurationDuration
statusDateΣ0..1date
statusReason0..1string
expressedByΣ I0..1Reference(Patient | Practitioner | PractitionerRole | RelatedPerson)
addressesI0..*Reference(Condition | Wound)
note0..*Annotation
outcomeCode0..*CodeableConcept
outcomeReferenceI0..*Reference(Observation)

Anmerkungen zu Must-Support-Feldern

Goal.description

Bedeutung: Beschreibung des Behandlungsziels, z.B. als Freitext.

Goal.target

Bedeutung: Genauere Beschreibung des Behandlungs mit Zielgröße(n) und Details, bis wann sich die Zielgröße(n) in welche Richtung entwickeln soll.

Beispiel

{
    "resourceType": "Goal",
    "meta": {
        "profile":  [
            "http://hs-osnabrueck.de/fhir/eWundbericht/StructureDefinition/GoalOfTreatment"
        ]
    },
    "id": "ExampleGoal",
    "lifecycleStatus": "active",
    "description": {
        "text": "Reduktion der Wundgröße"
    },
    "subject": {
        "reference": "Patient/example"
    },
    "target":  [
        {
            "measure": {
                "coding":  [
                    {
                        "code": "72287-6",
                        "system": "http://loinc.org"
                    }
                ]
            },
            "detailString": "Reduziert bis zur Wundheilung"
        }
    ],
    "addresses":  [
        {
            "reference": "Condition/example"
        }
    ]
}