臺灣中醫實作指引
0.1.0 - ci-build

臺灣中醫實作指引, published by 衛生福利部國家中醫藥研究所. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/nricmig/Nricm_TWCMIG/ and changes regularly. See the Directory of published versions

: 脈搏範例 - 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-heartrate-example-TWCM> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "obs-heartrate-example-TWCM"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://www.nricm.edu.tw/twcm/StructureDefinition/observationheartrate-twcm" ;
       fhir:index 0 ;
       fhir:link <https://www.nricm.edu.tw/twcm/StructureDefinition/observationheartrate-twcm>
     ]
  ] ;
  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 <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">( <a href=\"http://hl7.org/fhir/observation-status\">ObservationStatus</a>#final)</span></p><p><b>分類</b>:Vital Signs <span style=\"background: LightGoldenRodYellow;\">( <a href=\"http://hl7.org/fhir/R4/codesystem-observation-category.html\">Observation Category Codes</a>#vital-signs)</span></p><p><b>檢驗項目</b>:Heart rate <span style=\"background: LightGoldenRodYellow;\">( <a href=\"https://loinc.org/\">LOINC</a>#8867-4)</span></p><p><b>病人</b>:<a href=\"Patient-PatientTWCM-min.html\">Patient/PatientTWCM-min</a> \"陳美真\"</p><p><b>檢查者</b>:<a href=\"Practitioner-PractitionerTWCM-pro.html\">Practitioner/PractitionerTWCM-pro</a> \"張正原\"</p><p><b>執行日期</b>:2010-04-01</p><p><b>檢驗值</b>:17 /min</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 "vital-signs" ] ;
       fhir:Coding.display [ fhir:value "Vital Signs" ]
     ]
  ] ;
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a loinc:8867-4 ;
       fhir:Coding.system [ fhir:value "http://loinc.org" ] ;
       fhir:Coding.code [ fhir:value "8867-4" ] ;
       fhir:Coding.display [ fhir:value "Heart rate" ]
     ]
  ] ;
  fhir:Observation.subject [
     fhir:link <http://hl7.org/fhir/Patient/PatientTWCM-min> ;
     fhir:Reference.reference [ fhir:value "Patient/PatientTWCM-min" ]
  ] ;
  fhir:Observation.effectiveDateTime [ fhir:value "2010-04-01"^^xsd:date] ;
  fhir:Observation.performer [
     fhir:index 0 ;
     fhir:link <http://hl7.org/fhir/Practitioner/PractitionerTWCM-pro> ;
     fhir:Reference.reference [ fhir:value "Practitioner/PractitionerTWCM-pro" ]
  ] ;
  fhir:Observation.valueQuantity [
     fhir:Quantity.value [ fhir:value "17"^^xsd:decimal ] ;
     fhir:Quantity.unit [ fhir:value "/min" ] ;
     fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ] ;
     fhir:Quantity.code [ fhir:value "/min" ]
  ] .

<http://hl7.org/fhir/Patient/PatientTWCM-min> a fhir:Patient .

<http://hl7.org/fhir/Practitioner/PractitionerTWCM-pro> a fhir:Practitioner .

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

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