-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrelation.mock.json
More file actions
52 lines (52 loc) · 1.1 KB
/
relation.mock.json
File metadata and controls
52 lines (52 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"local": {
"userAID": "@uuid()@",
"userAName": "@letter(4)@",
"userBID": "@uuid()@",
"userBName": "@letter(4)@",
"bookA1ID":"@uuid()@",
"bookA1Name": "a1",
"bookA2ID":"@uuid()@",
"bookA2Name": "a2",
"bookB1ID":"@uuid()@",
"bookB1Name": "b1",
"bookB2ID":"@uuid()@",
"bookB2Name": "b2"
},
"table" : {
"user": [
{
"id": "@local.userA@",
"name": "@local.userAName@",
"is_super": false
},
{
"id": "@local.userB@",
"name": "@local.userBName@",
"is_super": false
}
],
"book": [
{
"id": "@local.bookA1ID@",
"name": "@local.bookA1Name@",
"user_id": "@local.userAID"
},
{
"id": "@local.bookA2ID@",
"name": "@local.bookA2Name@",
"user_id": "@local.userAID"
},
{
"id": "@local.bookB1ID@",
"name": "@local.bookB1Name@",
"user_id": "@local.userBID"
},
{
"id": "@local.bookB2ID@",
"name": "@local.bookB2Name@",
"user_id": "@local.userBID"
}
]
}
}