4
0

orders.json 849 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [
  2. {
  3. "order_id": 1,
  4. "product_id": 12,
  5. "quantity": 2,
  6. "amount": 56.0,
  7. "shipping": 15.0,
  8. "tax": 2.0,
  9. "shipping_address": "Mataderos 2312"
  10. },
  11. {
  12. "order_id": 2,
  13. "product_id": 15,
  14. "quantity": 3,
  15. "amount": 256.0,
  16. "shipping": 30.0,
  17. "tax": 16.0,
  18. "shipping_address": "1234 NW Bobcat"
  19. },
  20. {
  21. "order_id": 3,
  22. "product_id": 11,
  23. "quantity": 5,
  24. "amount": 536.0,
  25. "shipping": 50.0,
  26. "tax": 24.0,
  27. "shipping_address": "20 Havelock"
  28. },
  29. {
  30. "order_id": 4,
  31. "product_id": 8,
  32. "quantity": 8,
  33. "amount": 126.0,
  34. "shipping": 20.0,
  35. "tax": 12.0,
  36. "shipping_address": "224 Pandan Loop"
  37. },
  38. {
  39. "order_id": 5,
  40. "product_id": 24,
  41. "quantity": 1,
  42. "amount": 46.0,
  43. "shipping": 10.0,
  44. "tax": 2.0,
  45. "shipping_address": "No.10 Jalan Besar"
  46. }
  47. ]