@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Condition; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "family-history"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "
Family history of cancer of colon
" ]; fhir:Condition.clinicalStatus [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/condition-clinical" ]; fhir:Coding.code [ fhir:value "active" ] ] ]; fhir:Condition.category [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/condition-category" ]; fhir:Coding.code [ fhir:value "problem-list-item" ]; fhir:Coding.display [ fhir:value "Problem List Item" ] ] ]; fhir:Condition.code [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:312824007; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "312824007" ]; fhir:Coding.display [ fhir:value "Family history of cancer of colon" ] ] ]; fhir:Condition.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ] ] . a fhir:Patient . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------