@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 -------------------------------------------------------------------

<https://profiles.ihe.net/RAD/MADO/Patient/pat-mrn--1097192655> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "pat-mrn--1097192655"] ; # 
  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 pat-mrn--1097192655</b></p><a name=\"pat-mrn--1097192655\"> </a><a name=\"hcpat-mrn--1097192655\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">John DOE Male, DoB: 1977-05-30 ( Medical Record number: UV59569735 (use: official, ))</p><hr/></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:use [ fhir:v "official" ] ;
     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:display [ fhir:v "Medical Record number" ]
       ] )
     ] ;
     fhir:system [
       fhir:v "http://example.org/fhir/mrn-ids"^^xsd:anyURI ;
       fhir:l <http://example.org/fhir/mrn-ids>
     ] ;
     fhir:value [ fhir:v "UV59569735" ]
  ] ) ; # 
  fhir:name ( [
     fhir:text [ fhir:v "John DOE" ] ;
     fhir:family [ fhir:v "DOE" ] ;
     fhir:given ( [ fhir:v "John" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "1977-05-30"^^xsd:date] . # 

# -------------------------------------------------------------------------------------

