Skip to content

Care Plan Profile

Canonical../StructureDefinition/nexus-emr-core-careplan
Statusdraft (experimental) · 1.26.0
BaseCarePlan (constraint)
SourceFSH · JSON

Nexus EMR profile for CarePlan -- the management plan tying goals, conditions and activities together (CDM flowsheets, care gaps). First pass: status/intent, category, goal/addresses linkage, minimal activity. Closed to SMART apps pending an exposure decision.

Examples

Careplan example

CarePlan/nexus-emr-careplan-example — claims conformance to Care Plan Profile

{
  "resourceType": "CarePlan",
  "id": "nexus-emr-careplan-example",
  "meta": {
    "profile": [
      "../StructureDefinition/nexus-emr-core-careplan"
    ]
  },
  "status": "active",
  "intent": "plan",
  "category": [
    {
      "coding": [
        {
          "system": "http://snomed.info/sct",
          "code": "734163000",
          "display": "Care plan"
        }
      ],
      "text": "Diabetes management"
    }
  ],
  "subject": {
    "reference": "Patient/nexus-emr-patient-attachment-example",
    "display": "Avery Linwood"
  },
  "period": {
    "start": "2026-01-15"
  },
  "addresses": [
    {
      "reference": "Condition/avery-t2dm",
      "display": "Type 2 diabetes mellitus"
    }
  ],
  "goal": [
    {
      "reference": "Goal/nexus-emr-goal-example",
      "display": "HbA1c under 7.0%"
    }
  ],
  "activity": [
    {
      "detail": {
        "code": {
          "coding": [
            {
              "system": "http://snomed.info/sct",
              "code": "170777000",
              "display": "Diabetic annual review"
            }
          ],
          "text": "Quarterly diabetic review"
        },
        "status": "in-progress"
      }
    }
  ]
}