ffbb-data-client 2.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (207) hide show
  1. ffbb_api_client_v3/__init__.py +25 -0
  2. ffbb_data_client/__init__.py +175 -0
  3. ffbb_data_client/clients/__init__.py +13 -0
  4. ffbb_data_client/clients/api_ffbb_app_client.py +2475 -0
  5. ffbb_data_client/clients/ffbb_data_client.py +2789 -0
  6. ffbb_data_client/clients/meilisearch_client.py +218 -0
  7. ffbb_data_client/clients/meilisearch_ffbb_client.py +647 -0
  8. ffbb_data_client/config.py +153 -0
  9. ffbb_data_client/data/__init__.py +25 -0
  10. ffbb_data_client/data/collections.json +1364 -0
  11. ffbb_data_client/data/endpoint_discovery.json +1875 -0
  12. ffbb_data_client/data/indexes.json +501 -0
  13. ffbb_data_client/data/openapi.json +35713 -0
  14. ffbb_data_client/data/openapi_full.json +37622 -0
  15. ffbb_data_client/helpers/__init__.py +27 -0
  16. ffbb_data_client/helpers/http_requests_helper.py +73 -0
  17. ffbb_data_client/helpers/http_requests_utils.py +502 -0
  18. ffbb_data_client/helpers/meilisearch_client_extension.py +153 -0
  19. ffbb_data_client/helpers/multi_search_query_helper.py +35 -0
  20. ffbb_data_client/models/__init__.py +241 -0
  21. ffbb_data_client/models/affiche.py +45 -0
  22. ffbb_data_client/models/cartographie.py +82 -0
  23. ffbb_data_client/models/categorie.py +55 -0
  24. ffbb_data_client/models/categorie_type.py +42 -0
  25. ffbb_data_client/models/clock.py +38 -0
  26. ffbb_data_client/models/club_contacts.py +77 -0
  27. ffbb_data_client/models/code.py +7 -0
  28. ffbb_data_client/models/commune.py +66 -0
  29. ffbb_data_client/models/competition_fields.py +309 -0
  30. ffbb_data_client/models/competition_id.py +116 -0
  31. ffbb_data_client/models/competition_id_categorie.py +31 -0
  32. ffbb_data_client/models/competition_id_sexe.py +31 -0
  33. ffbb_data_client/models/competition_id_type_competition.py +27 -0
  34. ffbb_data_client/models/competition_id_type_competition_generique.py +24 -0
  35. ffbb_data_client/models/competition_origine.py +69 -0
  36. ffbb_data_client/models/competition_origine_categorie.py +23 -0
  37. ffbb_data_client/models/competition_origine_type_competition.py +14 -0
  38. ffbb_data_client/models/competition_origine_type_competition_generique.py +24 -0
  39. ffbb_data_client/models/competition_type.py +6 -0
  40. ffbb_data_client/models/competitions_facet_distribution.py +65 -0
  41. ffbb_data_client/models/competitions_facet_stats.py +14 -0
  42. ffbb_data_client/models/competitions_hit.py +232 -0
  43. ffbb_data_client/models/competitions_multi_search_query.py +40 -0
  44. ffbb_data_client/models/competitions_query.py +11 -0
  45. ffbb_data_client/models/configuration_models.py +5 -0
  46. ffbb_data_client/models/contact_info.py +18 -0
  47. ffbb_data_client/models/content_multi_search_query.py +93 -0
  48. ffbb_data_client/models/coordonnees.py +27 -0
  49. ffbb_data_client/models/coordonnees_type.py +5 -0
  50. ffbb_data_client/models/document_flyer.py +205 -0
  51. ffbb_data_client/models/document_flyer_type.py +6 -0
  52. ffbb_data_client/models/engagement_contacts.py +97 -0
  53. ffbb_data_client/models/engagements_facet_distribution.py +59 -0
  54. ffbb_data_client/models/engagements_facet_stats.py +14 -0
  55. ffbb_data_client/models/engagements_hit.py +192 -0
  56. ffbb_data_client/models/engagements_multi_search_query.py +41 -0
  57. ffbb_data_client/models/etat.py +6 -0
  58. ffbb_data_client/models/external_competition_id.py +42 -0
  59. ffbb_data_client/models/external_id.py +72 -0
  60. ffbb_data_client/models/facet_distribution.py +13 -0
  61. ffbb_data_client/models/facet_stats.py +13 -0
  62. ffbb_data_client/models/field_set.py +10 -0
  63. ffbb_data_client/models/folder.py +35 -0
  64. ffbb_data_client/models/formation_session.py +60 -0
  65. ffbb_data_client/models/formations_facet_distribution.py +61 -0
  66. ffbb_data_client/models/formations_facet_stats.py +14 -0
  67. ffbb_data_client/models/formations_hit.py +277 -0
  68. ffbb_data_client/models/formations_multi_search_query.py +41 -0
  69. ffbb_data_client/models/game_stats_model.py +57 -0
  70. ffbb_data_client/models/game_stats_models.py +5 -0
  71. ffbb_data_client/models/generic_search.py +92 -0
  72. ffbb_data_client/models/geo.py +27 -0
  73. ffbb_data_client/models/geo_sort_order.py +6 -0
  74. ffbb_data_client/models/get_commune_response.py +18 -0
  75. ffbb_data_client/models/get_competition_response.py +523 -0
  76. ffbb_data_client/models/get_configuration_response.py +45 -0
  77. ffbb_data_client/models/get_engagement_response.py +23 -0
  78. ffbb_data_client/models/get_entraineur_response.py +18 -0
  79. ffbb_data_client/models/get_formation_response.py +28 -0
  80. ffbb_data_client/models/get_officiel_response.py +18 -0
  81. ffbb_data_client/models/get_organisme_response.py +476 -0
  82. ffbb_data_client/models/get_poule_response.py +68 -0
  83. ffbb_data_client/models/get_pratique_response.py +18 -0
  84. ffbb_data_client/models/get_rencontre_response.py +93 -0
  85. ffbb_data_client/models/get_saisons_response.py +56 -0
  86. ffbb_data_client/models/get_salle_response.py +20 -0
  87. ffbb_data_client/models/get_terrain_response.py +16 -0
  88. ffbb_data_client/models/get_tournoi_response.py +16 -0
  89. ffbb_data_client/models/gradient_color.py +27 -0
  90. ffbb_data_client/models/hit.py +16 -0
  91. ffbb_data_client/models/id_engagement_equipe.py +32 -0
  92. ffbb_data_client/models/id_organisme_equipe.py +51 -0
  93. ffbb_data_client/models/id_organisme_equipe1_logo.py +28 -0
  94. ffbb_data_client/models/id_poule.py +27 -0
  95. ffbb_data_client/models/jour.py +11 -0
  96. ffbb_data_client/models/label.py +15 -0
  97. ffbb_data_client/models/labellisation.py +30 -0
  98. ffbb_data_client/models/live.py +192 -0
  99. ffbb_data_client/models/lives.py +6 -0
  100. ffbb_data_client/models/logo.py +28 -0
  101. ffbb_data_client/models/multi_search_queries.py +24 -0
  102. ffbb_data_client/models/multi_search_query.py +96 -0
  103. ffbb_data_client/models/multi_search_result_competitions.py +14 -0
  104. ffbb_data_client/models/multi_search_result_engagements.py +14 -0
  105. ffbb_data_client/models/multi_search_result_formations.py +12 -0
  106. ffbb_data_client/models/multi_search_result_organismes.py +12 -0
  107. ffbb_data_client/models/multi_search_result_pratiques.py +12 -0
  108. ffbb_data_client/models/multi_search_result_rencontres.py +12 -0
  109. ffbb_data_client/models/multi_search_result_salles.py +12 -0
  110. ffbb_data_client/models/multi_search_result_terrains.py +12 -0
  111. ffbb_data_client/models/multi_search_result_tournois.py +12 -0
  112. ffbb_data_client/models/multi_search_results.py +103 -0
  113. ffbb_data_client/models/multi_search_results_class.py +96 -0
  114. ffbb_data_client/models/nature_sol.py +57 -0
  115. ffbb_data_client/models/niveau.py +10 -0
  116. ffbb_data_client/models/niveau_class.py +27 -0
  117. ffbb_data_client/models/niveau_extractor.py +214 -0
  118. ffbb_data_client/models/niveau_info.py +64 -0
  119. ffbb_data_client/models/niveau_models.py +14 -0
  120. ffbb_data_client/models/niveau_type.py +10 -0
  121. ffbb_data_client/models/objectif.py +7 -0
  122. ffbb_data_client/models/organisateur.py +197 -0
  123. ffbb_data_client/models/organisateur_type.py +6 -0
  124. ffbb_data_client/models/organisme_fields.py +327 -0
  125. ffbb_data_client/models/organisme_id_pere.py +177 -0
  126. ffbb_data_client/models/organismes_facet_distribution.py +46 -0
  127. ffbb_data_client/models/organismes_facet_stats.py +14 -0
  128. ffbb_data_client/models/organismes_hit.py +196 -0
  129. ffbb_data_client/models/organismes_multi_search_query.py +41 -0
  130. ffbb_data_client/models/organismes_query.py +8 -0
  131. ffbb_data_client/models/phase_code.py +23 -0
  132. ffbb_data_client/models/poule.py +35 -0
  133. ffbb_data_client/models/poule_fields.py +261 -0
  134. ffbb_data_client/models/poule_rencontre_item_model.py +69 -0
  135. ffbb_data_client/models/poules_models.py +6 -0
  136. ffbb_data_client/models/poules_query.py +9 -0
  137. ffbb_data_client/models/pratique.py +7 -0
  138. ffbb_data_client/models/pratiques_facet_distribution.py +29 -0
  139. ffbb_data_client/models/pratiques_facet_stats.py +14 -0
  140. ffbb_data_client/models/pratiques_hit.py +310 -0
  141. ffbb_data_client/models/pratiques_hit_type.py +9 -0
  142. ffbb_data_client/models/pratiques_multi_search_query.py +41 -0
  143. ffbb_data_client/models/pratiques_type_class.py +45 -0
  144. ffbb_data_client/models/publication_internet.py +6 -0
  145. ffbb_data_client/models/purple_logo.py +24 -0
  146. ffbb_data_client/models/query_fields_manager.py +75 -0
  147. ffbb_data_client/models/ranking_engagement.py +41 -0
  148. ffbb_data_client/models/rankings_models.py +6 -0
  149. ffbb_data_client/models/rencontres_engagement.py +23 -0
  150. ffbb_data_client/models/rencontres_facet_distribution.py +65 -0
  151. ffbb_data_client/models/rencontres_facet_stats.py +14 -0
  152. ffbb_data_client/models/rencontres_hit.py +271 -0
  153. ffbb_data_client/models/rencontres_multi_search_query.py +41 -0
  154. ffbb_data_client/models/saison.py +23 -0
  155. ffbb_data_client/models/saison_fields.py +36 -0
  156. ffbb_data_client/models/saisons_models.py +6 -0
  157. ffbb_data_client/models/saisons_query.py +9 -0
  158. ffbb_data_client/models/salle.py +56 -0
  159. ffbb_data_client/models/salles_facet_distribution.py +14 -0
  160. ffbb_data_client/models/salles_facet_stats.py +14 -0
  161. ffbb_data_client/models/salles_hit.py +153 -0
  162. ffbb_data_client/models/salles_multi_search_query.py +40 -0
  163. ffbb_data_client/models/sexe.py +9 -0
  164. ffbb_data_client/models/sexe_class.py +31 -0
  165. ffbb_data_client/models/source.py +5 -0
  166. ffbb_data_client/models/status.py +5 -0
  167. ffbb_data_client/models/team_engagement.py +56 -0
  168. ffbb_data_client/models/team_ranking.py +108 -0
  169. ffbb_data_client/models/terrains_categorie_championnat_3x3_libelle.py +5 -0
  170. ffbb_data_client/models/terrains_facet_distribution.py +41 -0
  171. ffbb_data_client/models/terrains_facet_stats.py +14 -0
  172. ffbb_data_client/models/terrains_hit.py +223 -0
  173. ffbb_data_client/models/terrains_multi_search_query.py +42 -0
  174. ffbb_data_client/models/terrains_name.py +5 -0
  175. ffbb_data_client/models/terrains_sexe_enum.py +7 -0
  176. ffbb_data_client/models/terrains_storage.py +5 -0
  177. ffbb_data_client/models/tournoi_type_class.py +35 -0
  178. ffbb_data_client/models/tournoi_type_enum.py +7 -0
  179. ffbb_data_client/models/tournoi_types_3x3.py +43 -0
  180. ffbb_data_client/models/tournoi_types_3x3_libelle.py +60 -0
  181. ffbb_data_client/models/tournoi_types_3x3_libelle_enum.py +10 -0
  182. ffbb_data_client/models/tournois_facet_distribution.py +41 -0
  183. ffbb_data_client/models/tournois_facet_stats.py +14 -0
  184. ffbb_data_client/models/tournois_hit.py +132 -0
  185. ffbb_data_client/models/tournois_hit_type.py +5 -0
  186. ffbb_data_client/models/tournois_libelle.py +7 -0
  187. ffbb_data_client/models/tournois_multi_search_query.py +40 -0
  188. ffbb_data_client/models/type_association.py +23 -0
  189. ffbb_data_client/models/type_association_libelle.py +30 -0
  190. ffbb_data_client/models/type_class.py +23 -0
  191. ffbb_data_client/models/type_competition.py +8 -0
  192. ffbb_data_client/models/type_competition_generique.py +31 -0
  193. ffbb_data_client/models/type_enum.py +7 -0
  194. ffbb_data_client/models/type_league.py +6 -0
  195. ffbb_data_client/py.typed +0 -0
  196. ffbb_data_client/utils/__init__.py +27 -0
  197. ffbb_data_client/utils/cache_manager.py +393 -0
  198. ffbb_data_client/utils/converter_utils.py +329 -0
  199. ffbb_data_client/utils/input_validation.py +360 -0
  200. ffbb_data_client/utils/retry_utils.py +478 -0
  201. ffbb_data_client/utils/secure_logging.py +153 -0
  202. ffbb_data_client/utils/token_manager.py +115 -0
  203. ffbb_data_client-2.0.0.dist-info/METADATA +339 -0
  204. ffbb_data_client-2.0.0.dist-info/RECORD +207 -0
  205. ffbb_data_client-2.0.0.dist-info/WHEEL +5 -0
  206. ffbb_data_client-2.0.0.dist-info/licenses/LICENSE.txt +201 -0
  207. ffbb_data_client-2.0.0.dist-info/top_level.txt +2 -0
