AI Transparency on FHIR
1.0.0-current - STU1 Ballot International flag

AI Transparency on FHIR, published by HL7 International / Electronic Health Records. This guide is not an authorized publication; it is the continuous build for version 1.0.0-current built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/aitransparency-ig/ and changes regularly. See the Directory of published versions

: Appendectomy Procedure

Page standards status: Informative

Raw ttl | Download


@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Procedure/proc> a fhir:Procedure ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "proc"] ;
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "1" ]
  ] ;
  fhir:Resource.language [ fhir:value "en"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Procedure proc</b></p><a name=\"proc\"> </a><a name=\"hcproc\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">version: 1</p></div><p><b>status</b>: Completed</p><p><b>code</b>: <span title=\"Codes:{http://snomed.info/sct 80146002}\">Appendectomy</span></p><p><b>subject</b>: <a href=\"http://server.example.org/fhir/Patient/pat\">http://server.example.org/fhir/Patient/pat</a></p><p><b>performed</b>: 2013-04-05</p><p><b>recorder</b>: <a href=\"http://server.example.org/fhir/Practitioner/pract\">http://server.example.org/fhir/Practitioner/pract</a></p><h3>Performers</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Actor</b></td></tr><tr><td style=\"display: none\">*</td><td><a href=\"http://server.example.org/fhir/Practitioner/pract\">http://server.example.org/fhir/Practitioner/pract</a></td></tr></table><p><b>reasonCode</b>: <span title=\"Codes:\">Generalized abdominal pain 24 hours. Localized in RIF with rebound and guarding</span></p><p><b>followUp</b>: <span title=\"Codes:\">ROS 5 days  - 2013-04-10</span></p><p><b>note</b>: </p><blockquote><div><p>Routine Appendectomy. Appendix was inflamed and in retro-caecal position</p>\n</div></blockquote></div>"
  ] ;
  fhir:Procedure.status [ fhir:value "completed"] ;
  fhir:Procedure.code [
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       a sct:80146002 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "80146002" ] ;
       fhir:Coding.display [ fhir:value "Excision of appendix" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Appendectomy" ]
  ] ;
  fhir:Procedure.subject [
     fhir:link <http://server.example.org/fhir/Patient/pat> ;
     fhir:Reference.reference [ fhir:value "http://server.example.org/fhir/Patient/pat" ]
  ] ;
  fhir:Procedure.performedDateTime [ fhir:value "2013-04-05"^^xsd:date] ;
  fhir:Procedure.recorder [
     fhir:link <http://server.example.org/fhir/Practitioner/pract> ;
     fhir:Reference.reference [ fhir:value "http://server.example.org/fhir/Practitioner/pract" ]
  ] ;
  fhir:Procedure.performer [
     fhir:index -1 ;
     fhir:Procedure.performer.actor [
       fhir:link <http://server.example.org/fhir/Practitioner/pract> ;
       fhir:Reference.reference [ fhir:value "http://server.example.org/fhir/Practitioner/pract" ]
     ]
  ] ;
  fhir:Procedure.reasonCode [
     fhir:index -1 ;
     fhir:CodeableConcept.text [ fhir:value "Generalized abdominal pain 24 hours. Localized in RIF with rebound and guarding" ]
  ] ;
  fhir:Procedure.followUp [
     fhir:index -1 ;
     fhir:CodeableConcept.text [ fhir:value "ROS 5 days  - 2013-04-10" ]
  ] ;
  fhir:Procedure.note [
     fhir:index -1 ;
     fhir:Annotation.text [ fhir:value "Routine Appendectomy. Appendix was inflamed and in retro-caecal position" ]
  ] .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Procedure/proc.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Procedure/proc.ttl> .