@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/FrankRambeau16> a fhir:RelatedPerson ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "FrankRambeau16"] ; # 
  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 FrankRambeau16</b></p><a name=\"FrankRambeau16\"> </a><a name=\"hcFrankRambeau16\"> </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 FTH}\">father</span></p><p><b>name</b>: Frank 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 "FTH" ] ;
       fhir:display [ fhir:v "father" ]
     ] )
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Rambeau" ] ;
     fhir:given ( [ fhir:v "Frank" ] )
  ] ) . # 

# -------------------------------------------------------------------------------------

