-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataStructure.json
40 lines (40 loc) · 1.18 KB
/
DataStructure.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
{
"workoutId": 12345,
"name": "Chest & Triceps",
"date": "time & date",
"exercises": [
{
"name": "Bench Press",
"exerciseId": "BP1",
"vol": 1760,
"perceivedEffort": 60,
"sets": [
{"id": 1, "weight": 50, "repetitions": 12},
{"id": 2, "weight": 60, "repetitions": 10},
{"id": 3, "weight": 70, "repetitions": 8}
]
},
{
"name": "Incline Bench Press",
"exerciseId": "BP2",
"vol": 1760,
"perceivedEffort": 62,
"sets": [
{"id": 1, "weight": 50, "repetitions": 12},
{"id": 2, "weight": 60, "repetitions": 10},
{"id": 3, "weight": 70, "repetitions": 8}
]
},
{
"name": "Skull Crushers",
"exerciseId": "SC1",
"vol": 1760,
"perceivedEffort": 80,
"sets": [
{"id": 1, "weight": 50, "repetitions": 12},
{"id": 2, "weight": 60, "repetitions": 10},
{"id": 3, "weight": 70, "repetitions": 8}
]
}
]
}