Advertisement
goldnera

Untitled

May 14th, 2023
501
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. {
  2. "users": [
  3. {
  4. "id": 1,
  5. "name": "John Doe",
  6. "email": "johndoe@example.com",
  7. "age": 32,
  8. "gender": "Male",
  9. "address": {
  10. "street": "123 Main St",
  11. "city": "New York",
  12. "state": "NY",
  13. "zip": "10001"
  14. },
  15. "phone": "555-555-1212",
  16. "orders": [
  17. {
  18. "id": 1,
  19. "product": "iPhone 12",
  20. "quantity": 2,
  21. "price": 1099.99,
  22. "status": "Delivered"
  23. },
  24. {
  25. "id": 2,
  26. "product": "MacBook Pro",
  27. "quantity": 1,
  28. "price": 2399.99,
  29. "status": "Pending"
  30. }
  31. ]
  32. },
  33. {
  34. "id": 2,
  35. "name": "Jane Smith",
  36. "email": "janesmith@example.com",
  37. "age": 25,
  38. "gender": "Female",
  39. "address": {
  40. "street": "456 Elm St",
  41. "city": "Los Angeles",
  42. "state": "CA",
  43. "zip": "90001"
  44. },
  45. "phone": "555-555-2323",
  46. "orders": [
  47. {
  48. "id": 3,
  49. "product": "Apple Watch Series 6",
  50. "quantity": 1,
  51. "price": 399.99,
  52. "status": "Delivered"
  53. },
  54. {
  55. "id": 4,
  56. "product": "iPad Pro",
  57. "quantity": 1,
  58. "price": 899.99,
  59. "status": "Cancelled"
  60. }
  61. ]
  62. }
  63. ]
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement