@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://www.ehealth.fgov.be/standards/fhir/registries/bcr/Patient/BCRExamplePatient> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "BCRExamplePatient"] ; # 
  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 BCRExamplePatient</b></p><a name=\"BCRExamplePatient\"> </a><a name=\"hcBCRExamplePatient\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Example Patient Female, DoB: 1962-03-21 ( https://www.ehealth.fgov.be/standards/fhir/NamingSystem/ssin#62032100123)</p><hr/></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 "62032100123" ]
  ] ) ; # 
  fhir:name ( [
     fhir:text [ fhir:v "Example Patient" ]
  ] ) ; # 
  fhir:gender [ fhir:v "female"] ; # 
  fhir:birthDate [ fhir:v "1962-03-21"^^xsd:date] . # 

# -------------------------------------------------------------------------------------

