@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://ehealth.sundhed.dk/fhir/Patient/102> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "102"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-patient"^^xsd:anyURI ;
       fhir:link <http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-patient>
     ] )
  ] ; # 
  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: Patient 102</b></p><a name=\"102\"> </a><a name=\"hc102\"> </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-ehealth-patient.html\">ehealth-patient</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Nancy Ann Berggren (official) Ukendt, DoB Unknown ( urn:oid:1.2.208.176.1.2#Danish civil registration system - CPR#2512489996 (use: official, ))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\"><ul><li>NemSMS</li><li>eBoks</li><li>Tårnhøjvej 47 Landet Aalborg Øst 9220 Danmark (home)</li></ul></td></tr></table></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:system [ fhir:v "urn:oid:1.2.208.176.1.2"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "2512489996" ]
  ] ) ; # 
  fhir:name ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:family [ fhir:v "Berggren" ] ;
     fhir:given ( [ fhir:v "Nancy" ] [ fhir:v "Ann" ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "other" ] ;
     fhir:value [ fhir:v "NemSMS" ]
  ] [
     fhir:system [ fhir:v "other" ] ;
     fhir:value [ fhir:v "eBoks" ]
  ] ) ; # 
  fhir:gender [ fhir:v "unknown"] ; # 
  fhir:address ( [
     fhir:extension ( [
       fhir:url [ fhir:v "http://hl7.dk/fhir/core/StructureDefinition/dk-core-municipalityCodes"^^xsd:anyURI ] ;
       fhir:value [
         a fhir:CodeableConcept ;
         fhir:coding ( [
           fhir:system [ fhir:v "http://hl7.dk/fhir/core/CodeSystem/dk-core-municipality-codes"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "0330" ]
         ] )
       ]
     ] [
       fhir:url [ fhir:v "http://hl7.dk/fhir/core/StructureDefinition/dk-core-RegionalSubDivisionCodes"^^xsd:anyURI ] ;
       fhir:value [
         a fhir:CodeableConcept ;
         fhir:coding ( [
           fhir:system [ fhir:v "http://hl7.dk/fhir/core/CodeSystem/dk-core-regional-subdivision-codes"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "DK-85" ]
         ] )
       ]
     ] ) ;
     fhir:use [ fhir:v "home" ] ;
     fhir:line ( [ fhir:v "Tårnhøjvej 47" ] [ fhir:v "Landet" ] ) ;
     fhir:city [ fhir:v "Aalborg Øst" ] ;
     fhir:postalCode [ fhir:v "9220" ] ;
     fhir:country [ fhir:v "Danmark" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

