From sling Model I'm returning the list of json objects like the below[{"day":"Monday","from":"10:00","to":"21:00"},{"day":"Tuesday","from":"10:00","to":"21:00"}]Instead of pojo I want to read the data in sightly.${workingHours['day']}:from ${workingHours.from} to ${workingHours.to} Tried with squar...