復健訓練量表實作指引 (Rehabilitation Training Scale Implementation Guide)
0.2.0 - ci-build

復健訓練量表實作指引 (Rehabilitation Training Scale Implementation Guide), published by Kimsber. This guide is not an authorized publication; it is the continuous build for version 0.2.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/Rehabotics-Medical-Techology-Co/RTS-IG/ 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 xsd: <http://www.w3.org/2001/XMLSchema#> .

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

<http://hl7.org/fhir/Organization/OrganizationExample> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "OrganizationExample"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://build.fhir.org/ig/Rehabotics-Medical-Techology-Co/RTS-IG/StructureDefinition/Organization" ;
       fhir:index 0 ;
       fhir:link <https://build.fhir.org/ig/Rehabotics-Medical-Techology-Co/RTS-IG/StructureDefinition/Organization>
     ]
  ] ;
  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> \"台灣健康醫院\"</p><p><b>機構代碼:</b> \"XYZ54321\"</p><p><b>聯絡電話:</b> \"02-22765566\"</p></div>"
  ] ;
  fhir:Organization.identifier [
     fhir:index 0 ;
     fhir:Identifier.system [ fhir:value "http://hospital.mohw.gov.tw/orgID" ] ;
     fhir:Identifier.value [ fhir:value "XYZ54321" ]
  ] ;
  fhir:Organization.active [ fhir:value "true"^^xsd:boolean] ;
  fhir:Organization.name [ fhir:value "台灣健康醫院"] ;
  fhir:Organization.telecom [
     fhir:index 0 ;
     fhir:ContactPoint.system [ fhir:value "phone" ] ;
     fhir:ContactPoint.value [ fhir:value "02-22765566" ]
  ] ;
  fhir:Organization.address [
     fhir:index 0 ;
     fhir:Address.line [
       fhir:value "123 健康路" ;
       fhir:index 0
     ] ;
     fhir:Address.city [ fhir:value "臺北市" ] ;
     fhir:Address.state [ fhir:value "中正區" ] ;
     fhir:Address.postalCode [ fhir:value "100" ]
  ] .

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

<http://hl7.org/fhir/Organization/OrganizationExample.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Organization/OrganizationExample.ttl> .