STU3 Candidate

This page is part of the FHIR Specification (v1.8.0: STU 3 Draft). 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

Careplan-example-pregnancy.ttl

Raw Turtle, JSON-LD

Patient 1 for linking

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

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

<http://hl7.org/fhir/CarePlan/preg> a fhir:CarePlan;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "preg"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "additional" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n      <p>A maternity care plan (for a pregnant woman).</p>\n      <p>LMP is 1st Jan, 2013 (a greaat new years party!) The plan has a scheduled first antenatal,\n            and 'placeholders' for the second antenatal and delivery (there would be lots of others of course)</p>\n      <p>Note that where is a proposed 'status' element against each activity</p>\n    </div>"
  ];
  fhir:DomainResource.contained [
     a fhir:Condition;
     fhir:index 0;
     fhir:Resource.id [ fhir:value "p1" ];
     fhir:Condition.clinicalStatus [ fhir:value "active" ];
     fhir:Condition.verificationStatus [ fhir:value "confirmed" ];
     fhir:Condition.code [
       fhir:CodeableConcept.text [ fhir:value "pregnancy" ]
     ];
     fhir:Condition.subject [
       fhir:link <http://hl7.org/fhir/Patient/1>;
       fhir:Reference.reference [ fhir:value "Patient/1" ];
       fhir:Reference.display [ fhir:value "Eve Everywoman" ]
     ]
  ], [
     a fhir:Practitioner;
     fhir:index 1;
     fhir:Resource.id [ fhir:value "pr1" ];
     fhir:Practitioner.name [
       fhir:index 0;
       fhir:HumanName.family [ fhir:value "Midwife" ];
       fhir:HumanName.given [
         fhir:value "Mavis";
         fhir:index 0
       ]
     ];
     fhir:Practitioner.role [
       fhir:index 0;
       fhir:Practitioner.role.specialty [
         fhir:index 0;
         fhir:CodeableConcept.text [ fhir:value "Midwife" ]
       ]
     ]
  ], [
     a fhir:Practitioner;
     fhir:index 2;
     fhir:Resource.id [ fhir:value "pr2" ];
     fhir:Practitioner.name [
       fhir:index 0;
       fhir:HumanName.family [ fhir:value "Obstetrician" ];
       fhir:HumanName.given [
         fhir:value "Oscar";
         fhir:index 0
       ]
     ];
     fhir:Practitioner.role [
       fhir:index 0;
       fhir:Practitioner.role.specialty [
         fhir:index 0;
         fhir:CodeableConcept.text [ fhir:value "Obstetrician" ]
       ]
     ]
  ], [
     a fhir:CareTeam;
     fhir:index 3;
     fhir:Resource.id [ fhir:value "careteam" ];
     fhir:CareTeam.participant [
       fhir:index 0;
       fhir:CareTeam.participant.role [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.system [ fhir:value "http://example.org/mysys" ];
           fhir:Coding.code [ fhir:value "lmc" ]
         ];
         fhir:CodeableConcept.text [ fhir:value "Midwife" ]
       ];
       fhir:CareTeam.participant.member [
         fhir:Reference.reference [ fhir:value "#pr1" ];
         fhir:Reference.display [ fhir:value "Mavis Midwife" ]
       ]
     ], [
       fhir:index 1;
       fhir:CareTeam.participant.role [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.system [ fhir:value "http://example.org/mysys" ];
           fhir:Coding.code [ fhir:value "obs" ]
         ];
         fhir:CodeableConcept.text [ fhir:value "Obstretitian" ]
       ];
       fhir:CareTeam.participant.member [
         fhir:Reference.reference [ fhir:value "#pr2" ];
         fhir:Reference.display [ fhir:value "Oscar Obstetrician" ]
       ]
     ]
  ], [
     a fhir:Goal;
     fhir:index 4;
     fhir:Resource.id [ fhir:value "goal" ];
     fhir:Goal.status [ fhir:value "in-progress" ];
     fhir:Goal.description [
       fhir:CodeableConcept.text [ fhir:value "Maintain patient's health throughout pregnancy and ensure a healthy child" ]
     ];
     fhir:Goal.subject [
       fhir:link <http://hl7.org/fhir/Patient/1>;
       fhir:Reference.reference [ fhir:value "Patient/1" ];
       fhir:Reference.display [ fhir:value "Eve Everywoman" ]
     ]
  ];
  fhir:extension [
     fhir:index 0;
     fhir:Extension.url [ fhir:value "http://example.org/DoNotUse/careplan#lmp" ];
     fhir:Extension.valueDateTime [ fhir:value "2013-01-01"^^xsd:date ]
  ];
  fhir:CarePlan.status [ fhir:value "active"];
  fhir:CarePlan.subject [
     fhir:link <http://hl7.org/fhir/Patient/1>;
     fhir:Reference.reference [ fhir:value "Patient/1" ];
     fhir:Reference.display [ fhir:value "Eve Everywoman" ]
  ];
  fhir:CarePlan.period [
     fhir:Period.start [ fhir:value "2013-01-01"^^xsd:date ];
     fhir:Period.end [ fhir:value "2013-10-01"^^xsd:date ]
  ];
  fhir:CarePlan.careTeam [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "#careteam" ]
  ];
  fhir:CarePlan.addresses [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "#p1" ];
     fhir:Reference.display [ fhir:value "pregnancy" ]
  ];
  fhir:CarePlan.goal [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "#goal" ]
  ];
  fhir:CarePlan.activity [
     fhir:index 0;
     fhir:extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "http://example.org/DoNotUse/careplan#andetails" ];
       fhir:Extension.valueUri [ fhir:value "http://orionhealth.com/fhir/careplan/1andetails" ]
     ];
     fhir:CarePlan.activity.detail [
       fhir:CarePlan.activity.detail.category [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.system [ fhir:value "http://hl7.org/fhir/care-plan-activity-category" ];
           fhir:Coding.code [ fhir:value "encounter" ]
         ]
       ];
       fhir:CarePlan.activity.detail.code [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.system [ fhir:value "http://example.org/mySystem" ];
           fhir:Coding.code [ fhir:value "1an" ]
         ];
         fhir:CodeableConcept.text [ fhir:value "First Antenatal encounter" ]
       ];
       fhir:CarePlan.activity.detail.status [ fhir:value "scheduled" ];
       fhir:CarePlan.activity.detail.prohibited [ fhir:value "false"^^xsd:boolean ];
       fhir:CarePlan.activity.detail.scheduledTiming [
         fhir:Timing.repeat [
           fhir:Timing.repeat.boundsPeriod [
             fhir:Period.start [ fhir:value "2013-02-14"^^xsd:date ];
             fhir:Period.end [ fhir:value "2013-02-28"^^xsd:date ]
           ]
         ]
       ];
       fhir:CarePlan.activity.detail.performer [
         fhir:index 0;
         fhir:Reference.reference [ fhir:value "#pr1" ];
         fhir:Reference.display [ fhir:value "Mavis Midwife" ]
       ];
       fhir:CarePlan.activity.detail.description [ fhir:value "The first antenatal encounter. This is where a detailed physical examination is performed.             and the pregnanacy discussed with the mother-to-be." ]
     ]
  ], [
     fhir:index 1;
     fhir:CarePlan.activity.detail [
       fhir:CarePlan.activity.detail.category [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.system [ fhir:value "http://hl7.org/fhir/care-plan-activity-category" ];
           fhir:Coding.code [ fhir:value "encounter" ]
         ]
       ];
       fhir:CarePlan.activity.detail.code [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.system [ fhir:value "http://example.org/mySystem" ];
           fhir:Coding.code [ fhir:value "an" ]
         ];
         fhir:CodeableConcept.text [ fhir:value "Follow-up Antenatal encounter" ]
       ];
       fhir:CarePlan.activity.detail.status [ fhir:value "not-started" ];
       fhir:CarePlan.activity.detail.prohibited [ fhir:value "false"^^xsd:boolean ];
       fhir:CarePlan.activity.detail.scheduledTiming [
         fhir:Timing.repeat [
           fhir:Timing.repeat.boundsPeriod [
             fhir:Period.start [ fhir:value "2013-03-01"^^xsd:date ];
             fhir:Period.end [ fhir:value "2013-03-14"^^xsd:date ]
           ]
         ]
       ];
       fhir:CarePlan.activity.detail.performer [
         fhir:index 0;
         fhir:Reference.reference [ fhir:value "#pr1" ];
         fhir:Reference.display [ fhir:value "Mavis Midwife" ]
       ];
       fhir:CarePlan.activity.detail.description [ fhir:value "The second antenatal encounter. Discuss any issues that arose from the first antenatal encounter" ]
     ]
  ], [
     fhir:index 2;
     fhir:CarePlan.activity.detail [
       fhir:CarePlan.activity.detail.category [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.system [ fhir:value "http://hl7.org/fhir/care-plan-activity-category" ];
           fhir:Coding.code [ fhir:value "encounter" ]
         ]
       ];
       fhir:CarePlan.activity.detail.code [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.system [ fhir:value "http://example.org/mySystem" ];
           fhir:Coding.code [ fhir:value "del" ]
         ];
         fhir:CodeableConcept.text [ fhir:value "Delivery" ]
       ];
       fhir:CarePlan.activity.detail.status [ fhir:value "not-started" ];
       fhir:CarePlan.activity.detail.prohibited [ fhir:value "false"^^xsd:boolean ];
       fhir:CarePlan.activity.detail.scheduledTiming [
         fhir:Timing.repeat [
           fhir:Timing.repeat.boundsPeriod [
             fhir:Period.start [ fhir:value "2013-09-01"^^xsd:date ];
             fhir:Period.end [ fhir:value "2013-09-14"^^xsd:date ]
           ]
         ]
       ];
       fhir:CarePlan.activity.detail.performer [
         fhir:index 0;
         fhir:Reference.reference [ fhir:value "#pr1" ];
         fhir:Reference.display [ fhir:value "Mavis Midwife" ]
       ];
       fhir:CarePlan.activity.detail.description [ fhir:value "The delivery." ]
     ]
  ] .

<http://hl7.org/fhir/Patient/1> a fhir:Patient, fhir:Patient, fhir:Patient .

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


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.