Open-Nursing-Validator / docs /Observation-example-what-matters.md
NurseCitizenDeveloper's picture
Deploy Open Nursing Validator (Docker)
6d12932 verified

example-what-matters - Open Nursing Core FHIR Implementation Guide (ONC-IG) v0.1.0

Example Observation: example-what-matters

Profile: What Matters to Me

status: Final

category: Social History

code: What Matters to Me

subject: Jane Doe Female, DoB Unknown

performer: Practitioner Nightingale

value: Being able to walk her dog (Buster) daily.

note:

This is her primary motivation for physiotherapy.

Resource Content

{
  "resourceType" : "Observation",
  "id" : "example-what-matters",
  "meta" : {
    "profile" : [
      "https://fhir.clinyq.ai/StructureDefinition/onc-what-matters"
    ]
  },
  "status" : "final",
  "category" : [
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/observation-category",
          "code" : "social-history"
        }
      ]
    }
  ],
  "code" : {
    "coding" : [
      {
        "system" : "https://clinyqai.github.io/open-nursing-core-ig/CodeSystem/onc-observation-codes",
        "code" : "what-matters"
      }
    ]
  },
  "subject" : {
    "reference" : "Patient/patient-example-jane"
  },
  "performer" : [
    {
      "reference" : "Practitioner/practitioner-example"
    }
  ],
  "valueString" : "Being able to walk her dog (Buster) daily.",
  "note" : [
    {
      "text" : "This is her primary motivation for physiotherapy."
    }
  ]
}