FHIR Chat · event timing in observation · implementers

Stream: implementers

Topic: event timing in observation


view this post on Zulip Lauri Karppinen (Jan 29 2019 at 09:45):

Hey! I have observation resource where I need to add information about the time of day in addition to effectiveDateTime. It's either: Morning, Day, Evening or Night. There is this value set: http://hl7.org/fhir/event-timing but I dont' know how to use this? I did not find any examples how to add this to observation resource. Can I use value set as extension in observation like this:
"extension": [ { "url": "http://hl7.org/fhir/ValueSet/event-timing", "valueString": "Morning" } ]

view this post on Zulip Grahame Grieve (Jan 29 2019 at 10:04):

it's not event timing. You need an extension - @Eric Haas I thought we added the extension for openMHealth for this to the core?

view this post on Zulip Lauri Karppinen (Jan 29 2019 at 10:23):

Yes I need some extension to present this information. Now I realized event-timing is completely different thing. I have been trying to find suitable extension for this from simplifier but with no luck. If someone has done extension for this and can point me in to it I would be very grateful.

view this post on Zulip Eric Haas (Jan 29 2019 at 17:27):

For OMH we report as components like this:

"component": [
      {
         "code": {
            "coding": [
               {
                  "code": "relative-to-activity",
                  "display": "OMH to FHIR Temporal Relationship To Physical Activity",
                  "system": "http://www.fhir.org/guides/mfhir/omh_fhir_observation_codes"
               }
            ]
         },
         "valueCodeableConcept": {
            "coding": [
               {
                  "code": "at rest",
                  "system": "http://snomed.info/sct"
               }
            ]
         }
      }
   ],

Last updated: Apr 12 2022 at 19:14 UTC