@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Goal; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "stop-smoking"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "additional" ]; fhir:Narrative.div "
\n

A simple care goal for a patient to stop smoking.

\n
" ]; fhir:Goal.identifier [ fhir:index 0; fhir:Identifier.value [ fhir:value "123" ] ]; fhir:Goal.lifecycleStatus [ fhir:value "completed"]; fhir:Goal.achievementStatus [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/goal-achievement" ]; fhir:Coding.code [ fhir:value "achieved" ]; fhir:Coding.display [ fhir:value "Achieved" ] ]; fhir:CodeableConcept.text [ fhir:value "Achieved" ] ]; fhir:Goal.description [ fhir:CodeableConcept.text [ fhir:value "Stop smoking" ] ]; fhir:Goal.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ]; fhir:Reference.display [ fhir:value "Peter James Chalmers" ] ]; fhir:Goal.startDate [ fhir:value "2015-04-05"^^xsd:date]; fhir:Goal.outcomeCode [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; a sct:8517006; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "8517006" ]; fhir:Coding.display [ fhir:value "Ex-smoker (finding)" ] ]; fhir:CodeableConcept.text [ fhir:value "Former smoker" ] ] . a fhir:Patient . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------