DSTU2 Ballot Source

This page is part of the FHIR Specification (v0.5.0: DSTU 2 Ballot 2). 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 R2

Careplan-example-pregnancy.json

Raw JSON (canonical form)

Patient 1 for linking

{
  "resourceType": "CarePlan",
  "id": "preg",
  "text": {
    "status": "additional",
    "div": "<div>!-- Snipped for Brevity --></div>"
  },
  "contained": [
    {
      "resourceType": "Condition",
      "id": "p1",
      "patient": {
        "reference": "Patient/1",
        "display": "Eve Everywoman"
      },
      "code": {
        "text": "pregnancy"
      },
      "clinicalStatus": "confirmed"
    },
    {
      "resourceType": "Practitioner",
      "id": "pr1",
      "name": {
        "family": [
          "Midwife"
        ],
        "given": [
          "Mavis"
        ]
      },
      "practitionerRole": [
        {
          "specialty": [
            {
              "text": "Midwife"
            }
          ]
        }
      ]
    },
    {
      "resourceType": "Practitioner",
      "id": "pr2",
      "name": {
        "family": [
          "Obstetrician"
        ],
        "given": [
          "Oscar"
        ]
      },
      "practitionerRole": [
        {
          "specialty": [
            {
              "text": "Obstetrician"
            }
          ]
        }
      ]
    },
    {
      "resourceType": "Goal",
      "id": "goal",
      "patient": {
        "reference": "Patient/1",
        "display": "Eve Everywoman"
      },
      "description": "Maintain patient's health throughout pregnancy and ensure a healthy child",
      "status": "in-progress"
    }
  ],
  "extension": [
    {
      "url": "http://example.org/DoNotUse/careplan#lmp",
      "valueDateTime": "2013-01-01"
    }
  ],
  "patient": {
    "reference": "Patient/1",
    "display": "Eve Everywoman"
  },
  "status": "active",
  "period": {
    "start": "2013-01-01",
    "end": "2013-10-01"
  },
  "concern": [
    {
      "reference": "#p1",
      "display": "pregnancy"
    }
  ],
  "participant": [
    {
      "role": {
        "coding": [
          {
            "system": "http://example.org/mysys",
            "code": "lmc"
          }
        ],
        "text": "Midwife"
      },
      "member": {
        "reference": "#pr1",
        "display": "Mavis Midwife"
      }
    },
    {
      "role": {
        "coding": [
          {
            "system": "http://example.org/mysys",
            "code": "obs"
          }
        ],
        "text": "Obstretitian"
      },
      "member": {
        "reference": "#pr2",
        "display": "Oscar Obstetrician"
      }
    }
  ],
  "goal": [
    {
      "reference": "#goal"
    }
  ],
  "activity": [
    {
      "extension": [
        {
          "url": "http://example.org/DoNotUse/careplan#andetails",
          "valueUri": "http://orionhealth.com/fhir/careplan/1andetails"
        }
      ],
      "detail": {
        "category": "encounter",
        "code": {
          "coding": [
            {
              "system": "http://example.org/mySystem",
              "code": "1an"
            }
          ],
          "text": "First Antenatal encounter"
        },
        "status": "scheduled",
        "prohibited": false,
        "scheduledTiming": {
          "repeat": {
            "bounds": {
              "start": "2013-02-14",
              "end": "2013-02-28"
            }
          }
        },
        "performer": [
          {
            "reference": "#pr1",
            "display": "Mavis Midwife"
          }
        ],
        "note": "The first antenatal encounter. This is where a detailed physical examination is performed.             and the pregnanacy discussed with the mother-to-be."
      }
    },
    {
      "detail": {
        "category": "encounter",
        "code": {
          "coding": [
            {
              "system": "http://example.org/mySystem",
              "code": "an"
            }
          ],
          "text": "Follow-up Antenatal encounter"
        },
        "status": "not-started",
        "prohibited": false,
        "scheduledTiming": {
          "repeat": {
            "bounds": {
              "start": "2013-03-01",
              "end": "2013-03-14"
            }
          }
        },
        "performer": [
          {
            "reference": "#pr1",
            "display": "Mavis Midwife"
          }
        ],
        "note": "The second antenatal encounter. Discuss any issues that arose from the first antenatal encounter"
      }
    },
    {
      "detail": {
        "category": "encounter",
        "code": {
          "coding": [
            {
              "system": "http://example.org/mySystem",
              "code": "del"
            }
          ],
          "text": "Delivery"
        },
        "status": "not-started",
        "prohibited": false,
        "scheduledTiming": {
          "repeat": {
            "bounds": {
              "start": "2013-09-01",
              "end": "2013-09-14"
            }
          }
        },
        "performer": [
          {
            "reference": "#pr1",
            "display": "Mavis Midwife"
          }
        ],
        "note": "The delivery."
      }
    }
  ]
}

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.