allow bindings on codeableReference
This commit is contained in:
parent
10989cf6e9
commit
d14224e987
|
@ -3342,7 +3342,7 @@ public class ProfileUtilities extends TranslatingUtilities {
|
|||
|
||||
private boolean hasBindableType(ElementDefinition ed) {
|
||||
for (TypeRefComponent tr : ed.getType()) {
|
||||
if (Utilities.existsInList(tr.getWorkingCode(), "Coding", "CodeableConcept", "Quantity", "uri", "string", "code")) {
|
||||
if (Utilities.existsInList(tr.getWorkingCode(), "Coding", "CodeableConcept", "Quantity", "uri", "string", "code", "CodeableReference")) {
|
||||
return true;
|
||||
}
|
||||
StructureDefinition sd = context.fetchTypeDefinition(tr.getCode());
|
||||
|
|
Loading…
Reference in New Issue