My user model has a property called addresses:
@property.array(Address)
addresses: Array<Address>;
However, I am encountering an error:
Cannot start the application. Error: "items" property must be present if "type" is an array
After reviewing the documentation from Loopback, it seems like I should not need to make any additional changes.
Do you have any ideas on what might be missing?