-
Notifications
You must be signed in to change notification settings - Fork 32
/
database.rules.json
352 lines (352 loc) · 24.2 KB
/
database.rules.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
{
"rules": {
"$sandbox": {
"firestream": {
"users": {
"$user_id": {
"messages": {
".indexOn": [
"from",
"date"
]
}
}
},
".read": "true",
".write": "true"
},
"time": {
"$uid": {
".validate": "newData.val() == now",
".read": "(auth != null && auth.uid == $uid)",
".write": "(auth != null && auth.uid == $uid)"
}
},
"config": {
".read": "auth != null"
},
"online": {
"$uid": {
"time": {
".validate": "newData.val() == now"
},
"uid": {
".validate": "(auth != null && auth.uid == $uid)"
}
},
".read": "auth != null"
},
"flagged": {
"messages": {
"$mid": {
"creator": {
".validate": "(root.child($sandbox + '/users/' + newData.val()).val() != null && newData.isString())"
},
"creator-entity-id": {
".validate": "(root.child($sandbox + '/users/' + newData.val()).val() != null && newData.isString())"
},
"from": {
".validate": "(root.child($sandbox + '/users/' + newData.val()).val() != null && newData.isString())"
},
"thread": {
".validate": "(root.child($sandbox + '/threads/' + newData.val()).val() != null && newData.isString())"
},
".validate": "(newData.hasChildren(['creator', 'from', 'thread', 'message', 'date']) && root.child($sandbox + '/threads/' + newData.child('thread').val() + '/messages/' + $mid).val() != null)",
"sender-entity-id": {
".validate": "newData.isString()"
},
"message": {
".validate": "true"
},
"date": {
".validate": "(newData.isNumber() && newData.val() == now)"
},
"$other": {
".validate": "false"
},
".read": "((data.val() != null || data.child('creator').val() == auth.uid) || data.child('creator-entity-id').val() == auth.uid)",
".write": "((data.val() != null || newData.child('creator').val() == auth.uid) || newData.child('creator-entity-id').val() == auth.uid)"
}
}
},
"public-threads": {
"$tid": {
".write": "((auth != null && root.child($sandbox + '/users/' + auth.uid).val() != null) && (data.val() == null || (root.child($sandbox + '/threads/' + $tid + '/meta/creator').val() == auth.uid || root.child($sandbox + '/threads/' + $tid + '/details/creator-entity-id').val() == auth.uid)))"
},
".read": "(auth != null && root.child($sandbox + '/users/' + auth.uid).val() != null)",
".indexOn": [
"creation-date"
]
},
"threads": {
"$tid": {
"details": {
"creator-entity-id": {
".validate": "((newData.isString() && newData.val() == auth.uid) && data.val() == null)"
},
"creator": {
".validate": "((newData.isString() && newData.val() == auth.uid) && data.val() == null)"
},
"creation-date": {
".validate": "((newData.isNumber() && newData.val() == now) && data.val() == null)"
},
"name": {
".validate": "(newData.isString() && newData.val().length < 100)"
},
"type": {
".validate": "newData.isNumber()"
},
"type_v4": {
".validate": "newData.isNumber()"
},
".validate": "true",
".read": "((auth != null && root.child($sandbox + '/users/' + auth.uid).val() != null) && ((data.val() == null || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4)) || root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null))",
".write": "((auth != null && root.child($sandbox + '/users/' + auth.uid).val() != null) && (data.val() == null || (((root.child($sandbox + '/threads/' + $tid + '/meta/creator').val() == auth.uid || root.child($sandbox + '/threads/' + $tid + '/details/creator-entity-id').val() == auth.uid) || root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'owner') || (root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'admin' && root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null))))"
},
"meta": {
"creator-entity-id": {
".validate": "((newData.isString() && newData.val() == auth.uid) && data.val() == null)"
},
"creator": {
".validate": "((newData.isString() && newData.val() == auth.uid) && data.val() == null)"
},
"creation-date": {
".validate": "((newData.isNumber() && newData.val() == now) && data.val() == null)"
},
"name": {
".validate": "(newData.isString() && newData.val().length < 100)"
},
"type": {
".validate": "newData.isNumber()"
},
"type_v4": {
".validate": "newData.isNumber()"
},
".validate": "true",
".read": "((auth != null && root.child($sandbox + '/users/' + auth.uid).val() != null) && ((data.val() == null || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4)) || root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null))",
".write": "((auth != null && root.child($sandbox + '/users/' + auth.uid).val() != null) && (data.val() == null || (((root.child($sandbox + '/threads/' + $tid + '/meta/creator').val() == auth.uid || root.child($sandbox + '/threads/' + $tid + '/details/creator-entity-id').val() == auth.uid) || root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'owner') || (root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'admin' && root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null))))"
},
"permissions": {
"$uid": {
".validate": "((((((newData.val() == 'owner' || newData.val() == 'admin') || newData.val() == 'member') || newData.val() == 'watcher') || newData.val() == 'banned') && root.child($sandbox + '/threads/' + $tid + '/users/' + $uid).val() != null) && (((((root.child($sandbox + '/threads/' + $tid + '/meta/creator').val() == auth.uid || root.child($sandbox + '/threads/' + $tid + '/details/creator-entity-id').val() == auth.uid) && auth.uid == $uid) && newData.val() == 'owner') || (newData.val() == 'admin' && ((root.child($sandbox + '/threads/' + $tid + '/meta/creator').val() == auth.uid || root.child($sandbox + '/threads/' + $tid + '/details/creator-entity-id').val() == auth.uid) || root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'owner'))) || (((newData.val() == 'member' || newData.val() == 'watcher') || newData.val() == 'banned') && (((root.child($sandbox + '/threads/' + $tid + '/meta/creator').val() == auth.uid || root.child($sandbox + '/threads/' + $tid + '/details/creator-entity-id').val() == auth.uid) || root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'owner') || (root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'admin' && root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null)))))"
},
".validate": "true",
".read": "((auth != null && root.child($sandbox + '/users/' + auth.uid).val() != null) && ((data.val() == null || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4)) || root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null))",
".write": "((((root.child($sandbox + '/threads/' + $tid + '/meta/creator').val() == auth.uid || root.child($sandbox + '/threads/' + $tid + '/details/creator-entity-id').val() == auth.uid) && data.val() == null) || (((root.child($sandbox + '/threads/' + $tid + '/meta/creator').val() == auth.uid || root.child($sandbox + '/threads/' + $tid + '/details/creator-entity-id').val() == auth.uid) || root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'owner') || (root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'admin' && root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null))) || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4))"
},
"lastMessage": {
".validate": "true",
".read": "((root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4)) && !(root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'banned'))",
".write": "(((root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4)) && !(root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'banned')) && !(root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'watcher'))"
},
"update": {
".validate": "newData.hasChildren(['details', 'meta', 'messages', 'users'])",
"details": {
".validate": "(newData.isNumber() && newData.val() == now)"
},
"meta": {
".validate": "(newData.isNumber() && newData.val() == now)"
},
"messages": {
".validate": "(newData.isNumber() && newData.val() == now)"
},
"users": {
".validate": "(newData.isNumber() && newData.val() == now)"
},
"$other": {
".validate": "false"
},
".read": "((auth != null && root.child($sandbox + '/users/' + auth.uid).val() != null) && ((data.val() == null || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4)) || root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null))",
".write": "(((((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4) && root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null) || (((root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4)) && !(root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'banned')) && !(root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'watcher')))"
},
"messages": {
"$mid": {
"user-firebase-id": {
".validate": "(((newData.isString() && data.val() == null) && (newData.val() == auth.uid || newData.val() == null)) && newData.isString())"
},
"date": {
".validate": "(((newData.isNumber() && newData.val() == now) && newData.isNumber()) && newData.val() == now)"
},
"from": {
".validate": "(((newData.isString() && data.val() == null) && (newData.val() == auth.uid || newData.val() == null)) && newData.isString())"
},
"to": {
"$key1": {
".validate": "newData.isString()"
},
".validate": "newData.hasChildren()"
},
"meta": {
".validate": "true"
},
"read": {
"$uid": {
"date": {
".validate": "(newData.isNumber() && newData.val() == now)"
},
"status": {
".validate": "((newData.isNumber() && newData.val() >= 0) && newData.val() <= 2)"
},
".validate": "(auth.uid == $uid || data.val() == null)"
},
".validate": "true"
},
".validate": "newData.hasChildren(['date', 'from', 'meta', 'type'])",
"type": {
".validate": "newData.isNumber()"
},
"json_v2": {
".validate": "true"
},
"$other": {
".validate": "false"
},
".write": "((((((root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4)) && !(root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'banned')) && !(root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'watcher')) && (data.val() == null || (root.child($sandbox + '/threads/' + $tid + '/messages/' + $mid + '/from').val() == auth.uid || root.child($sandbox + '/threads/' + $tid + '/messages/' + $mid + '/user-firebase-id').val() == auth.uid))) || (((root.child($sandbox + '/threads/' + $tid + '/meta/creator').val() == auth.uid || root.child($sandbox + '/threads/' + $tid + '/details/creator-entity-id').val() == auth.uid) || root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'owner') || (root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'admin' && root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null))) || ((((root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4)) && !(root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'banned')) && !(root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'watcher')) && newData.val() != null))"
},
".validate": "true",
".read": "((root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4)) && !(root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'banned'))",
".indexOn": [
"date"
]
},
"typing": {
"$uid": {
".write": "(auth.uid == $uid && (((root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4)) && !(root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'banned')) && !(root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'watcher')))"
},
".validate": "true",
".read": "((root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4)) && !(root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'banned'))"
},
"users": {
"$uid": {
"status": {
".validate": "((newData.val() == 'owner' && (root.child($sandbox + '/threads/' + $tid + '/meta/creator').val() == $uid || root.child($sandbox + '/threads/' + $tid + '/details/creator-entity-id').val() == $uid)) || newData.val() == 'member')"
},
".validate": "root.child($sandbox + '/users/' + $uid).val() != null",
".write": "((((auth.uid == $uid && data.val() != null) || (auth.uid == $uid && (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4))) || (((root.child($sandbox + '/threads/' + $tid + '/meta/creator').val() == auth.uid || root.child($sandbox + '/threads/' + $tid + '/details/creator-entity-id').val() == auth.uid) || root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'owner') || (root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'admin' && root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null))) || (root.child($sandbox + '/threads/' + $tid + '/meta/creator').val() == auth.uid || root.child($sandbox + '/threads/' + $tid + '/details/creator-entity-id').val() == auth.uid))"
},
".validate": "true",
".read": "((auth != null && root.child($sandbox + '/users/' + auth.uid).val() != null) && ((data.val() == null || (((root.child($sandbox + '/threads/' + $tid + '/meta/type').val() == 4 || root.child($sandbox + '/threads/' + $tid + '/meta/type_v4').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type').val() == 4) || root.child($sandbox + '/threads/' + $tid + '/details/type_v4').val() == 4)) || root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null))"
},
".validate": "newData.hasChildren()",
"updated": {
".validate": "true"
},
"$other": {
".validate": "false"
}
}
},
"users": {
"$uid": {
"meta": {
"allow-invites": {
".validate": "newData.isBoolean()"
},
"name": {
".validate": "(newData.isString() && newData.val().length < 100)"
},
"name-lowercase": {
".validate": "(newData.isString() && newData.val().length < 100)"
},
"pictureURL": {
".validate": "newData.isString()"
},
"uid": {
".validate": "newData.isString()"
},
"availability": {
".validate": "newData.isString()"
},
"email": {
".validate": "newData.isString()"
},
".write": "auth.uid == $uid"
},
"online": {
".validate": "newData.isBoolean()",
".write": "auth.uid == $uid"
},
"updated": {
".validate": "newData.hasChildren(['meta', 'threads', 'contacts', 'blocked'])",
"meta": {
".validate": "(newData.isNumber() && newData.val() == now)"
},
"threads": {
".validate": "(newData.isNumber() && newData.val() == now)"
},
"contacts": {
".validate": "(newData.isNumber() && newData.val() == now)"
},
"blocked": {
".validate": "(newData.isNumber() && newData.val() == now)"
},
"$other": {
".validate": "false"
},
".write": "auth.uid == $uid"
},
"last-online": {
".validate": "(newData.isNumber() && newData.val() == now)",
".write": "auth.uid == $uid"
},
"contacts": {
"$cid": {
".validate": "root.child($sandbox + '/users/' + $cid).val() != null",
".write": "auth.uid == $uid"
}
},
"blocked": {
"$bid": {
".validate": "root.child($sandbox + '/users/' + $bid).val() != null",
".write": "auth.uid == $uid"
}
},
"threads": {
"$tid": {
".validate": "root.child($sandbox + '/threads/' + $tid).val() != null",
".write": "(auth.uid == $uid || (((auth != null && root.child($sandbox + '/users/' + auth.uid).val() != null) && root.child($sandbox + '/threads/' + $tid).val() != null) && (((root.child($sandbox + '/threads/' + $tid + '/meta/creator').val() == auth.uid || root.child($sandbox + '/threads/' + $tid + '/details/creator-entity-id').val() == auth.uid) || root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'owner') || (root.child($sandbox + '/threads/' + $tid + '/permissions/' + auth.uid).val() == 'admin' && root.child($sandbox + '/threads/' + $tid + '/users/' + auth.uid).val() != null))))"
}
}
},
".read": "auth != null",
".indexOn": [
"meta/name",
"meta/phone",
"meta/email",
"meta/location",
"meta/country-code",
"meta/username",
"meta/name-lowercase"
]
},
"location": {
"$key": {
"g": {
".validate": "true"
},
"l": {
"0": {
".validate": "((newData.isNumber() && newData.val() >= -90) && newData.val() <= 90)"
},
"1": {
".validate": "((newData.isNumber() && newData.val() >= -180) && newData.val() <= 180)"
},
"$other": {
".validate": "false"
},
".validate": "true"
},
"$other": {
".validate": "false"
},
".validate": "newData.hasChildren(['g', 'l'])",
".write": "(auth != null && root.child($sandbox + '/users/' + auth.uid).val() != null)"
},
".read": "(auth != null && root.child($sandbox + '/users/' + auth.uid).val() != null)",
".indexOn": [
"g"
]
}
}
}
}