@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/ExampleBelgianPatientFrench> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ExampleBelgianPatientFrench"] ; # 
  fhir:language [ fhir:v "fr-BE"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"fr-BE\" lang=\"fr-BE\"><p class=\"res-header-id\"><b>Generated Narrative: Patient ExampleBelgianPatientFrench</b></p><a name=\"ExampleBelgianPatientFrench\"> </a><a name=\"hcExampleBelgianPatientFrench\"> </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\">Language: fr-BE</p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Marie Lemaire  Female, DoB: 1992-08-23 ( https://www.ehealth.fgov.be/standards/fhir/NamingSystem/ssin#98765432109)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\">Avenue Louise 54 Bruxelles 1050 BE </td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Language spoken\">Language:</td><td colspan=\"3\"><span title=\"Codes:{urn:ietf:bcp:47 fr-BE}\">Français (Belgique)</span> (preferred)</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 "98765432109" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Lemaire" ] ;
     fhir:given ( [ fhir:v "Marie" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "female"] ; # 
  fhir:birthDate [ fhir:v "1992-08-23"^^xsd:date] ; # 
  fhir:address ( [
     fhir:line ( [ fhir:v "Avenue Louise 54" ] ) ;
     fhir:city [ fhir:v "Bruxelles" ] ;
     fhir:postalCode [ fhir:v "1050" ] ;
     fhir:country [ fhir:v "BE" ]
  ] ) ; # 
  fhir:communication ( [
     fhir:language [
       fhir:coding ( [
         fhir:system [
           fhir:v "urn:ietf:bcp:47"^^xsd:anyURI ;
           fhir:l <urn:ietf:bcp:47>
         ] ;
         fhir:code [ fhir:v "fr-BE" ] ;
         fhir:display [ fhir:v "Français (Belgique)" ]
       ] )
     ] ;
     fhir:preferred [ fhir:v true ]
  ] ) . # 

# -------------------------------------------------------------------------------------

