Snapshot 3: Connectathon 32 Base

This is Snapshot #3 for FHIR R5, released to support Connectathon 32. For a full list of available versions, see the Directory of published versions.

Example CarePlan/example (JSON)

Patient Care Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Encounter, Patient, Practitioner, RelatedPerson

Raw JSON (canonical form + also see JSON Format Specification)

Care plan to address obesity that has a goal of weight loss

{
  "resourceType" : "CarePlan",
  "id" : "example",
  "text" : {
    "status" : "additional",
    "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",
    "clinicalStatus" : {
      "coding" : [{
        "system" : "http://terminology.hl7.org/CodeSystem/condition-clinical",
        "code" : "active"
      }]
    },
    "verificationStatus" : {
      "coding" : [{
        "system" : "http://terminology.hl7.org/CodeSystem/condition-ver-status",
        "code" : "confirmed"
      }]
    },
    "code" : {
      "text" : "Obesity"
    },
    "subject" : {
      "reference" : "Patient/example",
      "display" : "Peter James Chalmers"
    }
  }],
  "identifier" : [{
    "value" : "12345"
  }],
  "instantiatesUri" : ["http://example.org/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"
  },
  "encounter" : {
    "reference" : "Encounter/home"
  },
  "period" : {
    "end" : "2017-06-01"
  },
  "created" : "2016-01-01",
  "custodian" : {
    "reference" : "Practitioner/example",
    "display" : "Dr Adam Careful"
  },
  "careTeam" : [{
    "reference" : "CareTeam/example"
  }],
  "addresses" : [{
    "reference" : {
      "reference" : "#p1",
      "display" : "obesity"
    }
  }],
  "goal" : [{
    "reference" : "Goal/example"
  }],
  "activity" : [{
    "performedActivity" : [{
      "concept" : {
        "coding" : [{
          "system" : "http://snomed.info/sct",
          "code" : "161832001",
          "display" : "Progressive weight loss"
        }]
      }
    },
    {
      "reference" : {
        "reference" : "Observation/example",
        "display" : "Weight Measured"
      }
    }],
    "plannedActivityDetail" : {
      "code" : {
        "coding" : [{
          "system" : "http://loinc.org",
          "code" : "3141-9",
          "display" : "Weight Measured"
        },
        {
          "system" : "http://snomed.info/sct",
          "code" : "27113001",
          "display" : "Body weight"
        }]
      },
      "status" : "completed",
      "statusReason" : {
        "text" : "Achieved weight loss to mitigate diabetes risk."
      },
      "doNotPerform" : false,
      "scheduledTiming" : {
        "repeat" : {
          "frequency" : 1,
          "period" : 1,
          "periodUnit" : "d"
        }
      },
      "location" : {
        "concept" : {
          "coding" : [{
            "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
            "code" : "PTRES",
            "display" : "Patient's Residence"
          }]
        }
      },
      "reportedBoolean" : false,
      "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.