This page is part of the FHIR Specification (v3.0.2: STU 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3
Patient Care Work Group | Maturity Level: N/A | Ballot Status: Informative | Compartments: Encounter, Patient, Practitioner, RelatedPerson |
Real-word condition example (malignancy)
@prefix fhir: <http://hl7.org/fhir/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix sct: <http://snomed.info/id/> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- <http://hl7.org/fhir/Condition/f202> a fhir:Condition; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "f202"]; fhir:Resource.meta [ fhir:Meta.security [ fhir:index 0; fhir:Coding.system [ fhir:value "http://hl7.org/fhir/v3/ActCode" ]; fhir:Coding.code [ fhir:value "TBOO" ]; fhir:Coding.display [ fhir:value "taboo" ] ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: f202</p><p><b>meta</b>: </p><p><b>clinicalStatus</b>: resolved</p><p><b>verificationStatus</b>: confirmed</p><p><b>category</b>: Encounter Diagnosis <span>(Details : {http://hl7.org/fhir/condition-category code 'encounter-diagnosis' = 'Encounter Diagnosis)</span></p><p><b>severity</b>: Severe <span>(Details : {SNOMED CT code '24484000' = 'Severe', given as 'Severe'})</span></p><p><b>code</b>: Malignant neoplastic disease <span>(Details : {SNOMED CT code '363346000' = 'Malignant tumour', given as 'Malignant neoplastic disease'})</span></p><p><b>bodySite</b>: Entire head and neck <span>(Details : {SNOMED CT code '361355005' = 'Entire head and neck', given as 'Entire head and neck'})</span></p><p><b>subject</b>: <a>Roel</a></p><p><b>onset</b>: 52 years<span> (Details: UCUM code a = 'a')</span></p><p><b>abatement</b>: 54 years<span> (Details: UCUM code a = 'a')</span></p><p><b>assertedDate</b>: 01/12/2012</p><h3>Evidences</h3><table><tr><td>-</td><td><b>Detail</b></td></tr><tr><td>*</td><td><a>Erasmus' diagnostic report of Roel's tumor</a></td></tr></table></div>" ]; fhir:Condition.clinicalStatus [ fhir:value "resolved"]; fhir:Condition.verificationStatus [ fhir:value "confirmed"]; fhir:Condition.category [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://hl7.org/fhir/condition-category" ]; fhir:Coding.code [ fhir:value "encounter-diagnosis" ] ] ]; fhir:Condition.severity [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:24484000; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "24484000" ]; fhir:Coding.display [ fhir:value "Severe" ] ] ]; fhir:Condition.code [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:363346000; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "363346000" ]; fhir:Coding.display [ fhir:value "Malignant neoplastic disease" ] ] ]; fhir:Condition.bodySite [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; a sct:361355005; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "361355005" ]; fhir:Coding.display [ fhir:value "Entire head and neck" ] ] ]; fhir:Condition.subject [ fhir:link <http://hl7.org/fhir/Patient/f201>; fhir:Reference.reference [ fhir:value "Patient/f201" ]; fhir:Reference.display [ fhir:value "Roel" ] ]; fhir:Condition.onsetAge [ fhir:Quantity.value [ fhir:value "52"^^xsd:decimal ]; fhir:Quantity.unit [ fhir:value "years" ]; fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ]; fhir:Quantity.code [ fhir:value "a" ] ]; fhir:Condition.abatementAge [ fhir:Quantity.value [ fhir:value "54"^^xsd:decimal ]; fhir:Quantity.unit [ fhir:value "years" ]; fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ]; fhir:Quantity.code [ fhir:value "a" ] ]; fhir:Condition.assertedDate [ fhir:value "2012-12-01"^^xsd:date]; fhir:Condition.evidence [ fhir:index 0; fhir:Condition.evidence.detail [ fhir:index 0; fhir:link <http://hl7.org/fhir/DiagnosticReport/f201>; fhir:Reference.reference [ fhir:value "DiagnosticReport/f201" ]; fhir:Reference.display [ fhir:value "Erasmus' diagnostic report of Roel's tumor" ] ] ] . <http://hl7.org/fhir/Patient/f201> a fhir:Patient . <http://hl7.org/fhir/DiagnosticReport/f201> a fhir:DiagnosticReport . # - ontology header ------------------------------------------------------------ <http://hl7.org/fhir/Condition/f202.ttl> a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI <http://hl7.org/fhir/STU3/Condition/f202.ttl> . # -------------------------------------------------------------------------------------
Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.