To better organize the display of attributes, we would like to display some of them in a hierarchy, where attributes can have other children attributes.
Here are the options on how to implement it that we have so far:
Change the structure so attributes are now nested. This will break the existing code.
Change the attributes name to add a separator (E.g.: parent/child/grand-child) and then parse the name.
Add an extra structure representing the children hierarchy structure.
To better organize the display of attributes, we would like to display some of them in a hierarchy, where attributes can have other children attributes.
Here are the options on how to implement it that we have so far:
parent/child/grand-child
) and then parse the name.