臺灣核心實作指引(TW Core IG)
1.0.0 - STU 1.0.0 Taiwan flag

臺灣核心實作指引(TW Core IG), published by 衛生福利部. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/TU9IVy1UV0NvcmVJRw/VFcgQ29yZSBJRyBJVFJJ/ and changes regularly. See the Directory of published versions

: 實驗室檢驗檢查-使用LOINC實驗室檢驗檢查代碼 - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://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 -------------------------------------------------------------------

<http://hl7.org/fhir/Observation/obs-loinc-example> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "obs-loinc-example"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/Observation-laboratoryResult-twcore" ;
       fhir:index 0 ;
       fhir:link <https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/Observation-laboratoryResult-twcore>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h3><b>檢驗檢查資料</b></h3><p><b>狀態</b>:final</p><p><b>分類</b>:Laboratory<span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ( <a href=\"http://hl7.org/fhir/R4/codesystem-observation-category.html\">Observation Category Codes</a>#laboratory)</span></p><p><b>檢驗項目</b>:Glucose [Mass/volume] in Serum or Plasma --2 hours post dose arginine<span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ( <a href=\"http://loinc.org\">LOINC檢驗檢查</a>#101309-3	)</span></p><p><b>病人</b>: <a href=\"Patient-pat-example.html\">Patient/pat-example</a> \"陳加玲\"</p><p><b>執行日期</b>:2022-07-31</p><p><b>負責機構</b>: <a href=\"Organization-org-hosp-example.html\">Organization/org-hosp-example</a> \"衛生福利部臺北醫院\"</p><p><b>檢驗值</b>:86 mg/dL</p></div>"
  ] ;
  fhir:Observation.status [ fhir:value "final"] ;
  fhir:Observation.category [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/observation-category" ] ;
       fhir:Coding.code [ fhir:value "laboratory" ]
     ]
  ] ;
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a loinc:101309-3 ;
       fhir:Coding.system [ fhir:value "http://loinc.org" ] ;
       fhir:Coding.code [ fhir:value "101309-3" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Glucose [Mass/volume] in Serum or Plasma --2 hours post dose arginine" ]
  ] ;
  fhir:Observation.subject [
     fhir:link <http://hl7.org/fhir/Patient/pat-example> ;
     fhir:Reference.reference [ fhir:value "Patient/pat-example" ]
  ] ;
  fhir:Observation.effectiveDateTime [ fhir:value "2022-07-31"^^xsd:date] ;
  fhir:Observation.performer [
     fhir:index 0 ;
     fhir:link <http://hl7.org/fhir/Organization/org-hosp-example> ;
     fhir:Reference.reference [ fhir:value "Organization/org-hosp-example" ]
  ] ;
  fhir:Observation.valueQuantity [
     fhir:Quantity.value [ fhir:value "86"^^xsd:decimal ] ;
     fhir:Quantity.unit [ fhir:value "mg/dL" ]
  ] .

<http://hl7.org/fhir/Patient/pat-example> a fhir:Patient .

<http://hl7.org/fhir/Organization/org-hosp-example> a fhir:Organization .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Observation/obs-loinc-example.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Observation/obs-loinc-example.ttl> .