GooooGLE commited on
Commit
9593804
·
verified ·
1 Parent(s): b83539d

Update test.json

Browse files
Files changed (1) hide show
  1. test.json +40 -0
test.json CHANGED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "users": [
3
+ {
4
+ "id": 1,
5
+ "name": "John Doe",
6
+ "email": "[email protected]",
7
+ "age": 29,
8
+ "purchases": [
9
+ {
10
+ "item": "Laptop",
11
+ "price": 1200,
12
+ "date": "2024-10-01"
13
+ },
14
+ {
15
+ "item": "Wireless Mouse",
16
+ "price": 25,
17
+ "date": "2024-10-05"
18
+ }
19
+ ]
20
+ },
21
+ {
22
+ "id": 2,
23
+ "name": "Jane Smith",
24
+ "email": "[email protected]",
25
+ "age": 34,
26
+ "purchases": [
27
+ {
28
+ "item": "Smartphone",
29
+ "price": 800,
30
+ "date": "2024-09-20"
31
+ },
32
+ {
33
+ "item": "Headphones",
34
+ "price": 100,
35
+ "date": "2024-09-30"
36
+ }
37
+ ]
38
+ }
39
+ ]
40
+ }