@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 -------------------------------------------------------------------

<https://sfaa.gov.tw/base/Condition/condition-min> a fhir:Condition ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "condition-min"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://sfaa.gov.tw/base/StructureDefinition/Condition-twss-base" ;
       fhir:index 0 ;
       fhir:link <https://sfaa.gov.tw/base/StructureDefinition/Condition-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>ICD 診斷</b>：Autistic disorder <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">（ <a href=\"https://twcore.mohw.gov.tw/ig/twcore/0.3.2/CodeSystem-icd-10-cm-2023-tw.html\">ICD-10-CM 2023 臺灣版</a>#F84.0）</span></p><p><b>狀況文字</b>：自閉症</p><p><b>健康狀況選項</b>：發展遲緩 <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">（ <a href=\"CodeSystem-twss-health-status-option.html\">健康狀況選項</a>#5）</span></p><p><b>健康狀況分級</b>：尚可（體弱） <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">（ <a href=\"CodeSystem-twss-health-status-level.html\">健康狀況分級</a>#2）</span></p><p><b>個案</b>： <a href=\"Patient-pat-min.html\">Patient/pat-min</a> \"王小明\"</p><p><b>鑑定日期</b>：2026-06-30</p></div>"
  ] ;
  fhir:Condition.severity [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "https://sfaa.gov.tw/base/CodeSystem/twss-health-status-level" ] ;
       fhir:Coding.code [ fhir:value "2" ] ;
       fhir:Coding.display [ fhir:value "尚可（體弱）" ]
     ]
  ] ;
  fhir:Condition.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "https://twcore.mohw.gov.tw/ig/twcore/CodeSystem/icd-10-cm-2023-tw" ] ;
       fhir:Coding.code [ fhir:value "F84.0" ] ;
       fhir:Coding.display [ fhir:value "Autistic disorder" ]
     ], [
       fhir:index 1 ;
       fhir:Coding.system [ fhir:value "https://sfaa.gov.tw/base/CodeSystem/twss-health-status-option" ] ;
       fhir:Coding.code [ fhir:value "5" ] ;
       fhir:Coding.display [ fhir:value "發展遲緩" ]
     ]
  ] ;
  fhir:Condition.subject [
     fhir:link <https://sfaa.gov.tw/base/Patient/pat-min> ;
     fhir:Reference.reference [ fhir:value "Patient/pat-min" ]
  ] ;
  fhir:Condition.recordedDate [ fhir:value "2026-06-30"^^xsd:date] .

# - ontology header ------------------------------------------------------------

<https://sfaa.gov.tw/base/Condition/condition-min.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

