@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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/Poul> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "Poul"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.dk/fhir/core/StructureDefinition/dk-core-patient"^^xsd:anyURI ;
       fhir:link <http://hl7.dk/fhir/core/StructureDefinition/dk-core-patient>
     ] [
       fhir:v "http://hl7.org/fhir/uv/phd/StructureDefinition/PhdPatient"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/uv/phd/StructureDefinition/PhdPatient>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Poul Hansen </b> (no stated gender), DoB Unknown ( National unique individual identifier/3001749995)</p><hr/></div>"
  ] ; # 
  fhir:identifier ( [
     fhir:type [
       fhir:coding ( [
         fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "NI" ]
       ] )
     ] ;
     fhir:system [ fhir:v "urn:oid:1.2.208.176.1.2"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "3001749995" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Hansen" ] ;
     fhir:given ( [ fhir:v "Poul" ] )
  ] ) . # 

# -------------------------------------------------------------------------------------

