How to generate multiple arrays inside an json object

Hello I have a structure with opening Hours, I have no clue how to generate this one
{
“openingHours”:{
“monday”:[
{
“openTime”:“9:32”,
“closeTime”:“13:14”
}
],
“tuesday”:[
{
“openTime”:“06:35”,
“closeTime”:“17:20”
}
]
}
}

using Mockaroo.
I tried this (https://www.mockaroo.com/14b48f90), but with no success

Thanks for any help.

You were really close with your schema. Have a look at this, https://www.mockaroo.com/14b48f90.
The root node openingHours must be part of each field so that it is nested correctly.

1 Like

Thanks a lot! :star_struck: