FHIR Chat · Search Observation by component date / string / boolean · hapi

Stream: hapi

Topic: Search Observation by component date / string / boolean


view this post on Zulip Marek Gocał (Aug 10 2021 at 19:10):

Is it possible to search Observation with the component value[x] matching given query parameter ?

I have the following Observation w/ components:

  "component": [
          {
            "code": {
              "coding": [
                {
                  "system": "http://example.com/my_system",
                  "code": "expectedDate",
                  "display": "expectedDate"
                }
              ]
            },
            "valueDateTime": "2021-08-10T20:23:02.200760+02:00"
          },
         ....
}

So I want to find all the Observations where e.g. expectedDate > 2021-08-10

From what I found it's only possible to search using either quantity or codable concept components (via component-code-value-quantity parameter), however the API doesn't seem to support "basic" component types


Last updated: Apr 12 2022 at 19:14 UTC