Closed ahenket closed 9 months ago
After testing with the Java validator with ext-Comment and a round on Zulip I found that it does not support context Resource.descendants(). A slight adjustment would do the trick:
Resource.descendants()
Change
<context> <type value="fhirpath" /> <expression value="Resource" /> </context> <context> <type value="fhirpath" /> <expression value="Resource.descendants()" /> </context>
to
<context> <type value="fhirpath" /> <expression value="Resource" /> </context> <context> <type value="fhirpath" /> <expression value="Element" /> </context>
According to the Zulip replies from Lloyd and Grahame you could even remove the context on Resource.
Resource
Continued in https://bits.nictiz.nl/browse/MM-5127
After testing with the Java validator with ext-Comment and a round on Zulip I found that it does not support context
Resource.descendants()
. A slight adjustment would do the trick:Change
to
According to the Zulip replies from Lloyd and Grahame you could even remove the context on
Resource
.