My app has multiple dates (birthday, etc) associated with a person. I would like to display an array of dates as the detail view of the person.
The models don't support the date data type. I was looking for another one to do this. Maybe another collection of dates that use a linking field to the persons collection.
Another option would be an array of dateName and date records in the persons collection. I.e dates [{"dateName":"anniversary", "date":"01/01/2016"}]
Any suggestions on a good pattern for this?
Thanks