@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 -------------------------------------------------------------------

<https://fhir.hl7.at/elga/core/r4/Patient/AtElgaCorePatientExample01> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "AtElgaCorePatientExample01"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://fhir.hl7.at/elga/core/r4/StructureDefinition/at-elga-core-patient"^^xsd:anyURI ;
       fhir:l <https://fhir.hl7.at/elga/core/r4/StructureDefinition/at-elga-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 AtElgaCorePatientExample01</b></p><a name=\"AtElgaCorePatientExample01\"> </a><a name=\"hcAtElgaCorePatientExample01\"> </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-at-elga-core-patient.html\">AT ELGA Core Patient Profil</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Max Mustermann  Male, DoB: 1900-01-01 ( Social Security number: 1234010100)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Other Ids (see the one above)\">Other Ids:</td><td colspan=\"3\"><ul><li>National unique individual identifier/GH:oeLdSEb0l+8kSdJWjOYyYmnYki0=</li><li>Patient internal identifier/0815</li></ul></td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:type [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ;
           fhir:l <http://terminology.hl7.org/CodeSystem/v2-0203>
         ] ;
         fhir:code [ fhir:v "SS" ] ;
         fhir:display [ fhir:v "Social Security number" ]
       ] )
     ] ;
     fhir:system [
       fhir:v "urn:oid:1.2.40.0.10.1.4.3.1"^^xsd:anyURI ;
       fhir:l <urn:oid:1.2.40.0.10.1.4.3.1>
     ] ;
     fhir:value [ fhir:v "1234010100" ] ;
     fhir:assigner [
       fhir:display [ fhir:v "Dachverband der österreichischen Sozialversicherungsträger" ]
     ]
  ] [
     fhir:type [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ;
           fhir:l <http://terminology.hl7.org/CodeSystem/v2-0203>
         ] ;
         fhir:code [ fhir:v "NI" ] ;
         fhir:display [ fhir:v "National unique individual identifier" ]
       ] )
     ] ;
     fhir:system [
       fhir:v "urn:oid:1.2.40.0.10.2.1.1.149"^^xsd:anyURI ;
       fhir:l <urn:oid:1.2.40.0.10.2.1.1.149>
     ] ;
     fhir:value [ fhir:v "GH:oeLdSEb0l+8kSdJWjOYyYmnYki0=" ] ;
     fhir:assigner [
       fhir:display [ fhir:v "Bundesministerium für Inneres" ]
     ]
  ] [
     fhir:type [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ;
           fhir:l <http://terminology.hl7.org/CodeSystem/v2-0203>
         ] ;
         fhir:code [ fhir:v "PI" ] ;
         fhir:display [ fhir:v "Patient internal identifier" ]
       ] )
     ] ;
     fhir:system [
       fhir:v "urn:oid:1.2.3.4.5"^^xsd:anyURI ;
       fhir:l <urn:oid:1.2.3.4.5>
     ] ;
     fhir:value [ fhir:v "0815" ] ;
     fhir:assigner [
       fhir:display [ fhir:v "Ein GDA in Österreich" ]
     ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Mustermann" ] ;
     fhir:given ( [ fhir:v "Max" ] ) ;
     fhir:prefix ( [ fhir:v "DI" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "1900-01-01"^^xsd:date] . # 

# -------------------------------------------------------------------------------------

