-
Notifications
You must be signed in to change notification settings - Fork 1
/
db.json
168 lines (168 loc) · 4.08 KB
/
db.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"users": [
{
"email": "jao@mail.com",
"password": "$2a$10$1yCLt3iNVMaoSoRKkQm8W.ZPt1eC7nPGwgsrkA77IrJoHArkHYMHS",
"name": "Jão Tirágua",
"type": "teacher",
"students": [1],
"id": 1
},
{
"email": "nina@mail.com",
"password": "$2a$10$C0JniLuva7gyIFbWdpLRNurnGocKTJ1UbOWtqG5VC5YLto0ULsT6G",
"name": "Nina Silva",
"type": "student",
"teachers": [1],
"id": 2
}
],
"teachers": [
{
"name": "Jão Tirágua",
"userId": 1,
"id": 1,
"classes": [1]
}
],
"students": [
{
"name": "Nina Silva",
"userId": 2,
"id": 1,
"classes": []
}
],
"classes": [
{
"name": "Ballet Class 1º Ano",
"userId": 1,
"id": 1
}
],
"exercises": [
{
"name": "Pliés",
"classId": 1,
"userId": 1,
"id": 1,
"sequences": [
{
"sequence": [
"1ª - 2x Demi: 8t, 1x Grand: 8t, 1x Suplesse: 8t",
"2ª - 2x Demi: 8t, 1x Grand: 8t, 1x Suplesse Barra: 8t",
"4ª - 2x Grand: 16t, Suplesse Out: 8t",
"5ª - 2x Grand: 16t, Cambret: 8t",
"Sous-sus, detourne, talon, degagé, 1ª: 6t",
"1ª - 4x Elevé: 8t, 4x Demi (demi-pointe): 8t, Balance"
],
"music": {
"name": "Lucy in the Sky with Diamonds",
"album": "Reimagined for Ballet Class, Vol. 1: Songs from the 60s",
"artist": "Andrew Holdsworth",
"link": ""
}
}
]
},
{
"name": "Battement Tandu",
"classId": 1,
"userId": 1,
"id": 2,
"sequences": [
{
"sequence": [
"1ª - En Croix en dehors: 16t, 1x: 2t, 2x: 1t",
"Repeat en dedans",
"1ª - Em Croix em dehors: 16t, Tandu, foundue, fermé, alongé: 4t",
"Repeat en dedans"
],
"music": {
"name": "I Heard It through the Grapevine",
"album": "Reimagined for Ballet Class, Vol. 1: Songs from the 60s",
"artist": "Andrew Holdsworth",
"link": ""
}
}
]
},
{
"name": "Battement Glissé",
"classId": 1,
"userId": 1,
"id": 3,
"sequences": [
{
"sequence": [
"1ª - En croix en dehors: 16t, 1x: 4t",
"Repeat en dedans",
"1ª - En croix en dehors: 16t 2x: 4t",
"Sous-sus, detourne, talon, degagé, 1ª",
"repeat other side"
],
"music": {
"name": "Come On Eileen",
"album": "Reimagined for Ballet Class, Vol. 1: Songs from the 80s",
"artist": "Andrew Holdsworth",
"link": ""
}
}
]
},
{
"name": "Battement Jeté",
"classId": 1,
"userId": 1,
"id": 4,
"sequences": [
{
"sequence": [
"1ª - En croix en dehors: 16t, 1x: 4t - hold-out: 3t",
"Repeat en dedans",
"1ª - Em croix em dehors: 32t:",
"En Croix en dehors: 1x (4t) - hold out",
"En Croix en dedans: 1x (4t) - hold out",
"En Croix en dehors: 1x (4t) - hold out / 1x (1t) - wait (3t)",
"En Croix en dehors: 1x (4t) - hold out / 1x (1t) - wait (3t)",
"sous-sus / detourne"
],
"music": {
"name": "Lady Madonna",
"album": "Reimagined for Ballet Class, Vol. 1: Songs from the 60s",
"artist": "Andrew Holdsworth",
"link": ""
}
}
]
},
{
"name": "Rond de Jambe par Terre",
"classId": 1,
"userId": 1,
"id": 5,
"sequences": []
},
{
"name": "Battement Fondu",
"classId": 1,
"userId": 1,
"id": 6,
"sequences": []
},
{
"name": "Battement Frappé",
"classId": 1,
"userId": 1,
"id": 7,
"sequences": []
},
{
"name": "Grand Battement",
"classId": 1,
"userId": 1,
"id": 8,
"sequences": []
}
]
}