@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-passport-min> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "patient-passport-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>：Passport number <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">（ <a href=\"http://terminology.hl7.org/CodeSystem/v2-0203\">IdentifierType</a>#PPN）</span></p><p><b>護照號碼</b>：888800371（http://hl7.org/fhir/sid/passport-TWN）</p><p><b>姓名（usual）</b>：王大明</p><p><b>性別</b>：男性</p><p><b>出生日期</b>：1983-02-15</p><p><b>聯絡電話</b>：0934-567-890</p><p><b>居住地址</b>：臺北市中正區林森南路3號</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 "PPN" ]
       ]
     ] ;
     fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/passport-TWN" ] ;
     fhir:Identifier.value [ fhir:value "888800371" ]
  ] ;
  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 "0934-567-890" ]
  ] ;
  fhir:Patient.gender [ fhir:value "male"] ;
  fhir:Patient.birthDate [ fhir:value "1983-02-15"^^xsd:date] ;
  fhir:Patient.address [
     fhir:index 0 ;
     fhir:Address.text [ fhir:value "臺北市中正區林森南路3號" ]
  ] .

# - ontology header ------------------------------------------------------------

<https://twniis.cdc.gov.tw/twniis/Patient/patient-passport-min.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

