@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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://twcore.mohw.gov.tw/ig/twcore/MessageHeader/mes-request-example> a fhir:MessageHeader ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "mes-request-example"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/MessageHeader-twcore"^^xsd:anyURI ;
       fhir:l <https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/MessageHeader-twcore>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h3><b>訊息表頭－request</b></h3><p><b>訊息事件代碼</b>: Laboratory report <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">( <a href=\"http://loinc.org\">LOINC</a>#11502-2)</span></p><p><b>訊息發送來源</b>: https://tpech.gov.taipei/</p><p><b>訊息內容</b>：</p><blockquote><p><b>檢驗報告</b>：<a href=\"DiagnosticReport-dia-example.html\">DiagnosticReport/dia-example</a></p><p><b>病人</b>：<a href=\"Patient-pat-example.html\">Patient/pat-example</a> \"陳加玲\"</p><p><b>檢驗檢查資料</b>：<a href=\"Observation-obs-lab-example.html\">Observation/obs-lab-example</a></p></blockquote></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:event [
     a fhir:Coding, loinc:11502-2 ;
     fhir:system [
       fhir:v "http://loinc.org"^^xsd:anyURI ;
       fhir:l <http://loinc.org>
     ] ;
     fhir:code [ fhir:v "11502-2" ] ;
     fhir:display [ fhir:v "Laboratory report" ]
  ] ; # 
  fhir:source [
     fhir:endpoint [
       fhir:v "https://tpech.gov.taipei/"^^xsd:anyURI ;
       fhir:l <https://tpech.gov.taipei/>
     ]
  ] ; # 
  fhir:focus ( [
     fhir:l <https://twcore.mohw.gov.tw/ig/twcore/DiagnosticReport/dia-example> ;
     fhir:reference [ fhir:v "DiagnosticReport/dia-example" ]
  ] [
     fhir:l <https://twcore.mohw.gov.tw/ig/twcore/Patient/pat-example> ;
     fhir:reference [ fhir:v "Patient/pat-example" ]
  ] [
     fhir:l <https://twcore.mohw.gov.tw/ig/twcore/Observation/obs-lab-example> ;
     fhir:reference [ fhir:v "Observation/obs-lab-example" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

