臺灣社政領域基礎實作指引
0.0.1 - ci-build

臺灣社政領域基礎實作指引, published by 衛生福利部社會及家庭署. This guide is not an authorized publication; it is the continuous build for version 0.0.1 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/sfaassn2025-source/base/ 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/PractitionerRole/pracrole-min> a fhir:PractitionerRole ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "pracrole-min"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://sfaa.gov.tw/base/StructureDefinition/PractitionerRole-twss-base" ;
       fhir:index 0 ;
       fhir:link <https://sfaa.gov.tw/base/StructureDefinition/PractitionerRole-twss-base>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h3><b>人員角色資料</b></h3><blockquote><p><b>角色識別碼</b>:ROLE-001 (https://example.org/twss/practitioner-role-id)</p></blockquote><p><b>角色狀態</b>:Active</p><p><b>人員</b>: <a href=\"Practitioner-prac-min.html\">Practitioner/prac-min</a> \"陳社工\"</p><p><b>服務機構</b>: <a href=\"Organization-org-min.html\">Organization/org-min</a> \"社家署示範機構\"</p><p><b>角色</b>:社工 <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">( <a href=\"http://snomed.info/sct\">SNOMED CT</a>#106328005)</span></p><p><b>任職期間</b>:2026-01-01至2026-12-31</p><p><b>角色聯絡方式</b>:Phone <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">( <a href=\"https://hl7.org/fhir/R4/valueset-contact-point-system.html\">ContactPointSystem</a>#phone)</span><br/><b>角色聯絡電話</b>:(Work)02-22334455</p></div>"
  ] ;
  fhir:PractitionerRole.identifier [
     fhir:index 0 ;
     fhir:Identifier.system [ fhir:value "https://example.org/twss/practitioner-role-id" ] ;
     fhir:Identifier.value [ fhir:value "ROLE-001" ]
  ] ;
  fhir:PractitionerRole.active [ fhir:value "true"^^xsd:boolean] ;
  fhir:PractitionerRole.period [
     fhir:Period.start [ fhir:value "2026-01-01"^^xsd:date ] ;
     fhir:Period.end [ fhir:value "2026-12-31"^^xsd:date ]
  ] ;
  fhir:PractitionerRole.practitioner [
     fhir:link <http://hl7.org/fhir/Practitioner/prac-min> ;
     fhir:Reference.reference [ fhir:value "Practitioner/prac-min" ]
  ] ;
  fhir:PractitionerRole.organization [
     fhir:link <http://hl7.org/fhir/Organization/org-min> ;
     fhir:Reference.reference [ fhir:value "Organization/org-min" ]
  ] ;
  fhir:PractitionerRole.code [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a sct:106328005 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "106328005" ] ;
       fhir:Coding.display [ fhir:value "Social worker" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "社工" ]
  ] ;
  fhir:PractitionerRole.telecom [
     fhir:index 0 ;
     fhir:ContactPoint.system [ fhir:value "phone" ] ;
     fhir:ContactPoint.value [ fhir:value "02-22334455" ] ;
     fhir:ContactPoint.use [ fhir:value "work" ]
  ] .

<http://hl7.org/fhir/Practitioner/prac-min> a fhir:Practitioner .

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

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

<http://hl7.org/fhir/PractitionerRole/pracrole-min.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/PractitionerRole/pracrole-min.ttl> .