Open-Nursing-Validator / docs /Condition-example-nursing-problem.md
NurseCitizenDeveloper's picture
Deploy Open Nursing Validator (Docker)
6d12932 verified

example-nursing-problem - Open Nursing Core FHIR Implementation Guide (ONC-IG) v0.1.0

Example Condition: example-nursing-problem

Profile: Nursing Problem

clinicalStatus: Active

category: Nursing Diagnosis

code: Risk of falls

subject: Jane Doe Female, DoB Unknown

Resource Content

{
  "resourceType" : "Condition",
  "id" : "example-nursing-problem",
  "meta" : {
    "profile" : [
      "https://clinyqai.github.io/open-nursing-core-ig/StructureDefinition/onc-nursing-problem"
    ]
  },
  "clinicalStatus" : {
    "coding" : [
      {
        "system" : "http://terminology.hl7.org/CodeSystem/condition-clinical",
        "code" : "active",
        "display" : "Active"
      }
    ]
  },
  "category" : [
    {
      "coding" : [
        {
          "system" : "https://clinyqai.github.io/open-nursing-core-ig/CodeSystem/onc-problem-type",
          "code" : "nursing-diagnosis",
          "display" : "Nursing Diagnosis"
        }
      ]
    }
  ],
  "code" : {
    "coding" : [
      {
        "system" : "https://clinyqai.github.io/open-nursing-core-ig/CodeSystem/onc-observation-codes",
        "code" : "risk-falls",
        "display" : "Risk of falls"
      }
    ]
  },
  "subject" : {
    "reference" : "Patient/patient-example-jane"
  }
}