forked from m-ochi/recon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample-preference.json
91 lines (90 loc) · 1.79 KB
/
sample-preference.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"alice":
{
"gender":
{
"male": 9,
"female": 1
},
"age":
{
"20-24": 3,
"25-29": 6,
"30-34": 1,
"35-39": 0
},
"body":
{
"athletic": 5,
"average": 4,
"slim": 1,
"overweight":0
}
},
"amy":
{
"gender":
{
"male": 20,
"female": 0
},
"age":
{
"20-24": 0,
"25-29": 5,
"30-34": 10,
"35-39": 5
},
"body":
{
"athletic": 18,
"average": 2,
"slim": 0,
"overweight":0
}
},
"bob":
{
"gender":
{
"male": 5,
"female": 95
},
"age":
{
"20-24": 70,
"25-29": 20,
"30-34": 10,
"35-39": 0
},
"body":
{
"athletic": 0,
"average": 30,
"slim": 50,
"overweight":20
}
},
"ben":
{
"gender":
{
"male": 0,
"female":50
},
"age":
{
"20-24": 5,
"25-29": 20,
"30-34": 20,
"35-39": 5
},
"body":
{
"athletic": 0,
"average": 20,
"slim": 5,
"overweight":25
}
}
}