@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 -------------------------------------------------------------------

<http://hl7.dk/fhir/core/Patient/john> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "john"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.dk/fhir/core/StructureDefinition/dk-core-patient"^^xsd:anyURI ;
       fhir:l <http://hl7.dk/fhir/core/StructureDefinition/dk-core-patient>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Patient john</b></p><a name=\"john\"> </a><a name=\"hcjohn\"> </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-dk-core-patient.html\">Danish Core Patient Profile</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Johnny Male, DoB: 1960-01-02 ( urn:oid:1.2.208.176.1.2#DK Central Person Registry (CPR)#0201609995)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Alternate names (see the one above)\">Alt. Name:</td><td colspan=\"3\">Mr. John Christian Meyerhofen(Official)</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Patient Links\">Links:</td><td colspan=\"3\"><ul><li>General Practitioner: Charlottenlund Lægehus (Identifier: <code>urn:oid:1.2.208.176.1.1</code>/487341000016005)</li></ul></td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "urn:oid:1.2.208.176.1.2"^^xsd:anyURI ;
       fhir:l <urn:oid:1.2.208.176.1.2>
     ] ;
     fhir:value [ fhir:v "0201609995" ]
  ] ) ; # 
  fhir:name ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:text [ fhir:v "Mr. John Christian Meyerhofen" ] ;
     fhir:family [ fhir:v "Meyerhofen" ] ;
     fhir:given ( [ fhir:v "John" ] [ fhir:v "Christian" ] ) ;
     fhir:prefix ( [ fhir:v "Mr" ] )
  ] [
     fhir:use [ fhir:v "usual" ] ;
     fhir:text [ fhir:v "Johnny" ] ;
     fhir:given ( [ fhir:v "Johnny" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "1960-01-02"^^xsd:date] ; # 
  fhir:generalPractitioner ( [
     fhir:identifier [
       fhir:system [
         fhir:v "urn:oid:1.2.208.176.1.1"^^xsd:anyURI ;
         fhir:l <urn:oid:1.2.208.176.1.1>
       ] ;
       fhir:value [ fhir:v "487341000016005" ]
     ] ;
     fhir:display [ fhir:v "Charlottenlund Lægehus" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

