You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will cause profile-generated reference type constraints with multiple targets to fail validation for non-repeating elements. For example:
value.as(Reference).exists() implies (value.as(Reference).resolve().is(Practitioner) or resolve().is(PractitionerRole) or resolve().is(Organization) or resolve().is(Location))
should be:
value.as(Reference).exists() implies (value.as(Reference).resolve().is(Practitioner) or value.as(Reference).resolve().is(PractitionerRole) or value.as(Reference).resolve().is(Organization) or value.as(Reference).resolve().is(Location))
The text was updated successfully, but these errors were encountered:
A bug was introduced from this commit:
28f4628
This will cause profile-generated reference type constraints with multiple targets to fail validation for non-repeating elements. For example:
should be:
The text was updated successfully, but these errors were encountered: