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.
- ffbb_api_client_v3/__init__.py +25 -0
- ffbb_data_client/__init__.py +175 -0
- ffbb_data_client/clients/__init__.py +13 -0
- ffbb_data_client/clients/api_ffbb_app_client.py +2475 -0
- ffbb_data_client/clients/ffbb_data_client.py +2789 -0
- ffbb_data_client/clients/meilisearch_client.py +218 -0
- ffbb_data_client/clients/meilisearch_ffbb_client.py +647 -0
- ffbb_data_client/config.py +153 -0
- ffbb_data_client/data/__init__.py +25 -0
- ffbb_data_client/data/collections.json +1364 -0
- ffbb_data_client/data/endpoint_discovery.json +1875 -0
- ffbb_data_client/data/indexes.json +501 -0
- ffbb_data_client/data/openapi.json +35713 -0
- ffbb_data_client/data/openapi_full.json +37622 -0
- ffbb_data_client/helpers/__init__.py +27 -0
- ffbb_data_client/helpers/http_requests_helper.py +73 -0
- ffbb_data_client/helpers/http_requests_utils.py +502 -0
- ffbb_data_client/helpers/meilisearch_client_extension.py +153 -0
- ffbb_data_client/helpers/multi_search_query_helper.py +35 -0
- ffbb_data_client/models/__init__.py +241 -0
- ffbb_data_client/models/affiche.py +45 -0
- ffbb_data_client/models/cartographie.py +82 -0
- ffbb_data_client/models/categorie.py +55 -0
- ffbb_data_client/models/categorie_type.py +42 -0
- ffbb_data_client/models/clock.py +38 -0
- ffbb_data_client/models/club_contacts.py +77 -0
- ffbb_data_client/models/code.py +7 -0
- ffbb_data_client/models/commune.py +66 -0
- ffbb_data_client/models/competition_fields.py +309 -0
- ffbb_data_client/models/competition_id.py +116 -0
- ffbb_data_client/models/competition_id_categorie.py +31 -0
- ffbb_data_client/models/competition_id_sexe.py +31 -0
- ffbb_data_client/models/competition_id_type_competition.py +27 -0
- ffbb_data_client/models/competition_id_type_competition_generique.py +24 -0
- ffbb_data_client/models/competition_origine.py +69 -0
- ffbb_data_client/models/competition_origine_categorie.py +23 -0
- ffbb_data_client/models/competition_origine_type_competition.py +14 -0
- ffbb_data_client/models/competition_origine_type_competition_generique.py +24 -0
- ffbb_data_client/models/competition_type.py +6 -0
- ffbb_data_client/models/competitions_facet_distribution.py +65 -0
- ffbb_data_client/models/competitions_facet_stats.py +14 -0
- ffbb_data_client/models/competitions_hit.py +232 -0
- ffbb_data_client/models/competitions_multi_search_query.py +40 -0
- ffbb_data_client/models/competitions_query.py +11 -0
- ffbb_data_client/models/configuration_models.py +5 -0
- ffbb_data_client/models/contact_info.py +18 -0
- ffbb_data_client/models/content_multi_search_query.py +93 -0
- ffbb_data_client/models/coordonnees.py +27 -0
- ffbb_data_client/models/coordonnees_type.py +5 -0
- ffbb_data_client/models/document_flyer.py +205 -0
- ffbb_data_client/models/document_flyer_type.py +6 -0
- ffbb_data_client/models/engagement_contacts.py +97 -0
- ffbb_data_client/models/engagements_facet_distribution.py +59 -0
- ffbb_data_client/models/engagements_facet_stats.py +14 -0
- ffbb_data_client/models/engagements_hit.py +192 -0
- ffbb_data_client/models/engagements_multi_search_query.py +41 -0
- ffbb_data_client/models/etat.py +6 -0
- ffbb_data_client/models/external_competition_id.py +42 -0
- ffbb_data_client/models/external_id.py +72 -0
- ffbb_data_client/models/facet_distribution.py +13 -0
- ffbb_data_client/models/facet_stats.py +13 -0
- ffbb_data_client/models/field_set.py +10 -0
- ffbb_data_client/models/folder.py +35 -0
- ffbb_data_client/models/formation_session.py +60 -0
- ffbb_data_client/models/formations_facet_distribution.py +61 -0
- ffbb_data_client/models/formations_facet_stats.py +14 -0
- ffbb_data_client/models/formations_hit.py +277 -0
- ffbb_data_client/models/formations_multi_search_query.py +41 -0
- ffbb_data_client/models/game_stats_model.py +57 -0
- ffbb_data_client/models/game_stats_models.py +5 -0
- ffbb_data_client/models/generic_search.py +92 -0
- ffbb_data_client/models/geo.py +27 -0
- ffbb_data_client/models/geo_sort_order.py +6 -0
- ffbb_data_client/models/get_commune_response.py +18 -0
- ffbb_data_client/models/get_competition_response.py +523 -0
- ffbb_data_client/models/get_configuration_response.py +45 -0
- ffbb_data_client/models/get_engagement_response.py +23 -0
- ffbb_data_client/models/get_entraineur_response.py +18 -0
- ffbb_data_client/models/get_formation_response.py +28 -0
- ffbb_data_client/models/get_officiel_response.py +18 -0
- ffbb_data_client/models/get_organisme_response.py +476 -0
- ffbb_data_client/models/get_poule_response.py +68 -0
- ffbb_data_client/models/get_pratique_response.py +18 -0
- ffbb_data_client/models/get_rencontre_response.py +93 -0
- ffbb_data_client/models/get_saisons_response.py +56 -0
- ffbb_data_client/models/get_salle_response.py +20 -0
- ffbb_data_client/models/get_terrain_response.py +16 -0
- ffbb_data_client/models/get_tournoi_response.py +16 -0
- ffbb_data_client/models/gradient_color.py +27 -0
- ffbb_data_client/models/hit.py +16 -0
- ffbb_data_client/models/id_engagement_equipe.py +32 -0
- ffbb_data_client/models/id_organisme_equipe.py +51 -0
- ffbb_data_client/models/id_organisme_equipe1_logo.py +28 -0
- ffbb_data_client/models/id_poule.py +27 -0
- ffbb_data_client/models/jour.py +11 -0
- ffbb_data_client/models/label.py +15 -0
- ffbb_data_client/models/labellisation.py +30 -0
- ffbb_data_client/models/live.py +192 -0
- ffbb_data_client/models/lives.py +6 -0
- ffbb_data_client/models/logo.py +28 -0
- ffbb_data_client/models/multi_search_queries.py +24 -0
- ffbb_data_client/models/multi_search_query.py +96 -0
- ffbb_data_client/models/multi_search_result_competitions.py +14 -0
- ffbb_data_client/models/multi_search_result_engagements.py +14 -0
- ffbb_data_client/models/multi_search_result_formations.py +12 -0
- ffbb_data_client/models/multi_search_result_organismes.py +12 -0
- ffbb_data_client/models/multi_search_result_pratiques.py +12 -0
- ffbb_data_client/models/multi_search_result_rencontres.py +12 -0
- ffbb_data_client/models/multi_search_result_salles.py +12 -0
- ffbb_data_client/models/multi_search_result_terrains.py +12 -0
- ffbb_data_client/models/multi_search_result_tournois.py +12 -0
- ffbb_data_client/models/multi_search_results.py +103 -0
- ffbb_data_client/models/multi_search_results_class.py +96 -0
- ffbb_data_client/models/nature_sol.py +57 -0
- ffbb_data_client/models/niveau.py +10 -0
- ffbb_data_client/models/niveau_class.py +27 -0
- ffbb_data_client/models/niveau_extractor.py +214 -0
- ffbb_data_client/models/niveau_info.py +64 -0
- ffbb_data_client/models/niveau_models.py +14 -0
- ffbb_data_client/models/niveau_type.py +10 -0
- ffbb_data_client/models/objectif.py +7 -0
- ffbb_data_client/models/organisateur.py +197 -0
- ffbb_data_client/models/organisateur_type.py +6 -0
- ffbb_data_client/models/organisme_fields.py +327 -0
- ffbb_data_client/models/organisme_id_pere.py +177 -0
- ffbb_data_client/models/organismes_facet_distribution.py +46 -0
- ffbb_data_client/models/organismes_facet_stats.py +14 -0
- ffbb_data_client/models/organismes_hit.py +196 -0
- ffbb_data_client/models/organismes_multi_search_query.py +41 -0
- ffbb_data_client/models/organismes_query.py +8 -0
- ffbb_data_client/models/phase_code.py +23 -0
- ffbb_data_client/models/poule.py +35 -0
- ffbb_data_client/models/poule_fields.py +261 -0
- ffbb_data_client/models/poule_rencontre_item_model.py +69 -0
- ffbb_data_client/models/poules_models.py +6 -0
- ffbb_data_client/models/poules_query.py +9 -0
- ffbb_data_client/models/pratique.py +7 -0
- ffbb_data_client/models/pratiques_facet_distribution.py +29 -0
- ffbb_data_client/models/pratiques_facet_stats.py +14 -0
- ffbb_data_client/models/pratiques_hit.py +310 -0
- ffbb_data_client/models/pratiques_hit_type.py +9 -0
- ffbb_data_client/models/pratiques_multi_search_query.py +41 -0
- ffbb_data_client/models/pratiques_type_class.py +45 -0
- ffbb_data_client/models/publication_internet.py +6 -0
- ffbb_data_client/models/purple_logo.py +24 -0
- ffbb_data_client/models/query_fields_manager.py +75 -0
- ffbb_data_client/models/ranking_engagement.py +41 -0
- ffbb_data_client/models/rankings_models.py +6 -0
- ffbb_data_client/models/rencontres_engagement.py +23 -0
- ffbb_data_client/models/rencontres_facet_distribution.py +65 -0
- ffbb_data_client/models/rencontres_facet_stats.py +14 -0
- ffbb_data_client/models/rencontres_hit.py +271 -0
- ffbb_data_client/models/rencontres_multi_search_query.py +41 -0
- ffbb_data_client/models/saison.py +23 -0
- ffbb_data_client/models/saison_fields.py +36 -0
- ffbb_data_client/models/saisons_models.py +6 -0
- ffbb_data_client/models/saisons_query.py +9 -0
- ffbb_data_client/models/salle.py +56 -0
- ffbb_data_client/models/salles_facet_distribution.py +14 -0
- ffbb_data_client/models/salles_facet_stats.py +14 -0
- ffbb_data_client/models/salles_hit.py +153 -0
- ffbb_data_client/models/salles_multi_search_query.py +40 -0
- ffbb_data_client/models/sexe.py +9 -0
- ffbb_data_client/models/sexe_class.py +31 -0
- ffbb_data_client/models/source.py +5 -0
- ffbb_data_client/models/status.py +5 -0
- ffbb_data_client/models/team_engagement.py +56 -0
- ffbb_data_client/models/team_ranking.py +108 -0
- ffbb_data_client/models/terrains_categorie_championnat_3x3_libelle.py +5 -0
- ffbb_data_client/models/terrains_facet_distribution.py +41 -0
- ffbb_data_client/models/terrains_facet_stats.py +14 -0
- ffbb_data_client/models/terrains_hit.py +223 -0
- ffbb_data_client/models/terrains_multi_search_query.py +42 -0
- ffbb_data_client/models/terrains_name.py +5 -0
- ffbb_data_client/models/terrains_sexe_enum.py +7 -0
- ffbb_data_client/models/terrains_storage.py +5 -0
- ffbb_data_client/models/tournoi_type_class.py +35 -0
- ffbb_data_client/models/tournoi_type_enum.py +7 -0
- ffbb_data_client/models/tournoi_types_3x3.py +43 -0
- ffbb_data_client/models/tournoi_types_3x3_libelle.py +60 -0
- ffbb_data_client/models/tournoi_types_3x3_libelle_enum.py +10 -0
- ffbb_data_client/models/tournois_facet_distribution.py +41 -0
- ffbb_data_client/models/tournois_facet_stats.py +14 -0
- ffbb_data_client/models/tournois_hit.py +132 -0
- ffbb_data_client/models/tournois_hit_type.py +5 -0
- ffbb_data_client/models/tournois_libelle.py +7 -0
- ffbb_data_client/models/tournois_multi_search_query.py +40 -0
- ffbb_data_client/models/type_association.py +23 -0
- ffbb_data_client/models/type_association_libelle.py +30 -0
- ffbb_data_client/models/type_class.py +23 -0
- ffbb_data_client/models/type_competition.py +8 -0
- ffbb_data_client/models/type_competition_generique.py +31 -0
- ffbb_data_client/models/type_enum.py +7 -0
- ffbb_data_client/models/type_league.py +6 -0
- ffbb_data_client/py.typed +0 -0
- ffbb_data_client/utils/__init__.py +27 -0
- ffbb_data_client/utils/cache_manager.py +393 -0
- ffbb_data_client/utils/converter_utils.py +329 -0
- ffbb_data_client/utils/input_validation.py +360 -0
- ffbb_data_client/utils/retry_utils.py +478 -0
- ffbb_data_client/utils/secure_logging.py +153 -0
- ffbb_data_client/utils/token_manager.py +115 -0
- ffbb_data_client-2.0.0.dist-info/METADATA +339 -0
- ffbb_data_client-2.0.0.dist-info/RECORD +207 -0
- ffbb_data_client-2.0.0.dist-info/WHEEL +5 -0
- ffbb_data_client-2.0.0.dist-info/licenses/LICENSE.txt +201 -0
- 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
|
+
}
|