jam-api
jam-api copied to clipboard
Allow nesting
So we can return child values inside of it's parent. Basically turn:
"paragraphs": [
{
"index": 0,
"value": {
"value": "Porter Robinson – Sad Machine (Cosmo’s Midnight Remix)"
}
}
],
"links": [
{
"index": 0,
"value": {
"location": "http://radcircle.com/2016/03/porter-robinson-sad-machine-cosmos-midnight-remix/"
}
}
]
into
"paragraphs": [
{
"index": 0,
"value": {
"value": "Porter Robinson – Sad Machine (Cosmo’s Midnight Remix)",
"location": "http://radcircle.com/2016/03/porter-robinson-sad-machine-cosmos-midnight-remix/"
}
}
]
This would be nice.