@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://resmed.com/fhir/core/Patient/0da6f814-8696-4474-bded-e204d281e209> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "0da6f814-8696-4474-bded-e204d281e209"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://resmed.com/fhir/core/StructureDefinition/resmed-patient"^^xsd:anyURI ;
       fhir:link <http://resmed.com/fhir/core/StructureDefinition/resmed-patient>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Harry Jones </b> (no stated gender), DoB: 1990-10-25 ( EasyCare Number: <a href=\"http://terminology.hl7.org/5.0.0/NamingSystem-uri.html\">#</a>urn:uuid:0da6f814-8696-4474-bded-e204d281e209 (use: OFFICIAL))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Patient Links\">Links:</td><td colspan=\"3\"><ul><li>Managing Organization: <a href=\"Organization-airview-organization.html\">Organization/airview-organization</a> &quot;SleepyLabs Sleep Clinic&quot;</li></ul></td></tr></table></div>"
  ] ; # 
  fhir:identifier ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:type [
       fhir:coding ( [
         fhir:system [ fhir:v "http://terminology.resmed.com/CodeSystem/resmed-user-identifier"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "ECN" ]
       ] )
     ] ;
     fhir:system [ fhir:v "urn:ietf:rfc:3986"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "urn:uuid:0da6f814-8696-4474-bded-e204d281e209" ] ;
     fhir:assigner [
       fhir:display [ fhir:v "ResMed Corp." ]
     ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Jones" ] ;
     fhir:given ( [ fhir:v "Harry" ] )
  ] ) ; # 
  fhir:birthDate [ fhir:v "1990-10-25"^^xsd:date] ; # 
  fhir:managingOrganization [
     fhir:link <http://resmed.com/fhir/core/Organization/airview-organization> ;
     fhir:reference [ fhir:v "Organization/airview-organization" ]
  ] . # 

# -------------------------------------------------------------------------------------

