@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://www.nricm.edu.tw/twcm/Encounter/EncounterTWCM-min> a fhir:Encounter ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "EncounterTWCM-min"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://www.nricm.edu.tw/twcm/StructureDefinition/encounter-twcm" ;
       fhir:index 0 ;
       fhir:link <https://www.nricm.edu.tw/twcm/StructureDefinition/encounter-twcm>
     ]
  ] ;
  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>：Serial Number <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">（ <a href=\"http://terminology.hl7.org/CodeSystem/v2-0203\">Identifier Type Codes</a>#SNO</span><br/><b>掛號序號</b>：0035</p><p><b>就醫分類</b>：ambulatory <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">( <a href=\"https://terminology.hl7.org/4.0.0/ValueSet-v3-ActEncounterCode.html\">ActEncounterCode</a>#AMB)</span></p><p><b>就醫現況</b>：Finished <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">( <a href=\"http://hl7.org/fhir/encounter-status\">EncounterStatus</a>#finished)</span></p><p><b>看診科別</b>：中醫科 <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">( <a href=\"https://twcore.mohw.gov.tw/ig/twcore/CodeSystem/medical-consultation-department-nhi-tw\">臺灣健保署就醫科別</a>#60)</span></p><p><b>掛號(報到)時間</b>：2010-10-10 17:30:00-0500</p><p><b>就醫身份[extension: <a href=\"StructureDefinition-medicalidentity-twcm.html\">medicalidentity</a>]</b>：健保</p><p><b>病人</b>：<a href=\"Patient-PatientTWCM-min.html\">Patient/PatientTWCM-min</a> \"陳美真\"</p><p><b>看診醫師身分證字號</b>： <a href=\"Practitioner-PractitionerTWCM-pro.html\">Practitioner/PractitionerTWCM-pro</a> \"A135792648\"<br/><b>看診醫師姓名</b>： <a href=\"Practitioner-PractitionerTWCM-pro.html\">Practitioner/PractitionerTWCM-pro</a> \"張正原\"</p></div>"
  ] ;
  fhir:DomainResource.extension [
     fhir:index 0 ;
     fhir:Extension.url [ fhir:value "https://www.nricm.edu.tw/twcm/StructureDefinition/medicalidentity-twcm" ] ;
     fhir:Extension.valueCodeableConcept [
       fhir:CodeableConcept.text [ fhir:value "健保" ]
     ]
  ] ;
  fhir:Encounter.identifier [
     fhir:index 0 ;
     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 "SNO" ]
       ]
     ] ;
     fhir:Identifier.system [ fhir:value "https://www.nricm.edu.tw/twcm/identifiers/encounter" ] ;
     fhir:Identifier.value [ fhir:value "0035" ]
  ] ;
  fhir:Encounter.status [ fhir:value "finished"] ;
  fhir:Encounter.class [
     fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ] ;
     fhir:Coding.code [ fhir:value "AMB" ] ;
     fhir:Coding.display [ fhir:value "ambulatory" ]
  ] ;
  fhir:Encounter.serviceType [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "https://twcore.mohw.gov.tw/ig/twcore/CodeSystem/medical-treatment-department-nhi-tw" ] ;
       fhir:Coding.code [ fhir:value "60" ] ;
       fhir:Coding.display [ fhir:value "中醫一般科" ]
     ]
  ] ;
  fhir:Encounter.subject [
     fhir:link <https://www.nricm.edu.tw/twcm/Patient/PatientTWCM-min> ;
     fhir:Reference.reference [ fhir:value "Patient/PatientTWCM-min" ]
  ] ;
  fhir:Encounter.participant [
     fhir:index 0 ;
     fhir:Encounter.participant.individual [
       fhir:link <https://www.nricm.edu.tw/twcm/Practitioner/PractitionerTWCM-pro> ;
       fhir:Reference.reference [ fhir:value "Practitioner/PractitionerTWCM-pro" ]
     ]
  ] ;
  fhir:Encounter.period [
     fhir:Period.start [ fhir:value "2010-10-10T17:30:00-05:00"^^xsd:dateTime ]
  ] .

# - ontology header ------------------------------------------------------------

<https://www.nricm.edu.tw/twcm/Encounter/EncounterTWCM-min.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

