I'm not sure if this will apply to everyone hoping to consume this API but the mapping algorithm we use for HoneyBlend would barf on the returned JSON as it's not a true Key-Value Pair mapping (the key is dynamic).
"saveditems":{
"51":{
"id":"3620",
"number":"141"
},
"27":{
"id":"3627",
"number":"160"
},
"60":{
"id":"5792",
"number":"119"
} ...
Could it be something like?:
"saveditems":{
{
"item_type_id":"51", "item":{
"item_id":"3620",
"number":"141"
} },
...Or
"saveditems":{
"item":{
"item_type_id":"51",
"item_id":"3620",
"number":"141"
},
...