臺灣長期照顧實作指引(TW LTC IG)
1.0.0 - STU 1.0.0

臺灣長期照顧實作指引(TW LTC 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/Lorex/TWLongTermCare_IG_Build/ and changes regularly. See the Directory of published versions

: 長期照顧就醫紀錄範例 - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Encounter/ltc-encounter-example> a fhir:Encounter ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "ltc-encounter-example"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Encounter ltc-encounter-example</b></p><a name=\"ltc-encounter-example\"> </a><a name=\"hcltc-encounter-example\"> </a><p><b>status</b>: Finished</p><p><b>class</b>: <a href=\"http://terminology.hl7.org/7.3.0/CodeSystem-v3-ActCode.html#v3-ActCode-AMB\">ActCode: AMB</a> (ambulatory)</p><p><b>subject</b>: <a href=\"Patient-ltc-patient-referral-chen-ming-hui-example.html\">陳明慧 Female, DoB: 1945-03-15 ( National Person Identifier (TWN): A123456789 (use: official, ))</a></p><p><b>period</b>: 2024-01-10 09:00:00+0800 --&gt; 2024-01-10 11:30:00+0800</p><p><b>reasonCode</b>: <span title=\"Codes:{http://snomed.info/sct 44054006}\">糖尿病追蹤檢查</span></p><p><b>serviceProvider</b>: <a href=\"Organization-ltc-organization-example.html\">Organization 新北市私立安康老人長期照顧中心(養護型)</a></p></div>"
  ] ;
  fhir:Encounter.status [ fhir:value "finished"] ;
  fhir:Encounter.class [
     fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ] ;
     fhir:Coding.code [ fhir:value "AMB" ] ;
     fhir:Coding.display [ fhir:value "ambulatory" ]
  ] ;
  fhir:Encounter.subject [
     fhir:link <http://hl7.org/fhir/Patient/ltc-patient-referral-chen-ming-hui-example> ;
     fhir:Reference.reference [ fhir:value "Patient/ltc-patient-referral-chen-ming-hui-example" ]
  ] ;
  fhir:Encounter.period [
     fhir:Period.start [ fhir:value "2024-01-10T09:00:00+08:00"^^xsd:dateTime ] ;
     fhir:Period.end [ fhir:value "2024-01-10T11:30:00+08:00"^^xsd:dateTime ]
  ] ;
  fhir:Encounter.reasonCode [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a sct:44054006 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "44054006" ] ;
       fhir:Coding.display [ fhir:value "Diabetes mellitus type 2" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "糖尿病追蹤檢查" ]
  ] ;
  fhir:Encounter.serviceProvider [
     fhir:link <http://hl7.org/fhir/Organization/ltc-organization-example> ;
     fhir:Reference.reference [ fhir:value "Organization/ltc-organization-example" ]
  ] .

<http://hl7.org/fhir/Patient/ltc-patient-referral-chen-ming-hui-example> a fhir:Patient .

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

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

<http://hl7.org/fhir/Encounter/ltc-encounter-example.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Encounter/ltc-encounter-example.ttl> .