@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://twniis.cdc.gov.tw/twniis/Patient/patient-residentNumber-min> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "patient-residentNumber-min"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://twniis.cdc.gov.tw/twniis/StructureDefinition/patient-reporting-niis" ;
       fhir:index 0 ;
       fhir:link <https://twniis.cdc.gov.tw/twniis/StructureDefinition/patient-reporting-niis>
     ]
  ] ;
  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>：Permanent Resident Card Number <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">（ <a href=\"http://terminology.hl7.org/CodeSystem/v2-0203\">IdentifierType</a>#PRC）</span></p><p><b>居留證號</b>：A912345678（http://www.immigration.gov.tw）</p><p><b>姓名（usual）</b>：張小花</p><p><b>性別</b>：女性</p><p><b>出生日期</b>：1991-10-10</p><p><b>聯絡電話</b>：0912-345-678</p><p><b>居住地址</b>：臺北市中正區林森南路2號</p></div>"
  ] ;
  fhir:Patient.identifier [
     fhir:index 0 ;
     fhir:Identifier.use [ fhir:value "official" ] ;
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0 ;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ] ;
         fhir:Coding.code [ fhir:value "PRC" ]
       ]
     ] ;
     fhir:Identifier.system [ fhir:value "http://www.immigration.gov.tw" ] ;
     fhir:Identifier.value [ fhir:value "A912345678" ]
  ] ;
  fhir:Patient.name [
     fhir:index 0 ;
     fhir:HumanName.use [ fhir:value "usual" ] ;
     fhir:HumanName.text [ fhir:value "張小花" ]
  ] ;
  fhir:Patient.telecom [
     fhir:index 0 ;
     fhir:ContactPoint.system [ fhir:value "phone" ] ;
     fhir:ContactPoint.value [ fhir:value "0912-345-678" ]
  ] ;
  fhir:Patient.gender [ fhir:value "female"] ;
  fhir:Patient.birthDate [ fhir:value "1991-10-10"^^xsd:date] ;
  fhir:Patient.address [
     fhir:index 0 ;
     fhir:Address.text [ fhir:value "臺北市中正區林森南路2號" ]
  ] .

# - ontology header ------------------------------------------------------------

<https://twniis.cdc.gov.tw/twniis/Patient/patient-residentNumber-min.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

