@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/Practitioner/PractitionerTWCM-pro> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "PractitionerTWCM-pro"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://www.nricm.edu.tw/twcm/StructureDefinition/practitioner-twcm" ;
       fhir:index 0 ;
       fhir:link <https://www.nricm.edu.tw/twcm/StructureDefinition/practitioner-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>：National Person Identifier <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">（ <a href=\"http://terminology.hl7.org/CodeSystem/v2-0203\">Identifier Type Codes</a>#NNxxx ）</span><br/><b>身份證號（official）</b>：A135792648 （http://www.moi.gov.tw/）</p><p><b>姓名（official）</b>：張正原</p></div>"
  ] ;
  fhir:Practitioner.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 "NNxxx" ]
       ]
     ] ;
     fhir:Identifier.system [ fhir:value "http://www.moi.gov.tw" ] ;
     fhir:Identifier.value [ fhir:value "A135792648" ]
  ] ;
  fhir:Practitioner.name [
     fhir:index 0 ;
     fhir:HumanName.use [ fhir:value "official" ] ;
     fhir:HumanName.text [ fhir:value "張正原" ]
  ] .

# - ontology header ------------------------------------------------------------

<https://www.nricm.edu.tw/twcm/Practitioner/PractitionerTWCM-pro.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

