FHIR Chat · capability to _revInclude · conformance

Stream: conformance

Topic: capability to _revInclude


view this post on Zulip John Moehrke (Jul 05 2019 at 20:06):

I see CapabilityStatement.rest.resource.searchRevInclude now in the CapabilityStatement, but I am not clear on how to use it. My use-case is to indicate that my server does support reverse include for Provenance resources. That is to say that all queries of all the resources I support can have a reverse include for Provenance of the results... what would this look like in a capability statement?

view this post on Zulip Eric Haas (Jul 08 2019 at 15:14):

For example :

view this post on Zulip Eric Haas (Jul 08 2019 at 15:14):

GET [base]/MedicationRequest?_revinclude=Provenance:target

view this post on Zulip Eric Haas (Jul 08 2019 at 15:18):

in the CS would have

view this post on Zulip Eric Haas (Jul 08 2019 at 15:18):

     ],
          "referencePolicy" : [
            "resolves"
          ],
          "searchInclude" : [
            "MedicationRequest:medication"
          ],
          ,
          "searchRevInclude" : [
            "Provenance:target"
          ],

view this post on Zulip Eric Haas (Jul 08 2019 at 15:21):

this would be in every CapabilityStatement.rest.resource

view this post on Zulip John Moehrke (Jul 08 2019 at 15:43):

Excellent. thanks. I will try that.


Last updated: Apr 12 2022 at 19:14 UTC