@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://SHIFT-Task-Force.github.io/demo-fhir-data/RelatedPerson/MariaRambeau16> a fhir:RelatedPerson ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "MariaRambeau16"] ; # 
  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: RelatedPerson MariaRambeau16</b></p><a name=\"MariaRambeau16\"> </a><a name=\"hcMariaRambeau16\"> </a><p><b>patient</b>: <a href=\"Patient-SteffiRambeau16.html\">Mo  Female, DoB: 2009-07-18</a></p><p><b>relationship</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-RoleCode MTH}\">mother</span></p><p><b>name</b>: Maria Rambeau </p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:patient [
     fhir:l <http://SHIFT-Task-Force.github.io/demo-fhir-data/Patient/SteffiRambeau16> ;
     fhir:reference [ fhir:v "Patient/SteffiRambeau16" ]
  ] ; # 
  fhir:relationship ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/v3-RoleCode"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/v3-RoleCode>
       ] ;
       fhir:code [ fhir:v "MTH" ] ;
       fhir:display [ fhir:v "mother" ]
     ] )
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Rambeau" ] ;
     fhir:given ( [ fhir:v "Maria" ] )
  ] ) . # 

# -------------------------------------------------------------------------------------