@@ -0,0 +1,501 @@
1
+ {
2
+ "available_indexes": [
3
+ "ffbbnational_galeries",
4
+ "ffbbnational_pratiques",
5
+ "ffbbnational_rss",
6
+ "ffbbserver_competitions",
7
+ "ffbbserver_engagements",
8
+ "ffbbserver_formations",
9
+ "ffbbserver_organismes",
10
+ "ffbbserver_rencontres",
11
+ "ffbbserver_salles",
12
+ "ffbbserver_terrains",
13
+ "ffbbserver_tournois",
14
+ "ffbbsite_news",
15
+ "youtube_videos"
16
+ ],
17
+ "indexes": [
18
+ {
19
+ "available": true,
20
+ "estimatedTotalHits": 98,
21
+ "indexUid": "ffbbnational_galeries",
22
+ "sampleKeys": [
23
+ "count",
24
+ "cover",
25
+ "creator",
26
+ "date",
27
+ "date_created",
28
+ "date_published",
29
+ "date_timestamp",
30
+ "date_updated",
31
+ "id",
32
+ "images",
33
+ "surtitle",
34
+ "tags",
35
+ "thumbnail",
36
+ "title",
37
+ "type"
38
+ ],
39
+ "status": "available"
40
+ },
41
+ {
42
+ "available": true,
43
+ "estimatedTotalHits": 690,
44
+ "indexUid": "ffbbnational_pratiques",
45
+ "sampleKeys": [
46
+ "_geo",
47
+ "action",
48
+ "adresse",
49
+ "adresse_salle",
50
+ "adresse_structure",
51
+ "affiche",
52
+ "assurance",
53
+ "cartographie",
54
+ "code",
55
+ "cp_salle",
56
+ "date_created",
57
+ "date_debut",
58
+ "date_debut_timestamp",
59
+ "date_demande",
60
+ "date_fin",
61
+ "date_fin_timestamp",
62
+ "date_inscription",
63
+ "date_updated",
64
+ "description",
65
+ "email",
66
+ "engagement",
67
+ "facebook",
68
+ "horaires_seances",
69
+ "id",
70
+ "inscriptions",
71
+ "jours",
72
+ "label",
73
+ "latitude",
74
+ "longitude",
75
+ "mail_demandeur",
76
+ "mail_structure",
77
+ "nom_demandeur",
78
+ "nom_salle",
79
+ "nom_structure",
80
+ "nombre_personnes",
81
+ "nombre_seances",
82
+ "objectif",
83
+ "prenom_demandeur",
84
+ "public",
85
+ "site_web",
86
+ "telephone",
87
+ "thumbnail",
88
+ "titre",
89
+ "twitter",
90
+ "type",
91
+ "ville_salle"
92
+ ],
93
+ "status": "available"
94
+ },
95
+ {
96
+ "available": true,
97
+ "estimatedTotalHits": 3799,
98
+ "indexUid": "ffbbnational_rss",
99
+ "sampleKeys": [
100
+ "categories",
101
+ "chapo",
102
+ "cover",
103
+ "creator",
104
+ "date",
105
+ "date_created",
106
+ "date_timestamp",
107
+ "date_updated",
108
+ "highlight",
109
+ "id",
110
+ "img",
111
+ "img_credits",
112
+ "img_legend",
113
+ "link",
114
+ "match_id",
115
+ "surtitle",
116
+ "tags",
117
+ "text",
118
+ "texte",
119
+ "thumbnail",
120
+ "title",
121
+ "type"
122
+ ],
123
+ "status": "available"
124
+ },
125
+ {
126
+ "available": true,
127
+ "estimatedTotalHits": 5000,
128
+ "indexUid": "ffbbserver_competitions",
129
+ "sampleKeys": [
130
+ "age",
131
+ "categorie",
132
+ "code",
133
+ "codeComite",
134
+ "codeLigue",
135
+ "compare_old_site",
136
+ "competition_origine",
137
+ "competition_origine_niveau",
138
+ "competition_origine_nom",
139
+ "creationEnCours",
140
+ "date_created",
141
+ "date_updated",
142
+ "emarqueV2",
143
+ "etat",
144
+ "id",
145
+ "idCompetitionPere",
146
+ "liveStat",
147
+ "logo",
148
+ "niveau",
149
+ "niveau_nb",
150
+ "nom",
151
+ "ordre",
152
+ "organisateur",
153
+ "participants",
154
+ "phase_code",
155
+ "phases",
156
+ "poules",
157
+ "pro",
158
+ "publicationInternet",
159
+ "saison",
160
+ "sexe",
161
+ "slug",
162
+ "thumbnail",
163
+ "toUpdate",
164
+ "typeCompetition",
165
+ "typeCompetitionGenerique"
166
+ ],
167
+ "status": "available"
168
+ },
169
+ {
170
+ "available": true,
171
+ "estimatedTotalHits": 5000,
172
+ "indexUid": "ffbbserver_engagements",
173
+ "sampleKeys": [
174
+ "_geo",
175
+ "age",
176
+ "categorie",
177
+ "clubPro",
178
+ "codeAbrege",
179
+ "codeClub",
180
+ "codeComite",
181
+ "codeLigue",
182
+ "competitionsUrl",
183
+ "id",
184
+ "idCompetition",
185
+ "idPoule",
186
+ "logo",
187
+ "niveau",
188
+ "nom",
189
+ "nomClub",
190
+ "nomClubPro",
191
+ "nomComite",
192
+ "nomCtc",
193
+ "nomEquipe",
194
+ "nomLigue",
195
+ "nomOfficiel",
196
+ "nomOrganisme",
197
+ "nomUsuel",
198
+ "numeroEquipe",
199
+ "sexe",
200
+ "thumbnail"
201
+ ],
202
+ "status": "available"
203
+ },
204
+ {
205
+ "available": true,
206
+ "estimatedTotalHits": 108,
207
+ "indexUid": "ffbbserver_formations",
208
+ "sampleKeys": [
209
+ "certification",
210
+ "content",
211
+ "description",
212
+ "domain",
213
+ "duration_hours",
214
+ "files",
215
+ "goals",
216
+ "id",
217
+ "id_origin_hash",
218
+ "image",
219
+ "level",
220
+ "modalities",
221
+ "mode",
222
+ "mode_hidden",
223
+ "pedagogy",
224
+ "places",
225
+ "postal_codes",
226
+ "prerequisites",
227
+ "programIdFbi",
228
+ "public",
229
+ "reference",
230
+ "results",
231
+ "sessions",
232
+ "theme",
233
+ "thumbnail",
234
+ "title",
235
+ "type"
236
+ ],
237
+ "status": "available"
238
+ },
239
+ {
240
+ "available": true,
241
+ "estimatedTotalHits": 4573,
242
+ "indexUid": "ffbbserver_organismes",
243
+ "sampleKeys": [
244
+ "_geo",
245
+ "adresse",
246
+ "adresseClubPro",
247
+ "cartographie",
248
+ "code",
249
+ "commune",
250
+ "communeClubPro",
251
+ "dateAffiliation",
252
+ "engagements_codes",
253
+ "engagements_noms",
254
+ "id",
255
+ "labellisation",
256
+ "logo",
257
+ "mail",
258
+ "nom",
259
+ "nomClubPro",
260
+ "nom_simple",
261
+ "offresPratiques",
262
+ "organisme_id_pere",
263
+ "saison",
264
+ "saison_en_cours",
265
+ "telephone",
266
+ "thumbnail",
267
+ "type",
268
+ "type_association",
269
+ "urlSiteWeb",
270
+ "url_competition"
271
+ ],
272
+ "status": "available"
273
+ },
274
+ {
275
+ "available": true,
276
+ "estimatedTotalHits": 5000,
277
+ "indexUid": "ffbbserver_rencontres",
278
+ "sampleKeys": [
279
+ "_geo",
280
+ "competitionId",
281
+ "creation_timestamp",
282
+ "date",
283
+ "dateSaisieResultat_timestamp",
284
+ "date_rencontre",
285
+ "date_rencontre_timestamp",
286
+ "date_timestamp",
287
+ "gsId",
288
+ "handicap1",
289
+ "handicap2",
290
+ "id",
291
+ "idEngagementEquipe1",
292
+ "idEngagementEquipe2",
293
+ "idOrganismeEquipe1",
294
+ "idOrganismeEquipe2",
295
+ "idPoule",
296
+ "joue",
297
+ "modification_timestamp",
298
+ "niveau",
299
+ "niveau_nb",
300
+ "nomEquipe1",
301
+ "nomEquipe2",
302
+ "numeroJournee",
303
+ "officiels",
304
+ "officiels_string",
305
+ "organisateur",
306
+ "pratique",
307
+ "rematch_videos",
308
+ "resultatEquipe1",
309
+ "resultatEquipe2",
310
+ "saison",
311
+ "salle",
312
+ "thumbnail",
313
+ "uniqueKey",
314
+ "url_competition"
315
+ ],
316
+ "status": "available"
317
+ },
318
+ {
319
+ "available": true,
320
+ "estimatedTotalHits": 5000,
321
+ "indexUid": "ffbbserver_salles",
322
+ "sampleKeys": [
323
+ "_geo",
324
+ "adresse",
325
+ "adresseComplement",
326
+ "capaciteSpectateur",
327
+ "cartographie",
328
+ "commune",
329
+ "date_created",
330
+ "date_updated",
331
+ "id",
332
+ "libelle",
333
+ "libelle2",
334
+ "mail",
335
+ "numero",
336
+ "telephone",
337
+ "thumbnail",
338
+ "type",
339
+ "type_association"
340
+ ],
341
+ "status": "available"
342
+ },
343
+ {
344
+ "available": true,
345
+ "estimatedTotalHits": 5000,
346
+ "indexUid": "ffbbserver_terrains",
347
+ "sampleKeys": [
348
+ "_geo",
349
+ "accesLibre",
350
+ "cartographie",
351
+ "commune",
352
+ "date_created",
353
+ "date_updated",
354
+ "id",
355
+ "largeur",
356
+ "longueur",
357
+ "natureSol",
358
+ "nom",
359
+ "numero",
360
+ "rue",
361
+ "thumbnail",
362
+ "type"
363
+ ],
364
+ "status": "available"
365
+ },
366
+ {
367
+ "available": true,
368
+ "estimatedTotalHits": 241,
369
+ "indexUid": "ffbbserver_tournois",
370
+ "sampleKeys": [
371
+ "_geo",
372
+ "adresse",
373
+ "adresseComplement",
374
+ "ageMax",
375
+ "ageMin",
376
+ "cartographie",
377
+ "categorieChampionnat3x3Id",
378
+ "categorieChampionnat3x3Libelle",
379
+ "code",
380
+ "commune",
381
+ "date_created",
382
+ "date_updated",
383
+ "debut",
384
+ "debut_timestamp",
385
+ "description",
386
+ "document_flyer",
387
+ "fin",
388
+ "fin_timestamp",
389
+ "id",
390
+ "mailOrganisateur",
391
+ "nbParticipantPrevu",
392
+ "nom",
393
+ "nomOrganisateur",
394
+ "sexe",
395
+ "siteChoisi",
396
+ "tarifOrganisateur",
397
+ "telephoneOrganisateur",
398
+ "thumbnail",
399
+ "tournoiType",
400
+ "tournoiTypes3x3",
401
+ "urlOrganisateur"
402
+ ],
403
+ "status": "available"
404
+ },
405
+ {
406
+ "available": true,
407
+ "estimatedTotalHits": 5800,
408
+ "indexUid": "ffbbsite_news",
409
+ "sampleKeys": [
410
+ "author",
411
+ "categories",
412
+ "category",
413
+ "category_2",
414
+ "content",
415
+ "date_published",
416
+ "featured",
417
+ "featured_mobile",
418
+ "filters_3x3",
419
+ "headline",
420
+ "id",
421
+ "image",
422
+ "link",
423
+ "match_id",
424
+ "permalink",
425
+ "push_newsletter",
426
+ "surtitle",
427
+ "tags",
428
+ "thumbnail",
429
+ "title",
430
+ "type"
431
+ ],
432
+ "status": "available"
433
+ },
434
+ {
435
+ "available": true,
436
+ "estimatedTotalHits": 1824,
437
+ "indexUid": "youtube_videos",
438
+ "sampleKeys": [
439
+ "channelId",
440
+ "channelTitle",
441
+ "commentCount",
442
+ "date",
443
+ "date_created",
444
+ "date_published",
445
+ "date_updated",
446
+ "description",
447
+ "display_image",
448
+ "duration",
449
+ "duration_seconds",
450
+ "id",
451
+ "likeCount",
452
+ "snippet",
453
+ "tags",
454
+ "thumbnail",
455
+ "thumbnailDefaultUrl",
456
+ "thumbnailHighUrl",
457
+ "thumbnailMaxresUrl",
458
+ "thumbnailMediumUrl",
459
+ "thumbnailStandardUrl",
460
+ "title",
461
+ "type",
462
+ "viewCount"
463
+ ],
464
+ "status": "available"
465
+ }
466
+ ],
467
+ "metadata": {
468
+ "source": "https://meilisearch-prod.ffbb.app/multi-search",
469
+ "timestamp": "2026-04-30T13:30:14.497350+00:00"
470
+ },
471
+ "unavailable_indexes": [
472
+ {
473
+ "indexUid": "edf_matches",
474
+ "status": "not_available"
475
+ },
476
+ {
477
+ "indexUid": "edf_players",
478
+ "status": "not_available"
479
+ },
480
+ {
481
+ "indexUid": "edf_teams",
482
+ "status": "not_available"
483
+ },
484
+ {
485
+ "indexUid": "ffbbserver_sessions",
486
+ "status": "not_available"
487
+ },
488
+ {
489
+ "indexUid": "genius_sport_matches",
490
+ "status": "not_available"
491
+ },
492
+ {
493
+ "indexUid": "genius_sports_live_logs",
494
+ "status": "not_available"
495
+ },
496
+ {
497
+ "indexUid": "rematch_videos",
498
+ "status": "not_available"
499
+ }
500
+ ]
501
+ }