MCC eCare Plan Draft Implementation Guide
0.1.0 - CI Build

MCC eCare Plan Draft Implementation Guide - Local Development build (v0.1.0). See the Directory of published versions

: Renal Transplant Example - TTL Representation

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

 a fhir:Procedure;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "RT1234"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "1" ];
     fhir:Meta.lastUpdated [ fhir:value "2020-09-27T22:21:47.056+00:00"^^xsd:dateTime ];
     fhir:Meta.source [ fhir:value "#exCXafzvIIwnqpLb" ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Renal Transplant</div>"
  ];
  fhir:DomainResource.extension [
     fhir:index 0;
     fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/resource-pertainsToGoal" ];
     fhir:Extension.valueReference [
       fhir:Reference.reference [ fhir:value "Goal/QualityOfLife" ]     ]
  ];
  fhir:Procedure.status [ fhir:value "completed"];
  fhir:Procedure.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:70536003;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "70536003" ];
       fhir:Coding.display [ fhir:value "Transplant of kidney (procedure)" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Transplant of kidney" ]
  ];
  fhir:Procedure.subject [
     fhir:Reference.reference [ fhir:value "Patient/cc-pat-pnoelle" ];
     fhir:Reference.display [ fhir:value "Patricia Noelle" ]
  ];
  fhir:Procedure.performedDateTime [ fhir:value "2013-04-05"^^xsd:date];
  fhir:Procedure.recorder [
     fhir:Reference.reference [ fhir:value "Practitioner/example" ];
     fhir:Reference.display [ fhir:value "Dr Cecil Surgeon" ]
  ];
  fhir:Procedure.asserter [
     fhir:Reference.reference [ fhir:value "Practitioner/example" ];
     fhir:Reference.display [ fhir:value "Dr Cecil Surgeon" ]
  ];
  fhir:Procedure.performer [
     fhir:index 0;
     fhir:Procedure.performer.actor [
       fhir:Reference.reference [ fhir:value "Practitioner/example" ];
       fhir:Reference.display [ fhir:value "Dr Cecil Surgeon" ]     ]
  ];
  fhir:Procedure.reasonReference [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "Condition/ESRD" ];
     fhir:Reference.display [ fhir:value "End Stage Renal Disease" ]
  ];
  fhir:Procedure.followUp [
     fhir:index 0;
     fhir:CodeableConcept.text [ fhir:value "ROS 5 days  - 2013-04-10" ]
  ];
  fhir:Procedure.note [
     fhir:index 0;
     fhir:Annotation.text [ fhir:value "End stage renal disease status for 2 years on dialysis. Matching donor found." ]
  ].

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

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