Snapshot 3: Connectathon 32 Base

This is Snapshot #3 for FHIR R5, released to support Connectathon 32. For a full list of available versions, see the Directory of published versions.

Example Procedure/colonoscopy (Turtle)

Patient Care Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Encounter, Patient, Practitioner, RelatedPerson

Raw Turtle (+ also see Turtle/RDF Format Specification)

Example of colonoscopy procedure with complication

@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 -------------------------------------------------------------------

[a fhir:Procedure;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "colonoscopy"]; # 
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Colonoscopy with complication</div>"
  ]; # 
  fhir:Procedure.identifier [
     fhir:index 0;
     fhir:Identifier.value [ fhir:value "12345" ]
  ]; # 
  fhir:Procedure.status [ fhir:value "completed"]; # 
  fhir:Procedure.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:73761001;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "73761001" ];
       fhir:Coding.display [ fhir:value "Colonoscopy (procedure)" ]
     ];
     fhir:CodeableConcept.text [ fhir:value "Colonoscopy" ]
  ]; # 
  fhir:Procedure.subject [
     fhir:Reference.reference [ fhir:value "Patient/example" ]
  ]; # 
  fhir:Procedure.performer [
     fhir:index 0;
     fhir:Procedure.performer.actor [
       fhir:Reference.reference [ fhir:value "Practitioner/example" ];
       fhir:Reference.display [ fhir:value "Dr Adam Careful" ]
     ]
  ]; # 
  fhir:Procedure.location [
     fhir:Reference.reference [ fhir:value "Location/1" ];
     fhir:Reference.display [ fhir:value "Burgers University Medical Center, South Wing, second floor" ]
  ]; # 
  fhir:Procedure.complication [
     fhir:index 0;
     fhir:CodeableReference.reference [
       fhir:Reference.display [ fhir:value "Perforated intestine condition" ]
     ]
  ]; # 
  fhir:Procedure.used [
     fhir:index 0;
     fhir:CodeableReference.reference [
       fhir:Reference.display [ fhir:value "Colonoscope device" ]
     ]
  ]] . # 

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

[a owl:Ontology;
  owl:imports fhir:fhir.ttl] .

# -------------------------------------------------------------------------------------


Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.