Files
spring-boot-data-geode/spring-geode/src/test/resources/data-example-purchaseorder.json
2020-05-06 00:45:06 -07:00

37 lines
828 B
JSON

{
"@type": "example.app.pos.model.PurchaseOrder",
"id": 1,
"lineItems": [
{
"@type": "example.app.pos.model.LineItem",
"product": {
"@type": "example.app.pos.model.Product",
"name": "Apple iPad",
"price": 1499.00,
"category": "SHOPPING"
},
"quantity": 2
},
{
"@type": "example.app.pos.model.LineItem",
"product": {
"@type": "example.app.pos.model.Product",
"name": "Apple iPhone",
"price": 1249.00,
"category": "SHOPPING"
},
"quantity": 3
},
{
"@type": "example.app.pos.model.LineItem",
"product": {
"@type": "example.app.pos.model.Product",
"name": "Apple iPod",
"price": 599.00,
"category": "SHOPPING"
},
"quantity" : 1
}
]
}