臺灣社政領域基礎實作指引
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 xsd: <http://www.w3.org/2001/XMLSchema#> .

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

<http://hl7.org/fhir/DocumentReference/official-document-min> a fhir:DocumentReference ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "official-document-min"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://sfaa.gov.tw/base/StructureDefinition/DocumentReference-twss-base" ;
       fhir:index 0 ;
       fhir:link <https://sfaa.gov.tw/base/StructureDefinition/DocumentReference-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><p><b>公文文號</b>:衛救字第1130012345號</p><p><b>公文類型</b>:主管機關核備</p><p><b>公文日期</b>:2026-07-29</p><p><b>關聯補助申請</b>:<a href=\"Claim-claim-min.html\">Claim/claim-min</a></p></div>"
  ] ;
  fhir:DocumentReference.masterIdentifier [
     fhir:Identifier.system [ fhir:value "https://sfaa.gov.tw/base/identifier/official-document-number" ] ;
     fhir:Identifier.value [ fhir:value "衛救字第1130012345號" ]
  ] ;
  fhir:DocumentReference.status [ fhir:value "current"] ;
  fhir:DocumentReference.type [
     fhir:CodeableConcept.text [ fhir:value "主管機關核備" ]
  ] ;
  fhir:DocumentReference.subject [
     fhir:link <http://hl7.org/fhir/Patient/pat-min> ;
     fhir:Reference.reference [ fhir:value "Patient/pat-min" ]
  ] ;
  fhir:DocumentReference.date [ fhir:value "2026-07-29T09:00:00+08:00"^^xsd:dateTime] ;
  fhir:DocumentReference.content [
     fhir:index 0 ;
     fhir:DocumentReference.content.attachment [
       fhir:Attachment.contentType [ fhir:value "application/pdf" ] ;
       fhir:Attachment.url [ fhir:value "https://example.org/twss/documents/1130012345.pdf" ] ;
       fhir:Attachment.creation [ fhir:value "2026-07-29"^^xsd:date ]
     ]
  ] ;
  fhir:DocumentReference.context [
     fhir:DocumentReference.context.related [
       fhir:index 0 ;
       fhir:link <http://hl7.org/fhir/Claim/claim-min> ;
       fhir:Reference.reference [ fhir:value "Claim/claim-min" ]
     ]
  ] .

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

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

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

<http://hl7.org/fhir/DocumentReference/official-document-min.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/DocumentReference/official-document-min.ttl> .