Skip to content

Instantly share code, notes, and snippets.

@wesplunk
Created February 23, 2012 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wesplunk/1894742 to your computer and use it in GitHub Desktop.
Save wesplunk/1894742 to your computer and use it in GitHub Desktop.
{
"id":"1"
,"type":"Order Line"
,"price":9.99
,"quantity":2
,"orderNumber":39393737
,"relationship":[
{
"entity":"solution"
"entityId":"1234"
"type":"purchased"
}
,{
"entity":"party"
"entityId":"4256"
"type":"billTo"
}
,{
"entity":"party"
"entityId":"5678"
"type":"shipTo"
}
]
}
{
"id":"2"
,"type":"Order Line"
,"price":11.99
,"quantity":3
,"orderNumber":39393456
,"relationship":[
{
"entity":"solution"
"entityId":"11384"
"type":"purchased"
}
,{
"entity":"party"
"entityId":"5678"
"type":"billTo"
}
,{
"entity":"party"
"entityId":"4256"
"type":"shipTo"
}
]
}
{
id: 2
,type: "Order Line"
,price: 9.99
,quantity: 2
,orderNumber: 39393737
,relationship.entity:[
"solution"
,"party"
]
,relationship.entityId:[
1234
,5678
,4256
]
,relationship.type:[
"purchased"
,"billTo"
,"shipTo"
]
}
{
id: 2
,type: "Order Line"
,price: 11.99
,quantity: 3
,orderNumber: 39393456
,relationship.entity:[
"solution"
,"party"
]
,relationship.entityId:[
11384
,5678
,4256
]
,relationship.type:[
"purchased"
,"billTo"
,"shipTo"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment