@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://hl7.org/fhir/uv/pc-incubator/Linkage/example> a fhir:Linkage ;
  fhir:resourceDefinition http://hl7.org/fhir/StructureDefinition/Linkage|0.1.0 ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example"] ; # 
  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: Linkage example</b></p><a name=\"example\"> </a><a name=\"hcexample\"> </a><p><b>author</b>: <a href=\"Practitioner/f201\">Practitioner/f201</a></p><blockquote><p><b>item</b></p><p><b>type</b>: Source of Truth</p><p><b>resource</b>: <a href=\"Condition/example\">Severe burn of left ear (Date: 24-May 2012)</a></p></blockquote><blockquote><p><b>item</b></p><p><b>type</b>: Alternate Record</p><p><b>resource</b>: <a href=\"Condition/example-linkage\">Severe burn of left ear (Date: 24-May 2012)</a></p></blockquote></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:author [
     fhir:l <http://hl7.org/fhir/uv/pc-incubator/Practitioner/f201> ;
     fhir:reference [ fhir:v "Practitioner/f201" ]
  ] ; # 
  fhir:item ( [
     fhir:type [ fhir:v "source" ] ;
     fhir:resource [
       fhir:l <http://hl7.org/fhir/uv/pc-incubator/Condition/example> ;
       fhir:reference [ fhir:v "Condition/example" ] ;
       fhir:display [ fhir:v "Severe burn of left ear (Date: 24-May 2012)" ]
     ]
  ] [
     fhir:type [ fhir:v "alternate" ] ;
     fhir:resource [
       fhir:l <http://hl7.org/fhir/uv/pc-incubator/Condition/example-linkage> ;
       fhir:reference [ fhir:v "Condition/example-linkage" ] ;
       fhir:display [ fhir:v "Severe burn of left ear (Date: 24-May 2012)" ]
     ]
  ] ) . # 

<http://hl7.org/fhir/uv/pc-incubator/Practitioner/f201> a fhir:Uv .

<http://hl7.org/fhir/uv/pc-incubator/Condition/example> a fhir:Uv .

<http://hl7.org/fhir/uv/pc-incubator/Condition/example-linkage> a fhir:Uv .

# -------------------------------------------------------------------------------------

