@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://hl7-be.github.io/pipeline-test/Patient/ExampleBelgianPatient> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ExampleBelgianPatient"] ; # 
  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 ExampleBelgianPatient</b></p><a name=\"ExampleBelgianPatient\"> </a><a name=\"hcExampleBelgianPatient\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Jean Dupont  Male, DoB: 1985-04-12 ( https://www.ehealth.fgov.be/standards/fhir/NamingSystem/ssin#12345678901)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\">Rue de la Loi 16 Brussels 1000 BE </td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "https://www.ehealth.fgov.be/standards/fhir/NamingSystem/ssin"^^xsd:anyURI ;
       fhir:l <https://www.ehealth.fgov.be/standards/fhir/NamingSystem/ssin>
     ] ;
     fhir:value [ fhir:v "12345678901" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Dupont" ] ;
     fhir:given ( [ fhir:v "Jean" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "1985-04-12"^^xsd:date] ; # 
  fhir:address ( [
     fhir:line ( [ fhir:v "Rue de la Loi 16" ] ) ;
     fhir:city [ fhir:v "Brussels" ] ;
     fhir:postalCode [ fhir:v "1000" ] ;
     fhir:country [ fhir:v "BE" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

