@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 -------------------------------------------------------------------

<https://sfaa.gov.tw/base/ServiceRequest/servicerequest-base> a fhir:ServiceRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "servicerequest-base"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://sfaa.gov.tw/base/StructureDefinition/ServiceRequest-twss-base" ;
       fhir:index 0 ;
       fhir:link <https://sfaa.gov.tw/base/StructureDefinition/ServiceRequest-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>：BASE-APP-2026-0001</p></blockquote><p><b>申請狀態</b>：Active</p><p><b>申請意圖</b>：Order</p><p><b>服務請求類型</b>：Social service procedure <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">（ <a href=\"http://snomed.info/id/410606002\">SNOMED CT</a>#410606002）</span></p><p><b>申請/服務項目</b>：兒童發展通報轉介及個案管理服務 <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">（ <a href=\"CodeSystem-twss-episode-of-care-type.html\">TWSS 個案服務或補助案件類型</a>#early-intervention）</span></p><p><b>個案</b>： <a href=\"Patient-pat-min.html\">Patient/pat-min</a> \"王小明\"</p><p><b>申請日期時間</b>：2026-06-30T09:00:00+08:00</p></div>"
  ] ;
  fhir:ServiceRequest.identifier [
     fhir:index 0 ;
     fhir:Identifier.type [
       fhir:CodeableConcept.text [ fhir:value "申請案件編號" ]
     ] ;
     fhir:Identifier.system [ fhir:value "https://example.org/twss/application-action-id" ] ;
     fhir:Identifier.value [ fhir:value "BASE-APP-2026-0001" ]
  ] ;
  fhir:ServiceRequest.status [ fhir:value "active"] ;
  fhir:ServiceRequest.intent [ fhir:value "order"] ;
  fhir:ServiceRequest.category [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a sct:410606002 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "410606002" ] ;
       fhir:Coding.display [ fhir:value "Social service procedure (procedure)" ]
     ]
  ] ;
  fhir:ServiceRequest.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "https://sfaa.gov.tw/base/CodeSystem/twss-episode-of-care-type" ] ;
       fhir:Coding.code [ fhir:value "early-intervention" ] ;
       fhir:Coding.display [ fhir:value "兒童發展通報轉介及個案管理服務" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "兒童發展通報轉介及個案管理服務" ]
  ] ;
  fhir:ServiceRequest.subject [
     fhir:link <https://sfaa.gov.tw/base/Patient/pat-min> ;
     fhir:Reference.reference [ fhir:value "Patient/pat-min" ]
  ] ;
  fhir:ServiceRequest.authoredOn [ fhir:value "2026-06-30T09:00:00+08:00"^^xsd:dateTime] .

# - ontology header ------------------------------------------------------------

<https://sfaa.gov.tw/base/ServiceRequest/servicerequest-base.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

