@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://twcore.mohw.gov.tw/ig/twcore/Procedure/pro-appendectomy-example> a fhir:Procedure ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "pro-appendectomy-example"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/Procedure-twcore"^^xsd:anyURI ;
       fhir:l <https://twcore.mohw.gov.tw/ig/twcore/StructureDefinition/Procedure-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>：completed</p><p><b>處置或手術的識別碼</b>：闌尾切除術(Appendectomy) <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">( <a href=\"http://snomed.info/sct\">SNOMED CT</a>#80146002)</span></p><p><b>病人</b>：<a href=\"Patient-pat-example.html\">Patient/pat-example</a> \"陳加玲\"</p><p><b>執行時間</b>：2023-11-10T14:00:00</p><p><b>處置或手術的結果識別碼</b>：闌尾成功切除(Appendix absent) <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">( <a href=\"http://snomed.info/sct\">SNOMED CT</a>#300309008)</span></p><p><b>追蹤說明識別碼</b>： Bone immobilization <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\">( <a href=\"http://snomed.info/sct\">SNOMED CT</a>#274474001)</span></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:code [
     fhir:coding ( [
       a sct:80146002 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "80146002" ] ;
       fhir:display [ fhir:v "Appendectomy" ]
     ] ) ;
     fhir:text [ fhir:v "闌尾切除術" ]
  ] ; # 
  fhir:subject [
     fhir:l <https://twcore.mohw.gov.tw/ig/twcore/Patient/pat-example> ;
     fhir:reference [ fhir:v "Patient/pat-example" ]
  ] ; # 
  fhir:performed [
     a fhir:DateTime ;
     fhir:v "2023-11-10T14:00:00Z"^^xsd:dateTime
  ] ; # 
  fhir:outcome [
     fhir:coding ( [
       a sct:300309008 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "300309008" ] ;
       fhir:display [ fhir:v "Appendix absent" ]
     ] ) ;
     fhir:text [ fhir:v "闌尾成功切除" ]
  ] ; # 
  fhir:followUp ( [
     fhir:coding ( [
       a sct:274474001 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "274474001" ] ;
       fhir:display [ fhir:v "Bone immobilization" ]
     ] )
  ] ) . # 

# -------------------------------------------------------------------------------------

