I have a user model with a property addresses:
@property.array(Address)
addresses: Array<Address>;
But I get an error:
Cannot start the application. Error: "items" property must be present if "type" is an array
According to Loopback documentation, I do not need to do anything else.
Any idea what is missing?