This page is part of the FHIR Specification (v0.0.82: DSTU 1). 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.json

General Person Example

{
  "resourceType": "CarePlan",
  "text": {
    "status": "additional",
    "div": "<div>\n           <p> A simple care plan to indicate a patient taking their weight once a day because of obesity.\n            Some Notes: </p>\n            <ul>\n            <li>It would be good to have some way of specifying/coding a goal. e.g. what the target weight is</li>\n            <li>In the codeable concepts I've been lazy and just put the text. There should, of course, be a code behind these</li>\n        </ul>\n        </div>"
  },
  "contained": [
    {
      "resourceType": "Condition",
      "id": "p1",
      "subject": {
        "reference": "Patient/example",
        "display": "Peter James Chalmers"
      },
      "code": {
        "text": "Obesity"
      },
      "status": "confirmed"
    },
    {
      "resourceType": "Practitioner",
      "id": "pr1",
      "name": {
        "family": [
          "Dietician"
        ],
        "given": [
          "Dorothy"
        ]
      },
      "specialty": [
        {
          "text": "Dietician"
        }
      ]
    }
  ],
  "patient": {
    "reference": "Patient/example",
    "display": "Peter James Chalmers"
  },
  "status": "active",
  "period": {
    "end": "2013-01-01"
  },
  "concern": [
    {
      "reference": "#p1",
      "display": "obesity"
    }
  ],
  "participant": [
    {
      "role": {
        "text": "responsiblePerson"
      },
      "member": {
        "reference": "Patient/example",
        "display": "Peter James Chalmers"
      }
    },
    {
      "role": {
        "text": "adviser"
      },
      "member": {
        "reference": "#pr1",
        "display": "Dorothy Dietition"
      }
    }
  ],
  "goal": [
    {
      "description": "Target weight is 80 kg. Note: be nice if this could be coded"
    }
  ],
  "activity": [
    {
      "prohibited": false,
      "simple": {
        "category": "observation",
        "code": {
          "text": "a code for weight measurement"
        },
        "timingSchedule": {
          "repeat": {
            "frequency": 1,
            "duration": 1,
            "units": "d"
          }
        },
        "performer": [
          {
            "reference": "Patient/example",
            "display": "Peter James Chalmers"
          }
        ]
      }
    }
  ]
}