DSTU2 FHIR Release 3 (STU)

This page is part of the FHIR Specification (v1.0.2: DSTU (v3.0.2: STU 2). 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 R2 R3 R2

Careplan-example.json

Patient Care Work Group Maturity Level : N/A Ballot Status : Informative Compartments : Patient , Practitioner , RelatedPerson

Raw JSON ( canonical form )

General Person Example

{
  "resourceType": "CarePlan",
  "id": "example",
  "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>"

    "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n      <p> A simple care plan to indicate a patient taking their weight once a day because of obesity.</p>\n    </div>"

  },
  "contained": [
    {
      "resourceType": "Condition",
      "id": "p1",
      "patient": {
        "reference": "Patient/example",
        "display": "Peter James Chalmers"
      },

      "clinicalStatus": "active",
      "verificationStatus": "confirmed",

      "code": {
        "text": "Obesity"
      },
      "verificationStatus": "confirmed"
    },
    {
      "resourceType": "Practitioner",
      "id": "pr1",
      "name": {
        "family": [
          "Dietician"
        ],
        "given": [
          "Dorothy"
        ]
      },
      "practitionerRole": [
        {
          "specialty": [
            {
              "text": "Dietician"
            }
          ]
        }
      ]
    },
    {
      "resourceType": "Goal",
      "id": "goal",
      "extension": [
        {
          "extension": [
            {
              "url": "goal-target.measure",
              "valueCodeableConcept": {
                "coding": [
                  {
                    "system": "http://loinc.org",
                    "code": "29463-7",
                    "display": "Body weight"
                  }
                ]
              }
            },
            {
              "url": "goal-target.detail",
              "valueQuantity": {
                "value": 80,
                "system": "http://units-of-measure.org",
                "code": "kg"
              }
            }
          ],
          "url": "http://hl7.org/fhir/StructureDefinition/goal-target"
        }
      ],

      "subject": {
        "reference": "Patient/example",
        "display": "Peter James Chalmers"
      },
      "description": "Target weight is 80 kg",
      "status": "planned"

      }
    }
  ],
  "identifier": [
    {
      "value": "12345"
    }
  ],
  "definition": [
    {
      "display": "A PlanDefinition protocol for obesity"
    }
  ],
  "basedOn": [
    {
      "display": "Management of Type 2 Diabetes"
    }
  ],
  "replaces": [
    {
      "display": "Plan from urgent care clinic"
    }
  ],
  "partOf": [
    {
      "display": "Overall wellness plan"
    }
  ],
  "status": "active",
  "intent": "plan",
  "category": [
    {
      "text": "Weight management plan"

    }
  ],
  "description": "Manage obesity and weight loss",

  "subject": {
    "reference": "Patient/example",
    "display": "Peter James Chalmers"
  },
  "status": "active",

  "context": {
    "reference": "Encounter/home"
  },

  "period": {
    "end": "2013-01-01"

    "end": "2017-06-01"

  },
  "addresses": [

  "author": [

    {
      "reference": "#p1",
      "display": "obesity"

      "reference": "Practitioner/example",
      "display": "Dr Adam Careful"

    }
  ],
  "participant": [

  "careTeam": [

    {
      "role": {
        "text": "responsiblePerson"
      },
      "member": {
        "reference": "Patient/example",
        "display": "Peter James Chalmers"
      }
    },

      "reference": "CareTeam/example"
    }
  ],
  "addresses": [

    {
      "role": {
        "text": "adviser"
      },
      "member": {
        "reference": "#pr1",
        "display": "Dorothy Dietition"
      }

      "reference": "#p1",
      "display": "obesity"

    }
  ],
  "goal": [
    {
      "reference": "#goal"

      "reference": "Goal/example"

    }
  ],
  "activity": [
    {
      "outcomeCodeableConcept": [
        {
          "coding": [
            {
              "system": "http://snomed.info/sct",
              "code": "161832001",
              "display": "Progressive weight loss"
            }
          ]
        }
      ],
      "outcomeReference": [
        {
          "reference": "Observation/example",
          "display": "Weight Measured"
        }
      ],

      "detail": {
        "category": {
          "coding": [
            {
              "system": "http://hl7.org/fhir/care-plan-activity-category",
              "code": "observation"
            }
          ]
        },
        "code": {
          "text": "a code for weight measurement"

          "coding": [
            {
              "system": "http://loinc.org",
              "code": "3141-9",
              "display": "Weight Measured"
            },
            {
              "system": "http://snomed.info/sct",
              "code": "27113001",
              "display": "Body weight"
            }
          ]

        },
        "status": "completed",
        "statusReason": "Achieved weight loss to mitigate diabetes risk.",

        "prohibited": false,
        "scheduledTiming": {
          "repeat": {
            "frequency": 1,
            "period": 1,
            "periodUnits": "d"

            "periodUnit": "d"

          }
        },
        "location": {
          "display": "Patient's home"
        },

        "performer": [
          {
            "reference": "Patient/example",
            "display": "Peter James Chalmers"
          }
        ]
      }
    }
  ]
}

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.