-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjson_example.js
More file actions
94 lines (91 loc) · 1.85 KB
/
Copy pathjson_example.js
File metadata and controls
94 lines (91 loc) · 1.85 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
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
91
92
93
94
// ALL THE NEEDED DATA VALUES
[
{
"name": "A", // username
"cm": 161.5, // centimeters rounded to nearest whole number
"ft": 5, // feet
"inch": "3.4", // inches, can be float
"background_color": "#8f3b76", // specified hex
"gender": "male", // specified gender
"id": 1 // ID order needed
}
]
[
{
name: 'Husky',
cm: 180.34,
ft: 5,
inch: '11.00',
background_color: '#00FF00',
gender: 'male',
id: 1
},
{
name: 'HuskyDev',
cm: 162.56,
ft: 5,
inch: '4.00',
background_color: '#EEFF00',
gender: 'male',
id: 2
}
]
[
{
"name": "A",
"cm": 161,
"ft": 5,
"inch": "3.4",
"background_color": "#8f3b76",
"text_color": "white",
"person_no_nameless": 0,
"cancel": false,
"start": false,
"gender": "male",
"id": 1,
"avatarAttributes": {
"height": "304.7408px",
"color": "#8f3b76",
"margin_bottom": 15.579200000000002,
"cancel": false
}
},
{
"name": "B",
"cm": 159,
"ft": 5,
"inch": "2.6",
"background_color": "#309975",
"text_color": "white",
"person_no_nameless": 0,
"cancel": false,
"start": false,
"gender": "female",
"id": 2,
"avatarAttributes": {
"height": "292.2738px",
"color": "#309975",
"margin_bottom": 24.406200000000002,
"cancel": false
}
},
{
"name": "c",
"cm": 174,
"ft": 5,
"inch": "8.5",
"background_color": "#ffa822",
"text_color": "black",
"person_no_nameless": 0,
"cancel": false,
"start": false,
"gender": "female",
"id": 3,
"avatarAttributes": {
"height": "329.3472px",
"color": "#ffa822",
"margin_bottom": 14.6328,
"cancel": false
}
}
]