I cannot find a tutorial that shows how to implement a model that will manage hierarchical data.
For example how do I model:
{
"name": "Joe Smith",
"age": "40",
"address": {
"street": "123 pine",
"city": "Redmond",
"state": "WA"
},
}
Where Address is a shared model?