Given data of nested objects like this:
struct Store{ var name: String var items: [Item] } struct Item{ var name: String var free: Bool }