復健訓練量表實作指引 (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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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

<http://hl7.org/fhir/Practitioner/ot-therapist-001> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "ot-therapist-001"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://build.fhir.org/ig/Rehabotics-Medical-Techology-Co/RTS-IG/StructureDefinition/Practitioner" ;
       fhir:index 0 ;
       fhir:link <https://build.fhir.org/ig/Rehabotics-Medical-Techology-Co/RTS-IG/StructureDefinition/Practitioner>
     ]
  ] ;
  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> \"職能治療師\"</p><p><b>執照編號:</b> \"ABC12345\"</p></div>"
  ] ;
  fhir:Practitioner.identifier [
     fhir:index 0 ;
     fhir:Identifier.system [ fhir:value "http://hospital.mohw.gov.tw/docID" ] ;
     fhir:Identifier.value [ fhir:value "ABC12345" ]
  ] ;
  fhir:Practitioner.active [ fhir:value "true"^^xsd:boolean] ;
  fhir:Practitioner.name [
     fhir:index 0 ;
     fhir:HumanName.use [ fhir:value "official" ] ;
     fhir:HumanName.family [ fhir:value "李" ] ;
     fhir:HumanName.given [
       fhir:value "小姐" ;
       fhir:index 0
     ]
  ] ;
  fhir:Practitioner.qualification [
     fhir:index 0 ;
     fhir:Practitioner.qualification.code [
       fhir:CodeableConcept.coding [
         fhir:index 0 ;
         a sct:224609002 ;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
         fhir:Coding.code [ fhir:value "224609002" ] ;
         fhir:Coding.display [ fhir:value "Complementary health worker" ]
       ] ;
       fhir:CodeableConcept.text [ fhir:value "職能治療師" ]
     ] ;
     fhir:Practitioner.qualification.issuer [
       fhir:Reference.display [ fhir:value "台灣職能治療師公會" ]
     ]
  ] .

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

<http://hl7.org/fhir/Practitioner/ot-therapist-001.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Practitioner/ot-therapist-001.ttl> .