Thanks Bart
The context is pretty basic. We’re using asset lists to create a REST JSON API using data withn Matrix.
In this instance we have a course record that can have one or more “related interests” that we want to print as an array within the individual course endpoint. For example:
{
"course_name": "Test course",
"course_code": "234455",
"related_interests": [
{
"interest": "Interest number 1",
"interest_code": "53762"
},
{
"interest": "Interest number 2",
"interest_code": "85964"
}
] }
We’ve actually managed to get around it by using embedded assets (see below), but we’d like to be able to avoid this so that we can use conditional keywords within the bodycopy (%begin_interests_are_present% print the intrests array %end_interests_are_present% etc).
