@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/oo-incubator/Patient/pat1> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "pat1"] ; # 
  fhir:language [ fhir:v "en"] ; # 
  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 pat1</b></p><a name=\"pat1\"> </a><a name=\"hcpat1\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Donald Duck (official) Male, DoB Unknown ( Medical record number (use: usual, ))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td colspan=\"3\">true</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Nominated Contact: Employer\">Employer:</td><td colspan=\"3\"><ul><li>Organization:<a href=\"Organization-A9999.html\">Example Processing Facility</a></li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Patient Links\">Links:</td><td colspan=\"3\"><ul><li>Managing Organization: <a href=\"Organization-A9999.html\">Example Processing Facility</a></li><li>Also see: <a href=\"Patient-pat-example.html\">Jim  Male, DoB: 1974-12-25 ( Medical record number (use: usual, period: 2001-05-06 --&gt; (ongoing)))</a></li></ul></td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:use [ fhir:v "usual" ] ;
     fhir:type [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ;
           fhir:l <http://terminology.hl7.org/CodeSystem/v2-0203>
         ] ;
         fhir:code [ fhir:v "MR" ]
       ] )
     ] ;
     fhir:system [
       fhir:v "urn:oid:0.1.2.3.4.5.6.7"^^xsd:anyURI ;
       fhir:l <urn:oid:0.1.2.3.4.5.6.7>
     ] ;
     fhir:value [ fhir:v "654321" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:name ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:family [ fhir:v "Duck" ] ;
     fhir:given ( [ fhir:v "Donald" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:contact ( [
     fhir:relationship ( [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://terminology.hl7.org/CodeSystem/v2-0131"^^xsd:anyURI ;
           fhir:l <http://terminology.hl7.org/CodeSystem/v2-0131>
         ] ;
         fhir:code [ fhir:v "E" ]
       ] )
     ] ) ;
     fhir:organization [
       fhir:l <http://hl7.org/fhir/uv/oo-incubator/Organization/A9999> ;
       fhir:reference [ fhir:v "Organization/A9999" ] ;
       fhir:display [ fhir:v "Example Processing Facility" ]
     ]
  ] ) ; # 
  fhir:managingOrganization [
     fhir:l <http://hl7.org/fhir/uv/oo-incubator/Organization/A9999> ;
     fhir:reference [ fhir:v "Organization/A9999" ] ;
     fhir:display [ fhir:v "Example Processing Facility" ]
  ] ; # 
  fhir:link ( [
     fhir:other [
       fhir:l <http://hl7.org/fhir/uv/oo-incubator/Patient/pat-example> ;
       fhir:reference [ fhir:v "Patient/pat-example" ]
     ] ;
     fhir:type [ fhir:v "seealso" ]
  ] ) . # 

<http://hl7.org/fhir/uv/oo-incubator/Organization/A9999> a fhir:Uv .

<http://hl7.org/fhir/uv/oo-incubator/Patient/pat-example> a fhir:Uv .

# -------------------------------------------------------------------------------------

