This page is part of the 電子病歷交換單張實作指引(EMR-IG) (v0.1.0: Releases) based on FHIR (HL7® FHIR® Standard) R4. This is the current published version in its permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
: 門診病歷 實驗室檢查紀錄 example - TTL Representation
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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 -------------------------------------------------------------------
a fhir:Observation ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "PMR-Obs3"] ; #
fhir:meta [
( fhir:profile [
fhir:v "https://twcore.mohw.gov.tw/ig/emr/StructureDefinition/PMRObservationLabResults"^^xsd:anyURI ;
fhir:link <https://twcore.mohw.gov.tw/ig/emr/StructureDefinition/PMRObservationLabResults> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Observation PMR-Obs3</b></p><a name=\"PMR-Obs3\"> </a><a name=\"hcPMR-Obs3\"> </a><a name=\"PMR-Obs3-en-US\"> </a><p><b>status</b>: Final</p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 19146-0}\">實驗室檢查紀錄</span></p><p><b>subject</b>: <a href=\"Patient-PMR-Pat2.html\">測試員 Male, DoB: 1997-01-01 ( National Person Identifier where the xxx is the ISO table 3166 3-character (alphabetic) country code (use: official, ))</a></p><p><b>effective</b>: 2023-10-01 16:52:00+0800</p><p><b>performer</b>: <a href=\"Practitioner-PMR-Pra18.html\">Practitioner 賴一施</a></p><blockquote><p><b>component</b></p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 10331-7}\">Rh</span></p><p><b>value</b>: <span title=\"Codes:{http://loinc.org LA6576-8}\">Rh positive</span></p></blockquote><blockquote><p><b>component</b></p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 883-9}\">ABO group</span></p><p><b>value</b>: <span title=\"Codes:{http://loinc.org LA19709-7}\">B</span></p></blockquote></div>"
] ; #
fhir:status [ fhir:v "final"] ; #
fhir:code [
( fhir:coding [
a loinc:19146-0 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "19146-0" ] ;
fhir:display [ fhir:v "Referral lab test results" ] ] ) ;
fhir:text [ fhir:v "實驗室檢查紀錄" ]
] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/PMR-Pat2" ]
] ; #
fhir:effective [ fhir:v "2023-10-01T16:52:00+08:00"^^xsd:dateTime] ; #
fhir:performer ( [
fhir:reference [ fhir:v "Practitioner/PMR-Pra18" ]
] ) ; #
fhir:component ( [
fhir:code [
( fhir:coding [
a loinc:10331-7 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "10331-7" ] ;
fhir:display [ fhir:v "Rh [Type] in Blood" ] ] ) ;
fhir:text [ fhir:v "Rh" ] ] ;
fhir:value [
a fhir:CodeableConcept ;
( fhir:coding [
a loinc:LA6576-8 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "LA6576-8" ] ;
fhir:display [ fhir:v "Positive" ] ] ) ;
fhir:text [ fhir:v "Rh positive" ] ]
] [
fhir:code [
( fhir:coding [
a loinc:883-9 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "883-9" ] ;
fhir:display [ fhir:v "ABO group [Type] in Blood" ] ] ) ;
fhir:text [ fhir:v "ABO group" ] ] ;
fhir:value [
a fhir:CodeableConcept ;
( fhir:coding [
a loinc:LA19709-7 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "LA19709-7" ] ;
fhir:display [ fhir:v "Group B" ] ] ) ;
fhir:text [ fhir:v "B" ] ]
] ) . #