Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "users": [
- {
- "id": 1,
- "name": "John Doe",
- "email": "johndoe@example.com",
- "age": 32,
- "gender": "Male",
- "address": {
- "street": "123 Main St",
- "city": "New York",
- "state": "NY",
- "zip": "10001"
- },
- "phone": "555-555-1212",
- "orders": [
- {
- "id": 1,
- "product": "iPhone 12",
- "quantity": 2,
- "price": 1099.99,
- "status": "Delivered"
- },
- {
- "id": 2,
- "product": "MacBook Pro",
- "quantity": 1,
- "price": 2399.99,
- "status": "Pending"
- }
- ]
- },
- {
- "id": 2,
- "name": "Jane Smith",
- "email": "janesmith@example.com",
- "age": 25,
- "gender": "Female",
- "address": {
- "street": "456 Elm St",
- "city": "Los Angeles",
- "state": "CA",
- "zip": "90001"
- },
- "phone": "555-555-2323",
- "orders": [
- {
- "id": 3,
- "product": "Apple Watch Series 6",
- "quantity": 1,
- "price": 399.99,
- "status": "Delivered"
- },
- {
- "id": 4,
- "product": "iPad Pro",
- "quantity": 1,
- "price": 899.99,
- "status": "Cancelled"
- }
- ]
- }
- ]
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement