Care Coordination Management, published by Helex OÜ. This guide is not an authorized publication; it is the continuous build for version 0.0.1 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/helexlab/ig-ccm/ and changes regularly. See the Directory of published versions
: Example of CCM Patient - TTL Representation
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@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:Patient ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "patient-ccm-example"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://helex.org/ig/ccm/StructureDefinition/patient-ccm"^^xsd:anyURI ;
fhir:l <http://helex.org/ig/ccm/StructureDefinition/patient-ccm> ] )
] ; #
fhir:language [ fhir:v "et"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"et\" lang=\"et\"><p class=\"res-header-id\"><b>Generated Narrative: Patient patient-ccm-example</b></p><a name=\"patient-ccm-example\"> </a><a name=\"hcpatient-ccm-example\"> </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\">Language: et</p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-patient-ccm.html\">PatientCcm</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Jaan Tamm (official) Male, DoB: 1950-05-15 ( https://fhir.ee/sid/pid/est/ni#Estonian Personal National Identification Code#tegelik-isikukood)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td colspan=\"3\">true</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\"><ul><li><a href=\"tel:+37251234567\">+37251234567</a></li><li>Pargi 12 EE (home)</li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Language spoken\">Language:</td><td colspan=\"3\"><span title=\"Codes:{urn:ietf:bcp:47 et}\">Estonian</span></td></tr></table></div>"^^rdf:XMLLiteral ]
] ; #
fhir:identifier ( [
fhir:system [
fhir:v "https://fhir.ee/sid/pid/est/ni"^^xsd:anyURI ;
fhir:l <https://fhir.ee/sid/pid/est/ni> ] ;
fhir:value [ fhir:v "tegelik-isikukood" ]
] ) ; #
fhir:active [ fhir:v true] ; #
fhir:name ( [
fhir:use [ fhir:v "official" ] ;
fhir:family [ fhir:v "Tamm" ] ;
( fhir:given [ fhir:v "Jaan" ] )
] ) ; #
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "+37251234567" ]
] ) ; #
fhir:gender [ fhir:v "male"] ; #
fhir:birthDate [ fhir:v "1950-05-15"^^xsd:date] ; #
fhir:address ( [
fhir:use [ fhir:v "home" ] ;
( fhir:line [ fhir:v "Pargi 12" ] ) ;
fhir:country [ fhir:v "EE" ]
] ) ; #
fhir:communication ( [
fhir:language [
( fhir:coding [
fhir:system [
fhir:v "urn:ietf:bcp:47"^^xsd:anyURI ;
fhir:l <urn:ietf:bcp:47> ] ;
fhir:code [ fhir:v "et" ] ] ) ]
] ) . #