File tree Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "users" : [
3
+ {
4
+ "id" : 1 ,
5
+ "name" : " Alice" ,
6
+ "department" : " Sales" ,
7
+ "title" : " Manager" ,
8
+ "location" : " Chicago"
9
+ },
10
+ {
11
+ "id" : 2 ,
12
+ "name" : " Bob" ,
13
+ "department" : " Sales" ,
14
+ "title" : " Employee" ,
15
+ "location" : " Chicago"
16
+ },
17
+ {
18
+ "id" : 3 ,
19
+ "name" : " Carol" ,
20
+ "department" : " Financo" ,
21
+ "title" : " CFO" ,
22
+ "location" : " New York"
23
+ }
24
+ ],
25
+ "documents" : [
26
+ {
27
+ "id" : 1 ,
28
+ "name" : " Document #1" ,
29
+ "owner" : " Alice" ,
30
+ "department" : " Sales" ,
31
+ "status" : " draft"
32
+ },
33
+ {
34
+ "id" : 2 ,
35
+ "name" : " Document #2" ,
36
+ "owner" : " Alice" ,
37
+ "department" : " Sales" ,
38
+ "status" : " final"
39
+ },
40
+ {
41
+ "id" : 3 ,
42
+ "name" : " Document #3" ,
43
+ "owner" : " Bob" ,
44
+ "department" : " Sales" ,
45
+ "status" : " published"
46
+ },
47
+ {
48
+ "id" : 4 ,
49
+ "name" : " Document #4" ,
50
+ "owner" : " Carol" ,
51
+ "department" : " Finance" ,
52
+ "status" : " draft"
53
+ }
54
+ ]
55
+ }
You can’t perform that action at this time.
0 commit comments