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
SUSHI allows groups to be defined in sush-config.yaml without resource, like this:
groups:
Group A: My Group AGroup B: My Group B
or with resources, like this:
groups:
GroupA:
name: Group Adescription: My Group Aresources:
- StructureDefinition/ProfileA1
- StructureDefinition/ProfileA2GroupB:
name: Group Bdescription: My Group Bresources:
- StructureDefinition/ProfileB1
- StructureDefinition/ProfileBA2
If you use the latter format, but don't provide resources, SUSHI issues an error. E.g.:
groups:
GroupA:
name: Group Adescription: My Group AGroupB:
name: Group Bdescription: My Group B
results in:
error SUSHI encountered the following unexpected error: group.resources is not iterable
Ideally, SUSHI should be able to handle this and just process the group name and description without any resources.
The text was updated successfully, but these errors were encountered:
* Support for using resource names/ids in sushi-config.yaml
Allow authors to use resource names or ids for:
- global profile values (previous required canonical)
- group resources (previously required relative URL)
- resources (previously required relative URL)
- resources exampleCanonicals (previously required canonical)
Fixes#1018
* Support config groups with no resources
Fixes#1019
SUSHI allows groups to be defined in sush-config.yaml without resource, like this:
or with resources, like this:
If you use the latter format, but don't provide resources, SUSHI issues an error. E.g.:
results in:
Ideally, SUSHI should be able to handle this and just process the group name and description without any resources.
The text was updated successfully, but these errors were encountered: