DHIN 2025Connectathon FHIR IG, published by DHIN. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/Nigeria-FHIR-Community/2025Connectathon/ and changes regularly. See the Directory of published versions
: Example NG Goal - TTL Representation
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Goal ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "NgGoal-001"] ; #
fhir:meta [
( fhir:profile [
fhir:v "https://sandbox.dhin-hie.org/ig/StructureDefinition/NgGoal"^^xsd:anyURI ;
fhir:link <https://sandbox.dhin-hie.org/ig/StructureDefinition/NgGoal> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Goal NgGoal-001</b></p><a name=\"NgGoal-001\"> </a><a name=\"hcNgGoal-001\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-NgGoal.html\">NG Goal</a></p></div><p><b>lifecycleStatus</b>: Active</p><p><b>achievementStatus</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/goal-achievement improving}\">Improving</span></p><p><b>category</b>: <span title=\"Codes:\">Chronic disease management</span></p><p><b>priority</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/goal-priority high-priority}\">High Priority</span></p><p><b>description</b>: <span title=\"Codes:\">Control systolic blood pressure</span></p><p><b>subject</b>: <code>NgPatient/NgPatient-001</code></p><p><b>start</b>: 2025-11-11</p><h3>Targets</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Measure</b></td><td><b>Detail[x]</b></td><td><b>Due[x]</b></td></tr><tr><td style=\"display: none\">*</td><td><span title=\"Codes:{http://loinc.org 8480-6}\">Systolic blood pressure</span></td><td>120 mmHg</td><td>2025-12-23</td></tr></table></div>"^^rdf:XMLLiteral
] ; #
fhir:lifecycleStatus [ fhir:v "active"] ; #
fhir:achievementStatus [
( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/goal-achievement"^^xsd:anyURI ] ;
fhir:code [ fhir:v "improving" ] ] )
] ; #
fhir:category ( [
fhir:text [ fhir:v "Chronic disease management" ]
] ) ; #
fhir:priority [
( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/goal-priority"^^xsd:anyURI ] ;
fhir:code [ fhir:v "high-priority" ] ] )
] ; #
fhir:description [
fhir:text [ fhir:v "Control systolic blood pressure" ]
] ; #
fhir:subject [
fhir:reference [ fhir:v "NgPatient/NgPatient-001" ]
] ; #
fhir:start [
a fhir:date ;
fhir:v "2025-11-11"^^xsd:date
] ; #
fhir:target ( [
fhir:measure [
( fhir:coding [
a loinc:8480-6 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "8480-6" ] ;
fhir:display [ fhir:v "Systolic blood pressure" ] ] ) ] ;
fhir:detail [
a fhir:Quantity ;
fhir:value [ fhir:v "120"^^xsd:decimal ] ;
fhir:unit [ fhir:v "mmHg" ] ] ;
fhir:due [
a fhir:date ;
fhir:v "2025-12-23"^^xsd:date ]
] ) . #