@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://twcore.mohw.gov.tw/ig/twcore/Organization/org-example> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "org-example"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/Organization-twcore"^^xsd:anyURI ;
       fhir:l <https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/Organization-twcore>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h3><b>機構基本資料</b></h3><p><b>機構名稱</b>：國立臺灣大學醫學院附設醫院</p><p><b>機構識別碼</b>：0132010014 (https://twcore.mohw.gov.tw/tsfhir/CodeSystem/organization-identifier-tw)</p><p><b>識別碼型別</b>：Provider number<span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">（ <a href=\"http://terminology.hl7.org/CodeSystem/v2-0203\">IdentifierType</a>#PRN）</span></p><p><b>機構的紀錄（active）</b>：使用中</p><p><b>聯絡方式</b>：Phone<span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> （ <a href=\"https://hl7.org/fhir/R4/valueset-contact-point-system.html\">ContactPointSystem</a>#phone）</span><br/><b>聯絡信箱（work）</b>：03-369-9721</p><p><b>機構地址（work）</b>：(330)桃園市桃園區中山路1492號<br/><b>郵遞區號（postalCode）</b>：330 <b>縣/市（district）</b>：桃園市<br/><b>鄉/鎮/市/區（city）</b>：桃園區<br/><b>路/街（line）</b>：中山路<br/><b>號（number）</b>[extension: <a href=\"StructureDefinition-tw-number.html\">tw-number</a>]：1492號<br/><b>國家（country）</b>：臺灣<br/></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:type [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ;
           fhir:l <http://terminology.hl7.org/CodeSystem/v2-0203>
         ] ;
         fhir:code [ fhir:v "PRN" ]
       ] )
     ] ;
     fhir:system [
       fhir:v "https://twcore.mohw.gov.tw/ig/twcore/CodeSystem/organization-identifier-tw"^^xsd:anyURI ;
       fhir:l <https://twcore.mohw.gov.tw/ig/twcore/CodeSystem/organization-identifier-tw>
     ] ;
     fhir:value [ fhir:v "0132010014" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:name [ fhir:v "衛生福利部桃園醫院"] ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "03-369-9721" ] ;
     fhir:use [ fhir:v "work" ]
  ] ) ; # 
  fhir:address ( [
     fhir:extension ( [
       fhir:url [
         fhir:v "https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/tw-number"^^xsd:anyURI ;
         fhir:l <https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/tw-number>
       ] ;
       fhir:value [
         a fhir:String ;
         fhir:v "1492號"
       ]
     ] ) ;
     fhir:use [ fhir:v "work" ] ;
     fhir:text [ fhir:v "330桃園市桃園區中山路1492號" ] ;
     fhir:line ( [ fhir:v "中山路" ] ) ;
     fhir:city [ fhir:v "桃園區" ] ;
     fhir:district [ fhir:v "桃園市" ] ;
     fhir:postalCode [ fhir:v "330" ] ;
     fhir:country [ fhir:v "TW" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

