Hi guys,
We are working on Github version and need to implement schema model that supports array inside array, 3 levels at least.
The customer do not want to use the schema reference feature because in this scenario there’s no content reuse.
Below an example of the desired schema format.
{
blocks: [
name: "",
questions: [
name: "",
screens: [
name: "",
visualizations: [
name: ""
]
]
]
]
}
Do you have suggestions about implementation?
Thanks in advance.