STU 3 Candidate

This page is part of the FHIR Specification (v1.4.0: STU 3 Ballot 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3

Episodeofcare-example.ttl

Raw Turtle, JSON-LD

Episode of Care example

@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 xs: <http://www.w3.org/2001/XMLSchema#> .

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

<http://hl7.org/fhir//EpisodeOfCare/example> a fhir:EpisodeOfCare;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ]
  ];
  fhir:EpisodeOfCare.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://example.org/sampleepisodeofcare-identifier" ];
     fhir:Identifier.value [ fhir:value "123" ]
  ];
  fhir:EpisodeOfCare.status [ fhir:value "active"];
  fhir:EpisodeOfCare.statusHistory [
     fhir:index 0;
     fhir:EpisodeOfCare.statusHistory.status [ fhir:value "planned" ];
     fhir:EpisodeOfCare.statusHistory.period [
       fhir:Period.start [ fhir:value "2014-09-01"^^xs:date ];
       fhir:Period.end [ fhir:value "2014-09-14"^^xs:date ]     ]
  ];
  fhir:EpisodeOfCare.statusHistory [
     fhir:index 1;
     fhir:EpisodeOfCare.statusHistory.status [ fhir:value "active" ];
     fhir:EpisodeOfCare.statusHistory.period [
       fhir:Period.start [ fhir:value "2014-09-15"^^xs:date ];
       fhir:Period.end [ fhir:value "2014-09-21"^^xs:date ]     ]
  ];
  fhir:EpisodeOfCare.statusHistory [
     fhir:index 2;
     fhir:EpisodeOfCare.statusHistory.status [ fhir:value "onhold" ];
     fhir:EpisodeOfCare.statusHistory.period [
       fhir:Period.start [ fhir:value "2014-09-22"^^xs:date ];
       fhir:Period.end [ fhir:value "2014-09-24"^^xs:date ]     ]
  ];
  fhir:EpisodeOfCare.statusHistory [
     fhir:index 3;
     fhir:EpisodeOfCare.statusHistory.status [ fhir:value "active" ];
     fhir:EpisodeOfCare.statusHistory.period [
       fhir:Period.start [ fhir:value "2014-09-25"^^xs:date ]     ]
  ];
  fhir:EpisodeOfCare.type [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://example.org/EpisodeOfCare/Type" ];
       fhir:Coding.code [ fhir:value "HACC" ];
       fhir:Coding.display [ fhir:value "Home and Community Care Package" ]     ]
  ];
  fhir:EpisodeOfCare.condition [
     fhir:index 0;
     fhir:reference <http://hl7.org/fhir/Condition/example>;
     fhir:Reference.reference [ fhir:value "Condition/example" ];
     fhir:Reference.display [ fhir:value "Severe burn of left ear" ]
  ];
  fhir:EpisodeOfCare.patient [
     fhir:reference <http://hl7.org/fhir/Patient/example>;
     fhir:Reference.reference [ fhir:value "Patient/example" ]
  ];
  fhir:EpisodeOfCare.managingOrganization [
     fhir:reference <http://hl7.org/fhir/Organization/hl7>;
     fhir:Reference.reference [ fhir:value "Organization/hl7" ]
  ];
  fhir:EpisodeOfCare.period [
     fhir:Period.start [ fhir:value "2014-09-01"^^xs:date ]
  ];
  fhir:EpisodeOfCare.referralRequest [
     fhir:index 0;
     fhir:Reference.display [ fhir:value "Referral from Example Aged Care Services" ]
  ];
  fhir:EpisodeOfCare.careManager [
     fhir:reference <http://hl7.org/fhir/Practitioner/14>;
     fhir:Reference.reference [ fhir:value "Practitioner/14" ];
     fhir:Reference.display [ fhir:value "Amanda Assigned" ]
  ].

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


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.