@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/patient-match-patient> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "patient-match-patient"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://resmed.com/fhir/core/StructureDefinition/resmed-patient-match-patient"^^xsd:anyURI ;
       fhir:link <http://resmed.com/fhir/core/StructureDefinition/resmed-patient-match-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>Rose Namajunas </b> (no stated gender), DoB: 1990-10-25</p><hr/></div>"
  ] ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Namajunas" ] ;
     fhir:given ( [ fhir:v "Rose" ] )
  ] ) ; # 
  fhir:birthDate [ fhir:v "1990-10-25"^^xsd:date] . # 

# -------------------------------------------------------------------------------------

