{
  "openapi": "3.0.3",
  "info": {
    "description": "Sportmicro is happy to have you here! Thanks for visiting our table tennis documentation. You will learn all there is to know about Sportmicro' Table Tennis API right here.",
    "title": "Sportmicro",
    "version": "1.0.0",
    "termsOfService": "https://sportmicro.com/terms",
    "contact": {
      "name": "Sportmicro Support",
      "email": "support@sportmicro.com",
      "url": "https://sportmicro.com/contact"
    },
    "x-logo": {
      "url": "https://sportmicro.com/png/icons/table-tennis.png",
      "altText": "Sportmicro table-tennis logo"
    },
    "license": {
      "name": "MIT",
      "url": "https://opensource.org/licenses/MIT"
    }
  },
  "paths": {
    "/seasons-by-tournament": {
      "get": {
        "tags": [
          "Seasons"
        ],
        "summary": "Seasons By Tournament",
        "description": "This endpoint allows you to retrieve the seasons from a specific tournament.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons from a specific **tournament_id**<br />`https://table-tennis.sportmicro.com/seasons-by-tournament?tournament_id=eq.{tournament_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.seasons-by-tournament.tournament_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/seasons-by-tournament"
                  },
                  "type": "array",
                  "example": [
                    {
                      "tournament_id": 3894,
                      "tournament_name": "Olympic Games, Singles",
                      "seasons": [
                        {
                          "id": 4177,
                          "name": "Olympic Games 2024",
                          "year": "2024"
                        },
                        {
                          "id": 4182,
                          "name": "Olympic Tournament 2020",
                          "year": "2021"
                        },
                        {
                          "id": 40350,
                          "name": "Olympic Games 2016",
                          "year": "2016"
                        },
                        {
                          "id": 64091,
                          "name": "Olympic Games 2012",
                          "year": "2012"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons By Tournament"
      }
    },
    "/leagues": {
      "get": {
        "tags": [
          "Leagues"
        ],
        "summary": "Leagues",
        "description": "This endpoint allows you to retrieve the leagues and the cups.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 every day.\n\nYou can get the image of the league by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet leagues<br />`https://table-tennis.sportmicro.com/leagues`<br /><br />Search the leagues by the `name`<br />`https://table-tennis.sportmicro.com/leagues?name=like.*Championship*`<br /><br />Get leagues based on the **id**<br />`https://table-tennis.sportmicro.com/leagues?id=eq.{id}`<br /><br />Get leagues from a specific **class_id**<br />`https://table-tennis.sportmicro.com/leagues?class_id=eq.{class_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.leagues.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.leagues.class_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/leagues"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1749,
                      "name": "Olympic Games - Singles",
                      "importance": 0,
                      "most_titles": 0,
                      "primary_color": "#8b2130",
                      "secondary_color": "#b11e33",
                      "start_league": "2024-07-27T00:00:00+00:00",
                      "end_league": "2024-08-04T00:00:00+00:00",
                      "hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                      "class_id": 306,
                      "class_name": "International",
                      "class_hash_image": "65dbfe692e6cbf63ac2a535ab413f3d039183afe1d4a9c29dc2b1cdc4c9de7ec"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Leagues"
      }
    },
    "/leagues-by-date": {
      "get": {
        "tags": [
          "Leagues"
        ],
        "summary": "Leagues By Date",
        "description": "This endpoint allows you to retrieve the leagues from a specific date. The date has a format of YYYY-DD-MM.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet leagues from a specific **date**<br />`https://table-tennis.sportmicro.com/leagues-by-date?date=eq.{date}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.leagues-by-date.date"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/leagues-by-date"
                  },
                  "type": "array",
                  "example": [
                    {
                      "date": "2012-07-28",
                      "leagues": [
                        {
                          "class_id": "International",
                          "league_id": 1749,
                          "class_name": "International",
                          "league_name": "Olympic Games - Singles",
                          "class_hash_image": "65dbfe692e6cbf63ac2a535ab413f3d039183afe1d4a9c29dc2b1cdc4c9de7ec",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "league_importance": 11
                        },
                        {
                          "class_id": "International",
                          "league_id": 11813,
                          "class_name": "International",
                          "league_name": "Olympic Games Women - Singles",
                          "class_hash_image": "65dbfe692e6cbf63ac2a535ab413f3d039183afe1d4a9c29dc2b1cdc4c9de7ec",
                          "league_importance": 8
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Leagues By Date"
      }
    },
    "/arenas-by-country": {
      "get": {
        "tags": [
          "Arenas"
        ],
        "summary": "Arenas By Country",
        "description": "This endpoint allows you to retrieve the arenas from a specific country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet arenas from a specific **country_id**<br />`https://table-tennis.sportmicro.com/arenas-by-country?country_id=eq.{country_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.arenas-by-country.country_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/arenas-by-country"
                  },
                  "type": "array",
                  "example": [
                    {
                      "country_id": 4,
                      "country_name": "Brazil",
                      "country_hash_image": "bbaf8352442730e92c16c5ea6b0ff7cc595c24e02d8e8bfc5fea5a4e0bb0b46b",
                      "arenas": [
                        {
                          "id": 20676,
                          "name": "Table 1",
                          "hash_image": "ec9ba494b1c224c79726a1001cfd35d0e06041db4cff5061dd59f91a8dbc7522"
                        },
                        {
                          "id": 37649,
                          "name": "Table 1",
                          "hash_image": "ec9ba494b1c224c79726a1001cfd35d0e06041db4cff5061dd59f91a8dbc7522"
                        },
                        {
                          "id": 37650,
                          "name": "Table 3",
                          "hash_image": "2ee889ca18c8e9941521e7b3e7b31217eb09f525bda48a5a4cb4185d61c0baf4"
                        },
                        {
                          "id": 37651,
                          "name": "Table 2",
                          "hash_image": "f7b6a62f57f51061c861c894d0f14ec5e1c02085a187b0851a15cf092540e7af"
                        },
                        {
                          "id": 37652,
                          "name": "Table 4",
                          "hash_image": "e5950cdf4e6dab130951dae92966ed43d3dcbd05b66742cd74f62c0a388b515a"
                        },
                        {
                          "id": 37796,
                          "name": "Table 3",
                          "hash_image": "2ee889ca18c8e9941521e7b3e7b31217eb09f525bda48a5a4cb4185d61c0baf4"
                        },
                        {
                          "id": 37797,
                          "name": "Table 4",
                          "hash_image": "e5950cdf4e6dab130951dae92966ed43d3dcbd05b66742cd74f62c0a388b515a"
                        },
                        {
                          "id": 37798,
                          "name": "Table 2",
                          "hash_image": "f7b6a62f57f51061c861c894d0f14ec5e1c02085a187b0851a15cf092540e7af"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Arenas By Country"
      }
    },
    "/matches-live": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches Live",
        "description": "This endpoint allows you to retrieve the live matches.\n\nIt has the same results as the /matches endpoint.",
        "responses": {},
        "operationId": "Matches Live"
      }
    },
    "/matches-tv-channels": {
      "get": {
        "tags": [
          "Tv channels"
        ],
        "summary": "Matches Tv Channels",
        "description": "This endpoint allows you to retrieve the tv channels for matches from all countries.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet tv channels from a specific **match_id**<br />`https://table-tennis.sportmicro.com/matches-tv-channels?match_id=eq.{match_id}`<br /><br />Get tv channels from a specific **match_id** and **alpha**<br />`https://table-tennis.sportmicro.com/matches-tv-channels?match_id=eq.{match_id}&alpha=eq.{alpha}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-tv-channels.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches-tv-channels.alpha"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-tv-channels"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 52828,
                      "country_id": 4,
                      "country_name": "Brazil",
                      "country_hash_image": "bbaf8352442730e92c16c5ea6b0ff7cc595c24e02d8e8bfc5fea5a4e0bb0b46b",
                      "alpha": "BR",
                      "tv_channels": [
                        {
                          "id": 559,
                          "name": "YouTube - CazéTV"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Tv Channels"
      }
    },
    "/media-leagues": {
      "get": {
        "tags": [
          "Media"
        ],
        "summary": "Media Leagues",
        "description": "This endpoint allows you to retrieve the media from leagues.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet media from a specific **league_id**<br />`https://table-tennis.sportmicro.com/media-leagues?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.media-leagues.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/media-leagues"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 4824,
                      "league_id": 1755,
                      "title": "Liang J. 2 - 3 Cifuentes H.",
                      "subtitle": "Full Highlights",
                      "url": "https://youtu.be/4aJ67myW5ao",
                      "thumbnail_url": "https://i.ytimg.com/vi/4aJ67myW5ao/hqdefault.jpg",
                      "date_published": "2026-03-31T10:17:17+00:00",
                      "channel_url": "https://youtu.be/4aJ67myW5ao"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Media Leagues"
      }
    },
    "/standings": {
      "get": {
        "tags": [
          "Standings"
        ],
        "summary": "Standings",
        "description": "This endpoint allows you to retrieve the standings.\nFor the type argument you can search by: **home**, **away** and **total**.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated after every finished match.<br />**Recommended Calls**: Limit calls to 1 per finished match.\n\n### Use Cases\nGet standings<br />`https://table-tennis.sportmicro.com/standings`<br /><br />Get standing based on the **id**<br />`https://table-tennis.sportmicro.com/standings?id=eq.{id}`<br /><br />Get standing from a specific **league_id**<br />`https://table-tennis.sportmicro.com/standings?league_id=eq.{league_id}`<br /><br />Get standing from a specific **league_id** and **season_id**<br />`https://table-tennis.sportmicro.com/standings?league_id=eq.{league_id}&season_id=eq.{season_id}`<br /><br />Get standing from a specific **league_id**, **season_id** and **type**<br />`https://table-tennis.sportmicro.com/standings?league_id=eq.{league_id}&season_id=eq.{season_id}&type=eq.{type}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.standings.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.standings.type"
          },
          {
            "$ref": "#/components/parameters/rowFilter.standings.season_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.standings.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/standings"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 7499,
                      "tournament_id": 3922,
                      "tournament_name": "ITTF World Cup 2020, Group A",
                      "type": "home",
                      "name": "World Cup 2020, Group A",
                      "season_id": 4228,
                      "season_name": "World Cup 2020",
                      "league_id": 1755,
                      "league_name": "World Cup",
                      "competitors": [
                        {
                          "wins": 2,
                          "losses": 1,
                          "points": 5,
                          "matches": 3,
                          "team_id": 8468,
                          "position": 1,
                          "team_name": "Youngsik Jung",
                          "scores_for": 10,
                          "scores_against": 4,
                          "team_hash_image": "024e45a1aa2bec65e01c0dbdeb648236c7a09c8d38815fa3d169249fe365b9cb"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Standings"
      }
    },
    "/seasons-rounds": {
      "get": {
        "tags": [
          "Seasons"
        ],
        "summary": "Seasons Rounds",
        "description": "This endpoint allows you to retrieve the rounds from seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet rounds from a specific **season_id**<br />`https://table-tennis.sportmicro.com/seasons-rounds?season_id=eq.{season_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.seasons-rounds.season_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/seasons-rounds"
                  },
                  "type": "array",
                  "example": [
                    {
                      "season_id": 4177,
                      "season_name": "Olympic Games 2024",
                      "rounds": [
                        {
                          "id": 705756,
                          "name": "Round of 64",
                          "round": 32,
                          "end_time": "2024-07-29",
                          "start_time": "2024-07-27"
                        },
                        {
                          "id": 705758,
                          "name": "Round of 32",
                          "round": 6,
                          "end_time": "2024-07-31",
                          "start_time": "2024-07-29"
                        },
                        {
                          "id": 705760,
                          "name": "Round of 16",
                          "round": 5,
                          "end_time": "2024-07-31",
                          "start_time": "2024-07-31"
                        },
                        {
                          "id": 705762,
                          "name": "Quarterfinals",
                          "round": 27,
                          "end_time": "2024-08-01",
                          "start_time": "2024-08-01"
                        },
                        {
                          "id": 705764,
                          "name": "Semifinals",
                          "round": 28,
                          "end_time": "2024-08-01",
                          "start_time": "2024-08-01"
                        },
                        {
                          "id": 705766,
                          "name": "Match for 3rd place",
                          "round": 50,
                          "end_time": "2024-08-04",
                          "start_time": "2024-08-04"
                        },
                        {
                          "id": 705768,
                          "name": "Final",
                          "round": 29,
                          "end_time": "2024-08-04",
                          "start_time": "2024-08-04"
                        },
                        {
                          "id": 705770,
                          "name": "Round of 64",
                          "round": 32,
                          "end_time": "2024-07-29",
                          "start_time": "2024-07-27"
                        },
                        {
                          "id": 705771,
                          "name": "Round of 32",
                          "round": 6,
                          "end_time": "2024-07-31",
                          "start_time": "2024-07-29"
                        },
                        {
                          "id": 705772,
                          "name": "Round of 16",
                          "round": 5,
                          "end_time": "2024-07-31",
                          "start_time": "2024-07-31"
                        },
                        {
                          "id": 705773,
                          "name": "Quarterfinals",
                          "round": 27,
                          "end_time": "2024-08-01",
                          "start_time": "2024-08-01"
                        },
                        {
                          "id": 705775,
                          "name": "Semifinals",
                          "round": 28,
                          "end_time": "2024-08-02",
                          "start_time": "2024-08-02"
                        },
                        {
                          "id": 705777,
                          "name": "Match for 3rd place",
                          "round": 50,
                          "end_time": "2024-08-04",
                          "start_time": "2024-08-04"
                        },
                        {
                          "id": 705778,
                          "name": "Final",
                          "round": 29,
                          "end_time": "2024-08-04",
                          "start_time": "2024-08-04"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons Rounds"
      }
    },
    "/tournaments-by-league": {
      "get": {
        "tags": [
          "Tournaments"
        ],
        "summary": "Tournaments By League",
        "description": "This endpoint allows you to retrieve the tournaments from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tournaments from a specific **league_id**<br />`https://table-tennis.sportmicro.com/tournaments-by-league?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.tournaments-by-league.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/tournaments-by-league"
                  },
                  "type": "array",
                  "example": [
                    {
                      "league_id": 1749,
                      "league_name": "Olympic Games - Singles",
                      "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                      "tournaments": [
                        {
                          "id": 3894,
                          "name": "Olympic Games, Singles",
                          "importance": 11
                        },
                        {
                          "id": 35898,
                          "name": "Olympic Tournament, Singles, Preliminary Rounds",
                          "importance": 12
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Tournaments By League"
      }
    },
    "/seasons-by-league": {
      "get": {
        "tags": [
          "Seasons"
        ],
        "summary": "Seasons By League",
        "description": "This endpoint allows you to retrieve the seasons from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons from a specific **league_id**<br />`https://table-tennis.sportmicro.com/seasons-by-league?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.seasons-by-league.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/seasons-by-league"
                  },
                  "type": "array",
                  "example": [
                    {
                      "league_id": 1749,
                      "league_name": "Olympic Games - Singles",
                      "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                      "seasons": [
                        {
                          "id": 4177,
                          "name": "Olympic Games 2024",
                          "year": "2024",
                          "start_time": "2024-08-01"
                        },
                        {
                          "id": 4182,
                          "name": "Olympic Tournament 2020",
                          "year": "2021",
                          "start_time": "2021-08-01"
                        },
                        {
                          "id": 40350,
                          "name": "Olympic Games 2016",
                          "year": "2016",
                          "start_time": "2016-08-08"
                        },
                        {
                          "id": 64091,
                          "name": "Olympic Games 2012",
                          "year": "2012",
                          "start_time": "2012-07-28"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons By League"
      }
    },
    "/seasons-groups": {
      "get": {
        "tags": [
          "Seasons"
        ],
        "summary": "Seasons Groups",
        "description": "This endpoint allows you to retrieve the groups from seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet groups from a specific **season_id**<br />`https://table-tennis.sportmicro.com/seasons-groups?season_id=eq.{season_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.seasons-groups.season_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/seasons-groups"
                  },
                  "type": "array",
                  "example": [
                    {
                      "season_id": 4193,
                      "season_name": "ITTF World Cup 2026",
                      "groups": [
                        {
                          "name": "Group 1",
                          "tournament_id": 36287,
                          "tournament_name": "ITTF World Cup 2026, Group 1"
                        },
                        {
                          "name": "Group 10",
                          "tournament_id": 35210,
                          "tournament_name": "ITTF World Cup 2026, Group 10"
                        },
                        {
                          "name": "Group 11",
                          "tournament_id": 34900,
                          "tournament_name": "ITTF World Cup 2026, Group 11"
                        },
                        {
                          "name": "Group 12",
                          "tournament_id": 34531,
                          "tournament_name": "ITTF World Cup 2026, Group 12"
                        },
                        {
                          "name": "Group 13",
                          "tournament_id": 35126,
                          "tournament_name": "ITTF World Cup 2026, Group 13"
                        },
                        {
                          "name": "Group 14",
                          "tournament_id": 3898,
                          "tournament_name": "ITTF World Cup 2026, Group 14"
                        },
                        {
                          "name": "Group 15",
                          "tournament_id": 35124,
                          "tournament_name": "ITTF World Cup 2026, Group 15"
                        },
                        {
                          "name": "Group 16",
                          "tournament_id": 35198,
                          "tournament_name": "ITTF World Cup 2026, Group 16"
                        },
                        {
                          "name": "Group 2",
                          "tournament_id": 72120,
                          "tournament_name": "ITTF World Cup 2026, Group 2"
                        },
                        {
                          "name": "Group 3",
                          "tournament_id": 34490,
                          "tournament_name": "ITTF World Cup 2026, Group 3"
                        },
                        {
                          "name": "Group 4",
                          "tournament_id": 3933,
                          "tournament_name": "ITTF World Cup 2026, Group 4"
                        },
                        {
                          "name": "Group 5",
                          "tournament_id": 35121,
                          "tournament_name": "ITTF World Cup 2026, Group 5"
                        },
                        {
                          "name": "Group 6",
                          "tournament_id": 35243,
                          "tournament_name": "ITTF World Cup 2026, Group 6"
                        },
                        {
                          "name": "Group 7",
                          "tournament_id": 34872,
                          "tournament_name": "ITTF World Cup 2026, Group 7"
                        },
                        {
                          "name": "Group 8",
                          "tournament_id": 72121,
                          "tournament_name": "ITTF World Cup 2026, Group 8"
                        },
                        {
                          "name": "Group 9",
                          "tournament_id": 34984,
                          "tournament_name": "ITTF World Cup 2026, Group 9"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons Groups"
      }
    },
    "/teams-by-tournament": {
      "get": {
        "tags": [
          "Teams"
        ],
        "summary": "Teams By Tournament",
        "description": "This endpoint allows you to retrieve the teams from a specific tournament.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet teams from a specific **tournament_id**<br />`https://table-tennis.sportmicro.com/teams-by-tournament?tournament_id=eq.{tournament_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.teams-by-tournament.tournament_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/teams-by-tournament"
                  },
                  "type": "array",
                  "example": [
                    {
                      "tournament_id": 3894,
                      "tournament_name": "Olympic Games, Singles",
                      "teams": [
                        {
                          "team_id": 122275,
                          "team_name": "Bojan Tokić",
                          "team_hash_image": "3fd846616f71a7bc03eaf884edc060ebfdd930853f56973b82902705c6bd3a38"
                        },
                        {
                          "team_id": 121498,
                          "team_name": "Marko Jevtovic",
                          "team_hash_image": "a0ed9f4615dab5508841be774dabf8351e75cdfad5086e8f471681b3c73ee8ac"
                        },
                        {
                          "team_id": 280385,
                          "team_name": "Ibrahim Al-Hasan",
                          "team_hash_image": "40435487c030719ebe070f2fdc52215eb7769a5a3254d624c639640f3a7cb771"
                        },
                        {
                          "team_id": 136156,
                          "team_name": "Saheed Idowu",
                          "team_hash_image": "a423922383d1ba05aa4f236186e674e0d956b41e9956506e70afa76b309917a7"
                        },
                        {
                          "team_id": 127458,
                          "team_name": "Oleksandr Didukh",
                          "team_hash_image": "80aaf272c604a2bab3eb6872a41db0f614076afe66daa834cd122617a6a02e80"
                        },
                        {
                          "team_id": 136910,
                          "team_name": "Suraju Saka",
                          "team_hash_image": "8436b8b151bc9c7a8a6c102f4b1bde34830494aed4af5832b3477dd83f84159f"
                        },
                        {
                          "team_id": 137365,
                          "team_name": "Kalinikos Kreanga",
                          "team_hash_image": "f8f88e7ca1aaaf649ba980ed7912b5288322b1790feb63af0605844e8f833b1a"
                        },
                        {
                          "team_id": 137393,
                          "team_name": "Justin Han",
                          "team_hash_image": "60bc85ce833dd6ce32be7e252997d64154174132184b226e68b98f15acbd91e1"
                        },
                        {
                          "team_id": 137831,
                          "team_name": "Daniel Zwickl",
                          "team_hash_image": "2b24e4bbcc6354771c1b01c2b498790808f085ab21e2c7759307449ef2ae1e77"
                        },
                        {
                          "team_id": 119095,
                          "team_name": "Alamiyan N.",
                          "team_hash_image": "03f8628800a6ccfdcf4b9c9622f7f9f543e083a78f73bd2834522cbe15d2d247"
                        },
                        {
                          "team_id": 119820,
                          "team_name": "Yaroslav Zhmudenko",
                          "team_hash_image": "d57b33e4eff243a343a87f92b450a8bd8480d4e20420e0280ba487a2cfc1256f"
                        },
                        {
                          "team_id": 133190,
                          "team_name": "Yoshua Shing",
                          "team_hash_image": "2e4ed07f7ffa74cdecacfdd1e7c570059cf55df21ed672129645ac725b1eea1a"
                        },
                        {
                          "team_id": 123232,
                          "team_name": "Andy Pereira",
                          "team_hash_image": "6352123a785c37e6e23d54f0db1b28f39886c1c73ef6b92b490097eb84b37b15"
                        },
                        {
                          "team_id": 123146,
                          "team_name": "Marcelo Aguirre",
                          "team_hash_image": "08f07ba78fd61da8e8b8c6db955edc32e184887ac1c2d5f21b26ef8d49390d61"
                        },
                        {
                          "team_id": 123213,
                          "team_name": "Aleksandar Karakasevic",
                          "team_hash_image": "fe0c2869020972b14e1ec047961aa13ae1608922b892b0cda4109c95b9f7a69a"
                        },
                        {
                          "team_id": 273875,
                          "team_name": "Allan Bentsen",
                          "team_hash_image": "9f75944b2bd1fa71e05ac3e4f5b8bdb8156796253849466e1c6ec97254c1f3c3"
                        },
                        {
                          "team_id": 275684,
                          "team_name": "Werner Schlager",
                          "team_hash_image": "0c33b98d764e8a62b2542db8d5313a176e7461b0c771b1c33b9420eb65775013"
                        },
                        {
                          "team_id": 275982,
                          "team_name": "Matiss Burgis",
                          "team_hash_image": "b45349c21eb11425a67b5b1f41def2cf0a6e5fa7ec3597f7c8ec61cea53cea8c"
                        },
                        {
                          "team_id": 275979,
                          "team_name": "Hyok Bong Kim",
                          "team_hash_image": "cc44e5113684617b7128ddd642c08beeb64be64f68e655c22af9233268d8c7e8"
                        },
                        {
                          "team_id": 276000,
                          "team_name": "Mawussi Agbetoglo",
                          "team_hash_image": "7d8ec28e3f9d942a7055198c4d871b3b9082ff1d8aca275079c497a6a8521eaf"
                        },
                        {
                          "team_id": 276002,
                          "team_name": "Hugo Hoyama",
                          "team_hash_image": "e2437dc83fbfab2ee5264b26e87d0ffdb3dc8d661d5204ae47d6783228b1e751"
                        },
                        {
                          "team_id": 275987,
                          "team_name": "Jörgen Persson",
                          "team_hash_image": "e7d720872ce1faa9c4548749ba5bef43b871bc743ece4cf77d7349e63a8d1e16"
                        },
                        {
                          "team_id": 275984,
                          "team_name": "Song Liu",
                          "team_hash_image": "6bd8f8b1a1f1db1195457955a403213199fd5a08f2528341418d87376cc4e833"
                        },
                        {
                          "team_id": 276004,
                          "team_name": "Pierre-Luc Hinse",
                          "team_hash_image": "1c2edd2646d960a56bdca7cd0b0ea4be659ea4644bc1606b753d216a9414feb5"
                        },
                        {
                          "team_id": 276011,
                          "team_name": "Andre Ho",
                          "team_hash_image": "864f856190eb0559d2d48a902cbd270bb75b823e72b21aacb373a7af2ebf5bee"
                        },
                        {
                          "team_id": 276023,
                          "team_name": "Timothy Wang",
                          "team_hash_image": "d2b462757a601ddac304a696f67b27bfee90c9e195ebb620ce42cd0d1d1b9497"
                        },
                        {
                          "team_id": 276006,
                          "team_name": "Song Nam Kim",
                          "team_hash_image": "f18aae42d7f06396889a6dcfc955f8af388a207cfa7cc68b74be79f8833150a4"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams By Tournament"
      }
    },
    "/matches-by-date-league": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches By Date League",
        "description": "This endpoint allows you to retrieve the matches from a specific date and league. The date has a format of YYYY-DD-MM.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet matches from a specific **date** and **league_id**<br />`https://table-tennis.sportmicro.com/matches-by-date-league?date=eq.{date}&league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-by-date-league.date"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches-by-date-league.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-by-date-league"
                  },
                  "type": "array",
                  "example": [
                    {
                      "date": "2012-07-28",
                      "league_id": 1749,
                      "league_name": "Olympic Games - Singles",
                      "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                      "matches": [
                        {
                          "id": 244866,
                          "name": "Adam Pattantyus vs William Henzell",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:00:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 136334,
                          "home_team_id": 124236,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "William Henzell",
                          "home_team_name": "Adam Pattantyus",
                          "away_team_score": 4,
                          "home_team_score": 1,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "2b8abb13f69c5f62ca997231cc420e57d742747008103f0da60398ffffbaa83d",
                          "home_team_hash_image": "96a047bc4c9587a207979816a77706b70434f46c76d83db63468cd5088445985",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244867,
                          "name": "Gustavo Tsuboi vs Soumyajit Ghosh",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:00:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 118140,
                          "home_team_id": 119093,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Soumyajit Ghosh",
                          "home_team_name": "Gustavo Tsuboi",
                          "away_team_score": 4,
                          "home_team_score": 2,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "6d12bf560f2b458b61839447697e55da4be106c60d8d44063a018478672117be",
                          "home_team_hash_image": "1df2e15768cf9614d54bcd7e6952a06c0bf932a0c1b4d06ee91507eded6d0f89",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244878,
                          "name": "Alamiyan N. vs Justin Han",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:00:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 137393,
                          "home_team_id": 119095,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Justin Han",
                          "home_team_name": "Alamiyan N.",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "60bc85ce833dd6ce32be7e252997d64154174132184b226e68b98f15acbd91e1",
                          "home_team_hash_image": "03f8628800a6ccfdcf4b9c9622f7f9f543e083a78f73bd2834522cbe15d2d247",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244879,
                          "name": "Carlos Machado vs Quadri Aruna",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:00:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 117657,
                          "home_team_id": 123726,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Quadri Aruna",
                          "home_team_name": "Carlos Machado",
                          "away_team_score": 4,
                          "home_team_score": 2,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "d2e315b0de3ef9ea8f86043730db6dd4d32bed5ec5644210f3cb8f8f9a080f30",
                          "home_team_hash_image": "c75c9b51a415f42bbdb9a4d31c92147c9a2a7df12b3006884d2cfedbc9487aa3",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244880,
                          "name": "Allan Bentsen vs Daniel Zwickl",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:00:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 137831,
                          "home_team_id": 273875,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Daniel Zwickl",
                          "home_team_name": "Allan Bentsen",
                          "away_team_score": 4,
                          "home_team_score": 1,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "2b24e4bbcc6354771c1b01c2b498790808f085ab21e2c7759307449ef2ae1e77",
                          "home_team_hash_image": "9f75944b2bd1fa71e05ac3e4f5b8bdb8156796253849466e1c6ec97254c1f3c3",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244891,
                          "name": "Oleksandr Didukh vs Marcelo Aguirre",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:45:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 123146,
                          "home_team_id": 127458,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Marcelo Aguirre",
                          "home_team_name": "Oleksandr Didukh",
                          "away_team_score": 3,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "08f07ba78fd61da8e8b8c6db955edc32e184887ac1c2d5f21b26ef8d49390d61",
                          "home_team_hash_image": "80aaf272c604a2bab3eb6872a41db0f614076afe66daa834cd122617a6a02e80",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244904,
                          "name": "Jean-Michel Saive vs Marko Jevtovic",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:45:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 121498,
                          "home_team_id": 136909,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Marko Jevtovic",
                          "home_team_name": "Jean-Michel Saive",
                          "away_team_score": 1,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "a0ed9f4615dab5508841be774dabf8351e75cdfad5086e8f471681b3c73ee8ac",
                          "home_team_hash_image": "61756a1e6db5c1497d9735ac1f4ce5fbd4df69c0203d44e2d96c07fb232dc9c8",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244918,
                          "name": "Mihai Bobocica vs Andy Pereira",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:45:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 123232,
                          "home_team_id": 121492,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Andy Pereira",
                          "home_team_name": "Mihai Bobocica",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "6352123a785c37e6e23d54f0db1b28f39886c1c73ef6b92b490097eb84b37b15",
                          "home_team_hash_image": "334f404fed4ee2f47e2ea906849b64710a6cc300db837ceda1e4573c619b8058",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244946,
                          "name": "Andy Pereira vs Yoshua Shing",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T09:30:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 133190,
                          "home_team_id": 123232,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Yoshua Shing",
                          "home_team_name": "Andy Pereira",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "2e4ed07f7ffa74cdecacfdd1e7c570059cf55df21ed672129645ac725b1eea1a",
                          "home_team_hash_image": "6352123a785c37e6e23d54f0db1b28f39886c1c73ef6b92b490097eb84b37b15",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244953,
                          "name": "Par Gerell vs El-Sayed Lashin",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:45:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 123942,
                          "home_team_id": 122331,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "El-Sayed Lashin",
                          "home_team_name": "Par Gerell",
                          "away_team_score": 4,
                          "home_team_score": 3,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "ad117d0d4518f5287bbf883ff7f365019436dffeb59af82dc54819f501ecf272",
                          "home_team_hash_image": "a53a1160206aa77e13c3402d05563f9fb507664be4319910e9298e8316e27455",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244989,
                          "name": "Yaroslav Zhmudenko vs Omar Assar",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:45:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 118372,
                          "home_team_id": 119820,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Omar Assar",
                          "home_team_name": "Yaroslav Zhmudenko",
                          "away_team_score": 4,
                          "home_team_score": 1,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "f8bee2c063ba8107928bcdf117ea42147c67c740680a9fd5b101591b28bcd0fc",
                          "home_team_hash_image": "d57b33e4eff243a343a87f92b450a8bd8480d4e20420e0280ba487a2cfc1256f",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244994,
                          "name": "Song Liu vs Suraju Saka",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:45:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 136910,
                          "home_team_id": 275984,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Suraju Saka",
                          "home_team_name": "Song Liu",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "8436b8b151bc9c7a8a6c102f4b1bde34830494aed4af5832b3477dd83f84159f",
                          "home_team_hash_image": "6bd8f8b1a1f1db1195457955a403213199fd5a08f2528341418d87376cc4e833",
                          "tournament_importance": 11
                        },
                        {
                          "id": 245060,
                          "name": "Justin Han vs Mawussi Agbetoglo",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T08:45:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 276000,
                          "home_team_id": 137393,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Mawussi Agbetoglo",
                          "home_team_name": "Justin Han",
                          "away_team_score": 2,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "7d8ec28e3f9d942a7055198c4d871b3b9082ff1d8aca275079c497a6a8521eaf",
                          "home_team_hash_image": "60bc85ce833dd6ce32be7e252997d64154174132184b226e68b98f15acbd91e1",
                          "tournament_importance": 11
                        },
                        {
                          "id": 245067,
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T08:45:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 136156,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Saheed Idowu",
                          "away_team_score": 2,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "a423922383d1ba05aa4f236186e674e0d956b41e9956506e70afa76b309917a7",
                          "tournament_importance": 11
                        },
                        {
                          "id": 245070,
                          "name": "Matiss Burgis vs Pierre-Luc Hinse",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:00:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 276004,
                          "home_team_id": 275982,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Pierre-Luc Hinse",
                          "home_team_name": "Matiss Burgis",
                          "away_team_score": 3,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "1c2edd2646d960a56bdca7cd0b0ea4be659ea4644bc1606b753d216a9414feb5",
                          "home_team_hash_image": "b45349c21eb11425a67b5b1f41def2cf0a6e5fa7ec3597f7c8ec61cea53cea8c",
                          "tournament_importance": 11
                        },
                        {
                          "id": 245074,
                          "name": "Segun Toriola vs Andre Ho",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T09:30:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 276011,
                          "home_team_id": 123949,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Andre Ho",
                          "home_team_name": "Segun Toriola",
                          "away_team_score": 1,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "864f856190eb0559d2d48a902cbd270bb75b823e72b21aacb373a7af2ebf5bee",
                          "home_team_hash_image": "d546085f9313e7db455aa52c4bd02f2e8646cbf3dcd395ea00c1c21c80326fe4",
                          "tournament_importance": 11
                        },
                        {
                          "id": 245075,
                          "name": "Zengyi Wang vs Hugo Hoyama",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:00:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 276002,
                          "home_team_id": 122206,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Hugo Hoyama",
                          "home_team_name": "Zengyi Wang",
                          "away_team_score": 3,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "e2437dc83fbfab2ee5264b26e87d0ffdb3dc8d661d5204ae47d6783228b1e751",
                          "home_team_hash_image": "2828ed19886c50919120788370c2f5214c4e5b448771a10028563b6218b2c199",
                          "tournament_importance": 11
                        },
                        {
                          "id": 245077,
                          "name": "Jörgen Persson vs Segun Toriola",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:00:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 123949,
                          "home_team_id": 275987,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Segun Toriola",
                          "home_team_name": "Jörgen Persson",
                          "away_team_score": 1,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "d546085f9313e7db455aa52c4bd02f2e8646cbf3dcd395ea00c1c21c80326fe4",
                          "home_team_hash_image": "e7d720872ce1faa9c4548749ba5bef43b871bc743ece4cf77d7349e63a8d1e16",
                          "tournament_importance": 11
                        },
                        {
                          "id": 245111,
                          "name": "Song Nam Kim vs Timothy Wang",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 64091,
                          "start_time": "2012-07-28T09:30:00+00:00",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 276023,
                          "home_team_id": 276006,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Timothy Wang",
                          "home_team_name": "Song Nam Kim",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "away_team_hash_image": "d2b462757a601ddac304a696f67b27bfee90c9e195ebb620ce42cd0d1d1b9497",
                          "home_team_hash_image": "f18aae42d7f06396889a6dcfc955f8af388a207cfa7cc68b74be79f8833150a4",
                          "tournament_importance": 11
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches By Date League"
      }
    },
    "/media-players": {
      "get": {
        "tags": [
          "Media"
        ],
        "summary": "Media Players",
        "description": "This endpoint allows you to retrieve the media from players.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet media from a specific **player_id**<br />`https://table-tennis.sportmicro.com/media-players?player_id=eq.{player_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.media-players.player_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/media-players"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 12985,
                      "player_id": 498097,
                      "title": "Sato H / Shibata S 3 - 0 Loy M Y / Ser L Q",
                      "subtitle": "Full Highlights",
                      "url": "https://www.youtube.com/watch?v=sFxDNTSxNSk",
                      "thumbnail_url": "https://i.ytimg.com/vi/sFxDNTSxNSk/hqdefault.jpg",
                      "date_published": "2025-09-21T00:49:47+00:00",
                      "channel_url": "https://www.youtube.com/watch?v=sFxDNTSxNSk"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Media Players"
      }
    },
    "/matches-incidents": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches Incidents",
        "description": "This endpoint allows you to retrieve the incidents from matches.\n\nFor **incidents** we have many types: `goal`, `period`.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 10 seconds during a live match.<br />**Recommended Calls**: Limit calls to 1 per 10 seconds during a live match.\n\n### Use Cases\nGet incidents from a specific **match_id**<br />`https://table-tennis.sportmicro.com/matches-incidents?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-incidents.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-incidents"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 3,
                      "incidents": [
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 1,
                          "home_score": 0
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 1,
                          "home_score": 1
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 2,
                          "home_score": 0
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 2,
                          "home_score": 1
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 2,
                          "home_score": 2
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 3,
                          "home_score": 1
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 3,
                          "home_score": 2
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 4,
                          "home_score": 2
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 4,
                          "home_score": 3
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 5,
                          "home_score": 2
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 5,
                          "home_score": 3
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 5,
                          "home_score": 4
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 5,
                          "home_score": 5
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 6,
                          "home_score": 2
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 6,
                          "home_score": 4
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 6,
                          "home_score": 6
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 6,
                          "home_score": 7
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 7,
                          "home_score": 4
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 7,
                          "home_score": 5
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 7,
                          "home_score": 6
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 7,
                          "home_score": 7
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 8,
                          "home_score": 4
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 8,
                          "home_score": 6
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 8,
                          "home_score": 7
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 8,
                          "home_score": 10
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 9,
                          "home_score": 4
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 9,
                          "home_score": 6
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 9,
                          "home_score": 8
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 10,
                          "home_score": 6
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 10,
                          "home_score": 9
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 11,
                          "home_score": 6
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": false,
                          "away_score": 11,
                          "home_score": 9
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 0,
                          "home_score": 1
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 1,
                          "home_score": 1
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 1,
                          "home_score": 2
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 2,
                          "home_score": 1
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 2,
                          "home_score": 2
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 3,
                          "home_score": 2
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 3,
                          "home_score": 3
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 4,
                          "home_score": 3
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 4,
                          "home_score": 4
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 4,
                          "home_score": 5
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 5,
                          "home_score": 4
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 5,
                          "home_score": 5
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 5,
                          "home_score": 6
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 5,
                          "home_score": 7
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 6,
                          "home_score": 3
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 6,
                          "home_score": 4
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 6,
                          "home_score": 5
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 7,
                          "home_score": 6
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 7,
                          "home_score": 7
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 7,
                          "home_score": 8
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 7,
                          "home_score": 9
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 7,
                          "home_score": 10
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 8,
                          "home_score": 8
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 8,
                          "home_score": 11
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 9,
                          "home_score": 5
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 9,
                          "home_score": 6
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 9,
                          "home_score": 9
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 10,
                          "home_score": 7
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 10,
                          "home_score": 8
                        },
                        {
                          "time": -1,
                          "type": "goal",
                          "class": "regular",
                          "is_home": true,
                          "away_score": 10,
                          "home_score": 9
                        },
                        {
                          "text": "4. set",
                          "time": -1,
                          "type": "period",
                          "is_live": false,
                          "away_score": 11,
                          "home_score": 9
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Incidents"
      }
    },
    "/cup-bracket": {
      "get": {
        "tags": [
          "Cup bracket"
        ],
        "summary": "Cup Bracket",
        "description": "This endpoint allows you to retrieve the cup knock outs.\nYou can use `id` from the `seasons` or `leagues` endpoint to get the wanted cup knock out tree.\n\nFields in rounds:\n\nField | Explanation\n--- | ---\n`order` | The order of the round\n`description` | The description of the round\n`blocks` | The blocks of the round\n`finished` | If the match is finished\n`order` | The order of the block\n`home_team_score` | The score of the home team\n`away_team_score` | The score of the away team\n`has_next_round_link` | If the match has next round\n`match_in_progress` | If the match is in play\n`series_start_date_timestamp` | The start date of the match\n`automatic_progression` | If the match has automatic progression\n`participants` | The participants of the block (match)\n`team_id` | The id of the team\n`winner` | If the team is winner of the block\n`order` | The order of the participants\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated after every finished match.<br />**Recommended Calls**: Limit calls to 1 per finished match.\n\n### Use Cases\nGet cup knock out based on the **id**<br />`https://table-tennis.sportmicro.com/cup-bracket?id=eq.{id}`<br /><br />Get cups based on the **season_id**<br />`https://table-tennis.sportmicro.com/cup-bracket?season_id=eq.{season_id}`<br /><br />Get cups based on the **league_id**<br />`https://table-tennis.sportmicro.com/cup-bracket?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.cup-bracket.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.cup-bracket.season_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.cup-bracket.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/cup-bracket"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1049,
                      "name": "Olympic Tournament 2020, Final Round",
                      "current_round": 7,
                      "type": 1,
                      "season_id": 4182,
                      "season_name": "Olympic Tournament 2020",
                      "league_id": 1749,
                      "league_name": "Olympic Games - Singles",
                      "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                      "rounds": [
                        {
                          "type": 101,
                          "order": 1,
                          "blocks": [
                            {
                              "order": 1,
                              "finished": true,
                              "away_team_score": "0",
                              "home_team_score": "4",
                              "has_next_round_link": true,
                              "automatic_progression": false,
                              "series_start_date_timestamp": "2021-07-24T05:15:00+00:00"
                            }
                          ],
                          "description": "Round 1"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Cup Bracket"
      }
    },
    "/referees-by-league": {
      "get": {
        "tags": [
          "Referees"
        ],
        "summary": "Referees By League",
        "description": "This endpoint allows you to retrieve the referees from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet referees from a specific **league_id**<br />`https://table-tennis.sportmicro.com/referees-by-league?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.referees-by-league.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/referees-by-league"
                  },
                  "type": "array",
                  "example": [
                    {
                      "league_id": 1749,
                      "league_name": "Olympic Games - Singles",
                      "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Referees By League"
      }
    },
    "/agg-news-matches": {
      "get": {
        "tags": [
          "News"
        ],
        "summary": "Agg News Matches",
        "description": "This endpoint allows you to retrieve aggregated news from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 15 minutes.<br />**Recommended Calls**: Limit calls to 1 every 15 minutes.\n\n### Use Cases\nGet news from a specific **match_id**<br />`https://table-tennis.sportmicro.com/agg-news-matches?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.agg-news-matches.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/agg-news-matches"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "match_id": 793965,
                      "title": "Inês joga no Reus, está a jogar contra o Reus e não foi emprestada ... - ZAP Notícias",
                      "link": "https://zap.aeiou.pt/ines-matos-mirandela-reus-567335",
                      "thumbnail_url": "https://zap.aeiou.pt/wp-content/uploads/2023/11/dec16168dbb3505fe3aeeab3aebcb8f8-900x602.jpeg",
                      "description": "Um contexto raro para os seguidores do desporto. Mas acontece mesmo: Inês Matos fala com o ZAP sobre os jogos 'estranhos'.",
                      "published_date": "2023-11-14T18:00:44+00:00",
                      "source_url": "https://zap.aeiou.pt",
                      "source": "ZAP Notícias"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Agg News Matches"
      }
    },
    "/seasons": {
      "get": {
        "tags": [
          "Seasons"
        ],
        "summary": "Seasons",
        "description": "This endpoint allows you to retrieve the seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons<br />`https://table-tennis.sportmicro.com/seasons`<br /><br />Get seasons based on the **id**<br />`https://table-tennis.sportmicro.com/seasons?id=eq.{id}`<br /><br />Get seasons from a specific **league_id**<br />`https://table-tennis.sportmicro.com/seasons?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.seasons.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.seasons.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/seasons"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 66699,
                      "name": "Europe Cup 20/21, Women",
                      "year": "2021",
                      "start_time": "2021-05-08",
                      "end_time": "2021-05-08",
                      "league_id": 11648,
                      "league_name": "ETTU Europe Cup - Women"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons"
      }
    },
    "/tournaments": {
      "get": {
        "tags": [
          "Tournaments"
        ],
        "summary": "Tournaments",
        "description": "This endpoint allows you to retrieve the tournaments.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tournaments<br />`https://table-tennis.sportmicro.com/tournaments`<br /><br />Get tournaments based on the **id**<br />`https://table-tennis.sportmicro.com/tournaments?id=eq.{id}`<br /><br />Get tournaments from a specific **league_id**<br />`https://table-tennis.sportmicro.com/tournaments?league_id=eq.{league_id}`<br /><br />Get tournaments from a specific **class_id**<br />`https://table-tennis.sportmicro.com/tournaments?class_id=eq.{class_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.tournaments.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.tournaments.league_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.tournaments.class_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/tournaments"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 35861,
                      "name": "ETTU Europe Cup, Teams, 2nd Stage, Group A",
                      "importance": 0,
                      "league_id": 11827,
                      "league_name": "ETTU Europe Cup",
                      "class_id": 306,
                      "class_name": "International",
                      "class_hash_image": "65dbfe692e6cbf63ac2a535ab413f3d039183afe1d4a9c29dc2b1cdc4c9de7ec"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Tournaments"
      }
    },
    "/arenas": {
      "get": {
        "tags": [
          "Arenas"
        ],
        "summary": "Arenas",
        "description": "This endpoint allows you to retrieve the arenas.\nWith geolocation parameter from `geolocations` endpoint we can see latitude and longitute of the arena.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can get the image of the arena by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet arenas<br />`https://table-tennis.sportmicro.com/arenas`<br /><br />Get arenas based on the **id**<br />`https://table-tennis.sportmicro.com/arenas?id=eq.{id}`<br /><br />Get arenas from a specific **country_id**<br />`https://table-tennis.sportmicro.com/arenas?country_id=eq.{country_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.arenas.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.arenas.country_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/arenas"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 9881,
                      "name": "Table 1",
                      "city": "Durban",
                      "hash_image": "ec9ba494b1c224c79726a1001cfd35d0e06041db4cff5061dd59f91a8dbc7522",
                      "country_id": 72,
                      "country_name": "South Africa",
                      "country_hash_image": "9a8bf3ebbe6f826e39772c4763bea0722b18c0e4b5b7ba2fe6813f02f7f0a06a",
                      "geolocation": [
                        {
                          "name": "Durban",
                          "type": "locality",
                          "label": "Durban, NL, South Africa",
                          "county": "eThekwini",
                          "region": "Kwazulu-Natal",
                          "latitude": -29.855494,
                          "locality": "Durban",
                          "continent": "Africa",
                          "longitude": 31.017954,
                          "confidence": 1,
                          "region_code": "NL",
                          "country_code": "ZAF",
                          "administrative_area": "Ethekwini"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Arenas"
      }
    },
    "/classes": {
      "get": {
        "tags": [
          "Classes"
        ],
        "summary": "Classes",
        "description": "This endpoint allows you to retrieve the classes.\nYou can use the `alpha` parameter to get a specific class as a country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times per day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can get the image of the category by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet classes<br />`https://table-tennis.sportmicro.com/classes`<br /><br />Get class based on the **id**<br />`https://table-tennis.sportmicro.com/classes?id=eq.{id}`<br /><br />Get classes based on the **alpha**<br />`https://table-tennis.sportmicro.com/classes?alpha=eq.{alpha}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.classes.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.classes.alpha"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/classes"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 944,
                      "name": "Ukraine",
                      "flag": "ukraine",
                      "alpha": "UA",
                      "importance": 0,
                      "hash_image": "cc9557a2182cfcb44743393d73354ddf5edf9b818298a735dbe35bacec5f8af6",
                      "matches_live_count": 0
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Classes"
      }
    },
    "/matches-highlights": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches Highlights",
        "description": "This endpoint allows you to retrieve the highlights from matches.\nIt has all social media posts about the match.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 10 seconds during a live match.<br />**Recommended Calls**: Limit calls to 1 per 10 seconds during a live match.\n\n### Use Cases\nGet highlights from a specific **match_id**<br />`https://table-tennis.sportmicro.com/matches-highlights?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-highlights.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-highlights"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "match_id": 4373,
                      "title": "Allegro M / Rassenfosse A 1 - 3 De Nodrest L / Rolland J",
                      "subtitle": "Full Highlights",
                      "url": "https://www.youtube.com/watch?v=M0claJkDo7o",
                      "created_at": "2026-02-03T23:12:20+00:00",
                      "source_url": "https://www.youtube.com/watch?v=M0claJkDo7o"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Highlights"
      }
    },
    "/leagues-by-class": {
      "get": {
        "tags": [
          "Leagues"
        ],
        "summary": "Leagues By Class",
        "description": "This endpoint allows you to retrieve the leagues from a specific class.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet leagues from a specific **class_id**<br />`https://table-tennis.sportmicro.com/leagues-by-category?class_id=eq.{class_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.leagues-by-class.class_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/leagues-by-class"
                  },
                  "type": "array",
                  "example": [
                    {
                      "class_id": 306,
                      "class_name": "International",
                      "class_hash_image": "65dbfe692e6cbf63ac2a535ab413f3d039183afe1d4a9c29dc2b1cdc4c9de7ec",
                      "leagues": [
                        {
                          "id": 1749,
                          "name": "Olympic Games - Singles",
                          "hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe"
                        },
                        {
                          "id": 11474,
                          "name": "WTT Star Contender Foz do Iguacu - WS",
                          "hash_image": "c5c275eb29083d707cfd5dfcb7fea7a12c26008326ad9bdba9e1d85bd5980fa2"
                        },
                        {
                          "id": 11648,
                          "name": "ETTU Europe Cup - Women",
                          "hash_image": "d48b4202aa5875da4b9dcad9621e5ca142eb3d73afa9baa5be0960ed2ff14186"
                        },
                        {
                          "id": 11746,
                          "name": "ETTU Europe Trophy - Women",
                          "hash_image": "92d6b5721875b29d39bb608541b1f8eba855222cb6c70fd04060a5002056322c"
                        },
                        {
                          "id": 11864,
                          "name": "WTT Saudi Smash - WD",
                          "hash_image": "ce8417268287ce3944e772fe6c67d6844371e541d8d8de245e9bd08bb56281d6"
                        },
                        {
                          "id": 11927,
                          "name": "World Team Championships Finals",
                          "hash_image": "322a3da811ae1160ed71cf558c3fc10ea7e9c1907b3aa76be954c719bdb033e2"
                        },
                        {
                          "id": 12955,
                          "name": "World Team Championships Finals - Women",
                          "hash_image": "9f430086992e75c26ea4a5d9c38e348488779bf310ab1f98212a20d9756bca12"
                        },
                        {
                          "id": 12982,
                          "name": "German Open (WTP) 2017 - Women",
                          "hash_image": "335a52c0dedee31367ef4b2d2ee5164e755ea891ac701dcdde1f475e7544fc80"
                        },
                        {
                          "id": 12986,
                          "name": "World Tour - Polish Open (CS) 2017 - Girls",
                          "hash_image": "be4941da8f3ba548fa7b4eda4ac527d11ee51ed5da61d3e8fc9e2e0e3d2f4c06"
                        },
                        {
                          "id": 20435,
                          "name": "WTT Feeder Gdansk - WD",
                          "hash_image": "b0dbcb5a6e77758b2c981a83009c9f2a32520548fe5611231ae746536a032bc5"
                        },
                        {
                          "id": 20436,
                          "name": "WTT Feeder Gdansk - WS",
                          "hash_image": "ae526436a0a676fdfd1b8298d87d7d2bc40b8876fefafe37ac8443b84e951f44"
                        },
                        {
                          "id": 20480,
                          "name": "WTT Feeder Olomouc - WD",
                          "hash_image": "71e0c463b694cc3a3586d4cda8a0509da7003c244e2432520a7d58da4efe5354"
                        },
                        {
                          "id": 20508,
                          "name": "Europe Smash Sweden - MD",
                          "hash_image": "f3c88d81f5cfa63f9ebbe17925f6af2d4879ebdfd43332357487c1f462748fac"
                        },
                        {
                          "id": 20529,
                          "name": "WTT Feeder Spokane II - XD",
                          "hash_image": "891e5adb72254a582792f9fc6d3df62508490eb2d4ebd3ce893e05485c494a43"
                        },
                        {
                          "id": 20760,
                          "name": "German Open - Mixed - Doubles",
                          "hash_image": "3b186a2f297330a96a1935d5c1a614ac7c581d5144b73e25f3de9a9eb1282fdb"
                        },
                        {
                          "id": 20979,
                          "name": "ITTF Challenge - Spanish Open - Singles",
                          "hash_image": "aa295fd26c03400d38f80269ef70c4d217c157fac4580adaedb7a816d53b8720"
                        },
                        {
                          "id": 20991,
                          "name": "ITTF Challenge - Spanish Open - Women - Singles",
                          "hash_image": "455dce1a86bd13e63450fb555950fe503f639fa1cc340f2acea5ce2874a4711d"
                        },
                        {
                          "id": 21002,
                          "name": "ITTF Challenge - Spanish Open - Doubles",
                          "hash_image": "468d0406e0e84a8705d9c5ec784df79a69553873986e3f3736ebd371360f978b"
                        },
                        {
                          "id": 21049,
                          "name": "ITTF Challenge - Spanish Open - Women - Doubles",
                          "hash_image": "6e6856dde64d3f6d9118a8b6bb2995e4f49cc60473679fe4447d6148514362e6"
                        },
                        {
                          "id": 21091,
                          "name": "ITTF Challenge Plus Portugal Open - Singles",
                          "hash_image": "26767a3016cbb32f36b2998b61c671e5c79faf0dc0e6cc5d1cd16b3c4450b4b6"
                        },
                        {
                          "id": 21124,
                          "name": "ITTF Challenge Plus Portugal Open - Women - Singles",
                          "hash_image": "4c9152db9386941eb1561c1f9ca2bc8af2ae55a8f8f4ca6fc97ca5378658cdb6"
                        },
                        {
                          "id": 21156,
                          "name": "ITTF Challenge Plus Portugal Open - Doubles",
                          "hash_image": "44fb8146332187ebab02cf717dccd25b183b83f8ed0a36242d01c51bd7a4e018"
                        },
                        {
                          "id": 21171,
                          "name": "ITTF Challenge Plus Portugal Open - Women - Doubles",
                          "hash_image": "e40f84861e51528b24649f677402957b4a144ec9666e651716933af31b85c01a"
                        },
                        {
                          "id": 21191,
                          "name": "ITTF Challenge - Polish Open - Singles",
                          "hash_image": "94f8fa49d08f4cb28180e4ef5647016771eaa0e311fa0ae8ce9187d30542fef7"
                        },
                        {
                          "id": 21193,
                          "name": "ITTF Challenge Plus Oman Open - Women - Singles",
                          "hash_image": "2f72d8c98f352d390b55abe26b9a6b54e48d29ce6211b4260e2f1ff1493ff313"
                        },
                        {
                          "id": 21194,
                          "name": "ITTF Challenge Plus Oman Open - Mixed - Doubles",
                          "hash_image": "50a9d0469d25efb1e848ee5e080d6c23594abcc8b9842069bbda1d15f9a530f5"
                        },
                        {
                          "id": 21196,
                          "name": "ITTF Challenge - Polish Open - Women Doubles",
                          "hash_image": "a5a2f0b72ee2f633068acff48238f06f3b85c4dbc872bf836156fea022152033"
                        },
                        {
                          "id": 21199,
                          "name": "WTT Contender Muscat 2 2022 - MD",
                          "hash_image": "54026b4672f865bb5d4536f640bf473ecb1b0c1eefffa2d37aeb928a3a62e2bd"
                        },
                        {
                          "id": 21202,
                          "name": "WTT Contender Muscat 2 2022 - WD",
                          "hash_image": "aacad811b7cd6e53813b1a37112a8bd4908868e4a09fccf00febf090d7f5bf7e"
                        },
                        {
                          "id": 21203,
                          "name": "WTT Contender Muscat 2 2022 - WS",
                          "hash_image": "feb26832e177190d0e959c859ae80f699f1c426205ed11b277770cdebc2c3961"
                        },
                        {
                          "id": 21205,
                          "name": "WTT Contender Muscat 2 2022 - MS",
                          "hash_image": "ad2b6c6be2abc5a0bdfd3ced9b47bc1d3aa073c1313851559b75fb2ee3cdea25"
                        },
                        {
                          "id": 21206,
                          "name": "WTT Contender Muscat 2 2022 - XD",
                          "hash_image": "2115254d2e82df2f638f77b96feb68d9bc81aa421e8b680673f2800e118396c6"
                        },
                        {
                          "id": 21208,
                          "name": "WTT Contenders Doha - MS",
                          "hash_image": "77a5b97a77afecd4ae7dcb68e414c11c30c332ac6000dd6ab0346bdb145226d9"
                        },
                        {
                          "id": 21219,
                          "name": "WTT Contenders Doha - WS",
                          "hash_image": "98b149b18a4d27fd3bf740711c6097ceb554dd040b4aa3b2a38c9dca06ee28df"
                        },
                        {
                          "id": 21226,
                          "name": "WTT Contenders Doha - Mixed Doubles",
                          "hash_image": "77e1d32f8cfaeeb943c89acd5a9767eff4547c2d138fc26345a695f51b21e7ec"
                        },
                        {
                          "id": 21229,
                          "name": "WTT Singapore Smash - Mixed Doubles",
                          "hash_image": "8a4aa229e9c20dbea93ec4fdd5b3d8f7befebf5839e09a536a630c6f368dd764"
                        },
                        {
                          "id": 21259,
                          "name": "WTT Contender Nova Gorica",
                          "hash_image": "5a20ac1f8b0ad8d61ebb5f434cee1e320a1a3d5a8684224617bc43c86056f989"
                        },
                        {
                          "id": 21275,
                          "name": "WTT Contender Nova Gorica - Doubles",
                          "hash_image": "dbec29c406c22121430e917389484b97ccdc3f09d6afd1e12ba8bc264ffdd950"
                        },
                        {
                          "id": 21282,
                          "name": "WTT Contender Nova Gorica - Women",
                          "hash_image": "ddedc853aa85eb5fa3dd0075ca75cd33c77deaa17f9bca641f11c6c794f6da18"
                        },
                        {
                          "id": 21289,
                          "name": "WTT Contender Nova Gorica - Mixed Doubles",
                          "hash_image": "73f3e9ec8bf9e08dff83485d9bd58dfcc0eaec74ef8d32b89b7540f21333bccd"
                        },
                        {
                          "id": 21292,
                          "name": "WTT Contender Durban - Mixed Doubles",
                          "hash_image": "3e4b409fd10d2ae33d8ebc58c3897ed5896aab14afb6853d6039b10cf754403f"
                        },
                        {
                          "id": 21296,
                          "name": "WTT Contender Durban - Doubles",
                          "hash_image": "d4c036bdafcf9d15a1b13c6bac08a98098bead49cd992eb95c3b4b94039a1b5e"
                        },
                        {
                          "id": 21302,
                          "name": "WTT Contender Durban - Women Singles",
                          "hash_image": "4bc7166a7526d8c686ecb348910390f76a866ad8aa0fb42afc4aa84180ed2b4c"
                        },
                        {
                          "id": 21307,
                          "name": "Challenger Series 2023",
                          "hash_image": "6727839e70bfa4a7b39b66327574f64a7aa0ba41d753023af149755931d1f6ff"
                        },
                        {
                          "id": 21310,
                          "name": "Contender Antalya - Singles",
                          "hash_image": "1eb44949d7fd70be96c93cccdacae61de90e29d331573517dbe4b83cd9a9871c"
                        },
                        {
                          "id": 21318,
                          "name": "Contender Antalya - Women - Singles",
                          "hash_image": "cb718336835d372c4d9c9d9c8362dcafdbfd696b73d324e957480391fc90cef1"
                        },
                        {
                          "id": 21326,
                          "name": "European Olympic Qualification Tournament",
                          "hash_image": "3bcb83b431748e663f92e85703763da3b5452dad39668bf45a5cbc85c246e3f1"
                        },
                        {
                          "id": 21327,
                          "name": "Feeder Antalya - Doubles",
                          "hash_image": "8ffb0de3f7c40e392b5c5085342c5ff12f4f22f6cedb4874f1919d827bf9656d"
                        },
                        {
                          "id": 21358,
                          "name": "Feeder Antalya - Mixed Doubles",
                          "hash_image": "7fc5ccf9f6d4f880e8ee676f3a63aef0459780454f7ce6ce90b30ee7ce05f587"
                        },
                        {
                          "id": 21360,
                          "name": "Feeder Antalya - Women Doubles",
                          "hash_image": "b2a18821e9a2c3a62d8829c3624586ab55a2a8b07316d131b5d272f3388b852a"
                        },
                        {
                          "id": 21366,
                          "name": "Feeder Antalya - Women Singles",
                          "hash_image": "2d3ebcd0e1f26c212e1461977a113a412bcf3932d5979e9b93393fe690467f52"
                        },
                        {
                          "id": 21389,
                          "name": "Feeder Dusseldorf - Doubles",
                          "hash_image": "51df36485ca2a6d8fe59bf5616f8ddcc6a1cedf45b902fd97ea0f52b4c0a3e00"
                        },
                        {
                          "id": 21413,
                          "name": "Feeder Dusseldorf - Mixed Doubles",
                          "hash_image": "339f96977fe05a049dec665c11ae1347a07c50155920728f91aec032c4278327"
                        },
                        {
                          "id": 21421,
                          "name": "Feeder Dusseldorf - Women Singles",
                          "hash_image": "fb9ba893cafb9eab170aaa6d3c04de32218886b783a39c5dea8a59bd1b048142"
                        },
                        {
                          "id": 21440,
                          "name": "ITTF South American Championships 2025 - MD",
                          "hash_image": "ba12e283a93d521e4302855fdb2df75a4d643f2ef241e438cbb9d6a618dc9dac"
                        },
                        {
                          "id": 21442,
                          "name": "ITTF South American Championships 2025 - MS",
                          "hash_image": "d456db7efbdf1a73743701c65e55654c29b1f55cf3ee7ca06a955e74aff48d37"
                        },
                        {
                          "id": 21443,
                          "name": "ITTF South American Championships 2025 - WD",
                          "hash_image": "3767ac547772b75ab0260d380b4122ca8afb742cfa357069ac766409d5db3d18"
                        },
                        {
                          "id": 21444,
                          "name": "ITTF South American Championships 2025 - WS",
                          "hash_image": "70ca9fe10f59cfb030cc5c16123a57568dc46de6cd2c398981c2e58322ce56d0"
                        },
                        {
                          "id": 21445,
                          "name": "ITTF World Championships Finals - MD",
                          "hash_image": "2293193ce54c4f37fd2f270031213b291cb84dc171392ef142ef7731b5d07c4d"
                        },
                        {
                          "id": 21454,
                          "name": "ITTF World Championships Finals - MS",
                          "hash_image": "1633481d78004e4768466c2b368a1eb5cfaf460afa7382fdc4ca8873f417d1be"
                        },
                        {
                          "id": 21463,
                          "name": "ITTF World Championships Finals - WD",
                          "hash_image": "ae9e07e83b73ed344b8c5e2068bbb6f83527f660099937af21adcd3762b9f779"
                        },
                        {
                          "id": 21478,
                          "name": "ITTF World Championships Finals - WS",
                          "hash_image": "2f82b326ba9541a0e034c11c3570ac18f79170274ffa735905ccef92beb0ab95"
                        },
                        {
                          "id": 21494,
                          "name": "United States Smash - MD",
                          "hash_image": "44abbbd527f1acca733c6f9dffd9c203edb208a7e20e18de4866a74a05772d74"
                        },
                        {
                          "id": 21497,
                          "name": "United States Smash - WD",
                          "hash_image": "5c6b7d99771384b58cddfc8e43d82ed12206274712bea1596b005f047f71e19c"
                        },
                        {
                          "id": 21504,
                          "name": "United States Smash - WS",
                          "hash_image": "adccd58299b97adf5d1942fee029b80354d05c4036cc2ac2916afa79bc4786f6"
                        },
                        {
                          "id": 21505,
                          "name": "United States Smash - XD",
                          "hash_image": "5ee6ed3eff265611479ec900ebf0e83c128668e006435a39eb7b0dc2f701f8fd"
                        },
                        {
                          "id": 21507,
                          "name": "WTT Champions Doha - MS",
                          "hash_image": "ec72b65ef7c053d99d9606a30d281aff176bdd8157e6a09a6ec7dfeefb24144c"
                        },
                        {
                          "id": 21520,
                          "name": "WTT Champions Doha - WS",
                          "hash_image": "3a6b8f58d4f58175f94e3e0cf179ed8577600819f7c476c8997d409a634279d9"
                        },
                        {
                          "id": 21530,
                          "name": "WTT Champions Incheon - MS",
                          "hash_image": "9d849c067b1174ec48914b2de2de38c9bc0664cf767cdd76935b0409cc1ebd6f"
                        },
                        {
                          "id": 21538,
                          "name": "WTT Champions Incheon - WS",
                          "hash_image": "45c8cd66ac982a7bdd9ed1e742ea3be37eb52b0116e917e7dfe6a48a29d0c05e"
                        },
                        {
                          "id": 21548,
                          "name": "WTT Champions Xinxiang - Singles",
                          "hash_image": "6984055377b7c7c55467e13a08d87d0352743152d18e8f40c2054741c1e69ec5"
                        },
                        {
                          "id": 21566,
                          "name": "WTT Champions Yokohama - MS",
                          "hash_image": "2a05da9788b18d19f1adc9af29e6c866c7d08d821f1d99c115368bcfab496d9a"
                        },
                        {
                          "id": 21567,
                          "name": "WTT Champions Yokohama - WS",
                          "hash_image": "e2876ab003a2e56547cf7d66fb877cb6aa352230ff5b6e3a7d55e63687abc301"
                        },
                        {
                          "id": 21575,
                          "name": "WTT Contender Amman - Doubles",
                          "hash_image": "8dd99f5c2626ed424fe461fa7c7e41f579e9b64e00e2f95ce0deb0c55c060648"
                        },
                        {
                          "id": 21580,
                          "name": "WTT Contender Amman - Singles",
                          "hash_image": "77231e509f09ba7b0ffa09a36852dff516fb5399e4c36079bf3cad8401bcf5b3"
                        },
                        {
                          "id": 21582,
                          "name": "WTT Contender Amman - Women Doubles",
                          "hash_image": "4c8aae8aef0d3b61d994ce99d6c03e1f5500947ab7d0f2092f4eb0f6eba5c7ca"
                        },
                        {
                          "id": 21584,
                          "name": "WTT Contender Antalya - MD",
                          "hash_image": "1c6ff187e6d7557b9c30b04b6f8ff4aeae1059771da20f2f6f988016273d0ee0"
                        },
                        {
                          "id": 21586,
                          "name": "WTT Contender Antalya - WD",
                          "hash_image": "334cbb4f21026ef2a03b6de93a3d0bc13d13efba8e6495a618bd5a7208f03712"
                        },
                        {
                          "id": 21587,
                          "name": "WTT Contender Antalya - XD",
                          "hash_image": "f9683cca6e23d8b47aff151949b79babb2016f63e9c5f99e6d8d678f13454f46"
                        },
                        {
                          "id": 21588,
                          "name": "WTT Contender Buenos Aires - MD",
                          "hash_image": "49f7dee5e11a61afb9cb9da6176995d1bca8c23f98502788489b854f1a888724"
                        },
                        {
                          "id": 21589,
                          "name": "WTT Contender Buenos Aires - MS",
                          "hash_image": "21b2954f78a0dde7902aa8059d0d6503b13d7ad893641a90d9c84776f3924f6c"
                        },
                        {
                          "id": 21590,
                          "name": "WTT Contender Buenos Aires - WD",
                          "hash_image": "0203c7e2ead0f10f70c106abee91fdbfa1828b6bee1a9032a53cba63dcce45e9"
                        },
                        {
                          "id": 21591,
                          "name": "WTT Contender Buenos Aires - WS",
                          "hash_image": "d39f50bc9f78209adeb676eee771273fe3106e8eadeb09d45b66e28dd0028a39"
                        },
                        {
                          "id": 21592,
                          "name": "WTT Contender Buenos Aires - XD",
                          "hash_image": "e5d5f442b46bf3b6a52c2ab867e6526a42b53544f289f2ed6e63470ed610d362"
                        },
                        {
                          "id": 21594,
                          "name": "WTT Contender Durban - Singles",
                          "hash_image": "8cd69839ef8d4403fd59f8c71d212707d674b6082dfbd863918de10d66c76b9a"
                        },
                        {
                          "id": 21595,
                          "name": "WTT Contender Durban - Women Doubles",
                          "hash_image": "d9fe157abbc3aae9e9c397025af8e8fefae79079c991b0168184693e1d6c21e8"
                        },
                        {
                          "id": 21596,
                          "name": "WTT Contender Lagos 2023 - MS - Qualifying",
                          "hash_image": "66eb651e7f50a4260b7c50d242c7110662790db5a8136c150f94e223cf9311e4"
                        },
                        {
                          "id": 21598,
                          "name": "WTT Contender Lagos 2023 - WS - Qualifying",
                          "hash_image": "b495b4bb5ef69a4f9aa9bda1e55bbff926e91352a41afc217e7f83b8c42269e0"
                        },
                        {
                          "id": 21601,
                          "name": "WTT Contender Lagos - MD",
                          "hash_image": "9f78f5850ed02a3d74b5c8b4bf2a42375d81aafd818a937c764558877fcd9f5b"
                        },
                        {
                          "id": 21606,
                          "name": "WTT Contender Lagos - WD",
                          "hash_image": "fe9ec56e2b572694d4e952fc3a0f652228ddc9044348260410528414c9a9b9a2"
                        },
                        {
                          "id": 21615,
                          "name": "WTT Contender Lagos - XD",
                          "hash_image": "88bf2ca5a52753389f2ef0e9f497adde1e9e79e8c0d1f21d014012dfe539512a"
                        },
                        {
                          "id": 21616,
                          "name": "WTT Contender Lima 2023 - MD - Qualifying",
                          "hash_image": "2acb6c27d9083af86a02bfac59a56411a9abbd6ba856d901784c1f035e6b28e5"
                        },
                        {
                          "id": 21620,
                          "name": "WTT Contender Lima 2023 - MS - Qualifying",
                          "hash_image": "a0dedd31d953298fb88f43c4719d400a41af4ceeb52ce127f31f8f9553f3a699"
                        },
                        {
                          "id": 21621,
                          "name": "WTT Contender Lima 2023 - WD - Qualifying",
                          "hash_image": "de37b252197a894919376c32cde81ed4d535e82ac265537c84ada4271c05ed33"
                        },
                        {
                          "id": 21628,
                          "name": "WTT Contender Lima 2023 - WS - Qualifying",
                          "hash_image": "9ecea62565bc0218aaa6b5d3ea10084bbca6862ba40bab1bd0f12dd9abb3df3a"
                        },
                        {
                          "id": 21630,
                          "name": "WTT Contender Lima 2023 - XD - Qualifying",
                          "hash_image": "85dbfec9a43591250ddf948588d7f2164de03da13e46d9f27f8a7cc6b51291a3"
                        },
                        {
                          "id": 21635,
                          "name": "WTT Contender Ljubljana - Mixed Doubles",
                          "hash_image": "096e39610b9c40ac904b8aa1893dfd138ae0619127661305a374cacf25208af9"
                        },
                        {
                          "id": 21638,
                          "name": "WTT Contender Mendoza",
                          "hash_image": "553fce2f21a9e67d37fc9e31f0094a11378242330521e15bc33bb3b33fb8f31e"
                        },
                        {
                          "id": 21640,
                          "name": "WTT Contender Mendoza - MD",
                          "hash_image": "c4911301a6d94420666380bb74984da17b7bac4c3b246e4c8eb903c5d3fce5d7"
                        },
                        {
                          "id": 21643,
                          "name": "WTT Contender Mendoza - WD",
                          "hash_image": "8d09988122d8ba2b970deae924d87d47f2b1161d4f66bfa6b51a22da495b7055"
                        },
                        {
                          "id": 21645,
                          "name": "WTT Contender Mendoza - Women",
                          "hash_image": "c43cb7e48c5a1de4fd6d0d94014b24718647edcc06e1810ebdc9c335012d24c1"
                        },
                        {
                          "id": 21646,
                          "name": "WTT Contender Mendoza - XD",
                          "hash_image": "1942487c8e0d8be2d8c1082dfca353d9ef21449273dbd8bc57757afc6b8ebc1e"
                        },
                        {
                          "id": 21647,
                          "name": "WTT Contender Rio de Janeiro 2023 - MS - Qualifying",
                          "hash_image": "9ba2ec6e5c5e826cd691d850c7c2c73743998355e17b5ca8923013790567c43e"
                        },
                        {
                          "id": 21650,
                          "name": "WTT Contender Rio de Janeiro 2023 - WS - Qualifying",
                          "hash_image": "261bffa245443c80a39e91242c8cf5b472efd4cd1323ea4409e5e7e7b1e9cb1b"
                        },
                        {
                          "id": 21651,
                          "name": "WTT Contender Rio de Janeiro - Doubles",
                          "hash_image": "428533c7ce366d503a316ff04c2d7921fb98b42b4e36148aff99119b8cbd7275"
                        },
                        {
                          "id": 21656,
                          "name": "WTT Contender Rio de Janeiro - Mixed Doubles",
                          "hash_image": "d7c6c0828326503f519c76970d6e9faae9484fb66c33367660aaca9c7fee4136"
                        },
                        {
                          "id": 21657,
                          "name": "WTT Contender Rio de Janeiro - Women Doubles",
                          "hash_image": "b90577fbd64cf1329d8cd06921ce3941c09b314d2b600a2a17e4f918c6849f0e"
                        },
                        {
                          "id": 21658,
                          "name": "WTT Feeder Beirut II - MD",
                          "hash_image": "36c2db2e4f88e74328526138943723ded276ff1da58ae54aec248c50d293c666"
                        },
                        {
                          "id": 21662,
                          "name": "WTT Feeder Beirut II - WD",
                          "hash_image": "63c9d14eb4116ec99d8711b10db3d67a7e3b5d9bf9e6c73c2b601555e897fe90"
                        },
                        {
                          "id": 21664,
                          "name": "WTT Feeder Beirut - WD",
                          "hash_image": "c02115713ce398b3e6b7d1341859238cc65f29597455caded733574f037f9086"
                        },
                        {
                          "id": 21665,
                          "name": "WTT Feeder Beirut - WS",
                          "hash_image": "0799fad4fb7e7e2fd0545d67584e822ed6a081f3d3631432ace2e1bd1ce8d3d6"
                        },
                        {
                          "id": 21669,
                          "name": "WTT Feeder Beirut - XD",
                          "hash_image": "6c3925fc04b46e80a32e5073410f32c6e6145aae666c7ca02858fd6361240bc9"
                        },
                        {
                          "id": 21673,
                          "name": "WTT Feeder Biella - MD",
                          "hash_image": "f0050dca6f40951c494b54ac70b9c52649805f3a863000b897a3218e7582cb7c"
                        },
                        {
                          "id": 21674,
                          "name": "WTT Feeder Biella - MS",
                          "hash_image": "c4b5eda0be0b0b72b4bf82dac42533acdea9c8f026fc93892ba681b1ce44116a"
                        },
                        {
                          "id": 21675,
                          "name": "WTT Feeder Biella - WD",
                          "hash_image": "c155869932c898128d4433b9177a245c95df382ed928a4e9914ff70d93a71097"
                        },
                        {
                          "id": 21676,
                          "name": "WTT Feeder Biella - WS",
                          "hash_image": "9e198c7d4813b068a90a44735d498c926d5bc83e162a64f466829d0f386e2ca8"
                        },
                        {
                          "id": 21678,
                          "name": "WTT Feeder Biella - XD",
                          "hash_image": "d43816d05714f5246be37fa51bdd7c66f1c925609113e8e28b118882be2e7beb"
                        },
                        {
                          "id": 21679,
                          "name": "WTT Feeder Cagliari - MD",
                          "hash_image": "5659a76783ea82cb2393228d2e580ed3730dd52a4e080a6910a11f36f9682e95"
                        },
                        {
                          "id": 21680,
                          "name": "WTT Feeder Cagliari - MS",
                          "hash_image": "6804c9f577cadcf29399be6e6f473ca6230776bcffbb607a9d0018d30bad0ff6"
                        },
                        {
                          "id": 21682,
                          "name": "WTT Feeder Cagliari - WS",
                          "hash_image": "9d472683496c8be3245aebd4683cd04d4923faed75cada0c775bdbc47071c5c9"
                        },
                        {
                          "id": 21683,
                          "name": "WTT Feeder Cagliari - XD",
                          "hash_image": "efe4de61fa64479dcd62a5c1c4c452d50003b624233ecb09c185d9cb0d416c47"
                        },
                        {
                          "id": 21686,
                          "name": "WTT Feeder Cappadocia 2024 - MS - Qualifying",
                          "hash_image": "bdd745ec00d046dffd09e20f8ed4b845dfde79faf2b919b5d1f7f89a1a616f66"
                        },
                        {
                          "id": 21688,
                          "name": "WTT Feeder Cappadocia - MD",
                          "hash_image": "aa86fe8f1137bd52c9240943ce60a1fa396d08548ab3b0937e8f322df40fd502"
                        },
                        {
                          "id": 21694,
                          "name": "WTT Feeder Cappadocia - WS",
                          "hash_image": "123b5b5bb26bcd171f0ce085888ac7daf0c807728354ddc65ba1e7a087544742"
                        },
                        {
                          "id": 21696,
                          "name": "WTT Feeder Caracas - MS",
                          "hash_image": "5b7a40b94a64c76c7ed2bed8a9752476f3896068a5bcbf07c751a6a95566141f"
                        },
                        {
                          "id": 21706,
                          "name": "WTT Feeder Caracas - WD",
                          "hash_image": "a4e7914399623b6b1ab475e0aa6639c72f8f49b26f04454a680f117237dc7f9b"
                        },
                        {
                          "id": 21712,
                          "name": "WTT Feeder Caracas - WS",
                          "hash_image": "a24c2077c0032f5e932a31731ca6f223c026d6faf01df13577085a4eb943fc0a"
                        },
                        {
                          "id": 21713,
                          "name": "WTT Feeder Corpus Christi - MD",
                          "hash_image": "ed49544608a9dd6e457349e77fc85eeda47155de496556d5621b340549acd7fa"
                        },
                        {
                          "id": 21716,
                          "name": "WTT Feeder Corpus Christi - MS",
                          "hash_image": "1a2dc7dabb53ef0b55c18c277ed7eb3fdd30eff80dc1db927ae443e97e29bc6e"
                        },
                        {
                          "id": 21718,
                          "name": "WTT Feeder Corpus Christi - WD",
                          "hash_image": "475c043609583040b8a7a78320d2e0d88a5e1e6ff673dd472d3d5b70a35f1115"
                        },
                        {
                          "id": 21719,
                          "name": "WTT Feeder Corpus Christi - WS",
                          "hash_image": "809ec10c601c9bb07c4e7eaf749015ad0dd6ce737be8d450b2e7c65cf4bf531d"
                        },
                        {
                          "id": 21721,
                          "name": "WTT Feeder Corpus Christi - XD",
                          "hash_image": "07ca267a72b20eea42564863ead06d991734560932b15845518cbf7c5206bcb5"
                        },
                        {
                          "id": 21722,
                          "name": "WTT Feeder Doha II - MS",
                          "hash_image": "46cbbb4f6748eb1fa6baaf02faf2e98e021a7a6b4124aeb55c5d912b5b39edd2"
                        },
                        {
                          "id": 21723,
                          "name": "WTT Feeder Doha II - WD",
                          "hash_image": "d08f9b98d9b6702176e2d4e8470aa33ce5932b434abbca53811ec2d07326723b"
                        },
                        {
                          "id": 21724,
                          "name": "WTT Feeder Doha II - WS",
                          "hash_image": "aeb10a35e805f3143128083e110ebacddbeaf20763c5ab7d6b69da9b922f7773"
                        },
                        {
                          "id": 21725,
                          "name": "WTT Feeder Doha II - XD",
                          "hash_image": "c1a5633d5a799be03dd78055ebd855add4b0e407fec51ae7c372bf099151eecc"
                        },
                        {
                          "id": 21726,
                          "name": "WTT Feeder Halmstad - MD",
                          "hash_image": "de778a1d94993eda387607271d6630ef45d2beb778107580f325c1f8c70d5664"
                        },
                        {
                          "id": 21727,
                          "name": "WTT Feeder Halmstad - MS",
                          "hash_image": "a340556c800284f620618062df3d837ac9c056abddf2cbaed6ac061463f6dee2"
                        },
                        {
                          "id": 21729,
                          "name": "WTT Feeder Halmstad - WS",
                          "hash_image": "625935f17b492796f95fe76c2acbe30002028fa7def136f7b330d1e30aa56f0a"
                        },
                        {
                          "id": 21731,
                          "name": "WTT Feeder Halmstad - XD",
                          "hash_image": "ed85fdf49508bdd54f19ac4ef7c2779b879d2a2a792de0d2139b92ccf7e4ec8e"
                        },
                        {
                          "id": 21732,
                          "name": "WTT Feeder Muscat - MD",
                          "hash_image": "4ed63f82f83a0769a4886edaa3c17f6d10a66dc0ec067eacf8a4c36607bc4ae8"
                        },
                        {
                          "id": 21734,
                          "name": "WTT Feeder Muscat - MS",
                          "hash_image": "244239f7d8f57e6c20066626fbd0080b873b05749fc4e58645a9ec59277c925d"
                        },
                        {
                          "id": 21735,
                          "name": "WTT Feeder Muscat - WD",
                          "hash_image": "c9fecd750d044c81b5ff6b7614793f89087ce275518c9e7d2556891b81270fbb"
                        },
                        {
                          "id": 21736,
                          "name": "WTT Feeder Muscat - WS",
                          "hash_image": "7bea45fe8d8627882478c1a548f4333f064b888e911dd9705d5ca070e64465ad"
                        },
                        {
                          "id": 21738,
                          "name": "WTT Feeder Muscat - XD",
                          "hash_image": "5cdf6d6489742603b765c35a23cd2aeca841a3e758e32596308798bc150a10b6"
                        },
                        {
                          "id": 21739,
                          "name": "WTT Feeder Otocec II - MD",
                          "hash_image": "90282dc233d96f203229f2cd4288b8476fcab17622dfd25e68968172203ce0d3"
                        },
                        {
                          "id": 21740,
                          "name": "WTT Feeder Otocec II - MS",
                          "hash_image": "d2a1456897470d3040251d4df874fcd45d13046360ad2a1c63909b1e41072c82"
                        },
                        {
                          "id": 21742,
                          "name": "WTT Feeder Otocec II - WD",
                          "hash_image": "1a0c524cd16be14d2a7ecbe8f9fa5a8c9f04e3eb1818cb9df0e26622d5138fea"
                        },
                        {
                          "id": 21743,
                          "name": "WTT Feeder Otocec II - WS",
                          "hash_image": "6e36d9eaa738d48308337881cc86ec93ed5b269b5de8ec8dd427a8c1a2ec9d69"
                        },
                        {
                          "id": 21745,
                          "name": "WTT Feeder Otocec II - XD",
                          "hash_image": "c140fa76fe2058f14e3ff5e45c422d2c005c8583a91f1b8c4a635959c72358f3"
                        },
                        {
                          "id": 21746,
                          "name": "WTT Feeder Otocec - WD",
                          "hash_image": "6b44b34f0c0a1e87a5545de1b01382bac59f86bd21aa37f787c37a9921115fe2"
                        },
                        {
                          "id": 21748,
                          "name": "WTT Feeder Prishtina - MD",
                          "hash_image": "e59b712184f1156b969172ac8af3457702580c03c3bc96060bfc5d9b09ed41dc"
                        },
                        {
                          "id": 21749,
                          "name": "WTT Feeder Prishtina - MS",
                          "hash_image": "f59eb44e40235257e1541502106bfe90c9264cad11e393e054246a4cca358b00"
                        },
                        {
                          "id": 21750,
                          "name": "WTT Feeder Prishtina - WD",
                          "hash_image": "a763f970985fbf0726030aa0e39254cb078017fa2e91433b0086d577f5aec160"
                        },
                        {
                          "id": 21753,
                          "name": "WTT Feeder Prishtina - WS",
                          "hash_image": "4b7a662bbd1bf988fef3ddb87e2f4d9db531143444e252218376d77ab5110810"
                        },
                        {
                          "id": 21754,
                          "name": "WTT Feeder Prishtina - XD",
                          "hash_image": "d9398ce5078da8bf69fcd12a50baa99f49a64788ba62873331793a3614dcf51a"
                        },
                        {
                          "id": 21756,
                          "name": "WTT Feeder Senec - MD",
                          "hash_image": "43c739f3b07a01b5a65555728c016c4c32be43aa92c457e763d0ae9135b28b81"
                        },
                        {
                          "id": 21757,
                          "name": "WTT Feeder Spokane - MD",
                          "hash_image": "cf9bf3488a0e56d895774f352aba0e4c735332eaff8f78d5f98824e2ed0c93bb"
                        },
                        {
                          "id": 21758,
                          "name": "WTT Feeder Spokane - MS",
                          "hash_image": "1ad9dfc483046c78d7b02f13b2143778de7db8dc30af4ec74fb1398ff673a9cd"
                        },
                        {
                          "id": 21760,
                          "name": "WTT Feeder Spokane - WD",
                          "hash_image": "8dc937492497701f44d112f1e3d42cdf3f65133bf92804cd9398d299d22df3ae"
                        },
                        {
                          "id": 21761,
                          "name": "WTT Feeder Spokane - WS",
                          "hash_image": "645fe188ed7f8314bc146141b208ea6f82e05c5a667c13a86708a6d61462961b"
                        },
                        {
                          "id": 21762,
                          "name": "WTT Feeder Stockholm - Doubles",
                          "hash_image": "36f5399a61568f0b369f588e883b073ab897d647f068b77ca96e916412b8e9e2"
                        },
                        {
                          "id": 21763,
                          "name": "WTT Feeder Stockholm - Mixed Doubles",
                          "hash_image": "2ac4f34dc1e09ff450d3a9b6044661f1e0ccf837f3e220bf2d4da68a32692b43"
                        },
                        {
                          "id": 21765,
                          "name": "WTT Feeder Stockholm - Singles",
                          "hash_image": "06e1594d5e3d387cd6dd9a13e79849b14d9ef9285053843a3124062ea1812d45"
                        },
                        {
                          "id": 21768,
                          "name": "WTT Feeder Stockholm - Women Singles",
                          "hash_image": "274afff3766e6292aca5c46457f9e5d3eadff3fb85fbcb3ad7445db5cb07729e"
                        },
                        {
                          "id": 21769,
                          "name": "WTT Feeder Vadodara - MD",
                          "hash_image": "c2cf46394150b19be042a73ac1dda9324d2df77ce714cfb59263bf038640d8ec"
                        },
                        {
                          "id": 21772,
                          "name": "WTT Feeder Vadodara - MS",
                          "hash_image": "ce8412cb34f573e6b4fea2797ffd0f63ca4bd00cc7dd3fd4f99c879b5565963e"
                        },
                        {
                          "id": 21773,
                          "name": "WTT Feeder Vadodara - WD",
                          "hash_image": "4cbc4dd40ea765cddfb157f5debeb3ecdac6977ac14fe7b31323c48610250f9d"
                        },
                        {
                          "id": 21777,
                          "name": "WTT Feeder Vadodara - WS",
                          "hash_image": "31abe8cd810811d8c7256726ac95a92da9aec012fd49a292bfbd497dc75b1c6e"
                        },
                        {
                          "id": 21778,
                          "name": "WTT Feeder Vadodara - XD",
                          "hash_image": "25a9c9205087bcedade4f8432031ec98767cca57c15e155ec3b843037623f1ee"
                        },
                        {
                          "id": 21779,
                          "name": "WTT Finals Hong Kong - MS",
                          "hash_image": "139cbc0f23bbf8845be958cdf7c1dc25610876b3b610817c52afd8c5802a9ead"
                        },
                        {
                          "id": 21780,
                          "name": "WTT Finals Hong Kong - WS",
                          "hash_image": "78413d840e5c192db5028c7d7311260c3e1bec8730faedc295a92b4347df27af"
                        },
                        {
                          "id": 21781,
                          "name": "WTT Finals Hong Kong - XD",
                          "hash_image": "dcc1db2d8af3c019bb83a7e8ae51390726979562e68bf4ed6330c84ed71e2240"
                        },
                        {
                          "id": 21782,
                          "name": "WTT Saudi Smash - MD",
                          "hash_image": "7e9a23cdc627cb51b3db038b93779a6d8cfa8841a2ebcd491436f51ed5b1ab04"
                        },
                        {
                          "id": 21783,
                          "name": "WTT Saudi Smash - XD",
                          "hash_image": "50108b1f43111dac23d8630f0f73ddd99589dc99a108a7f732cae3d88e178130"
                        },
                        {
                          "id": 21784,
                          "name": "WTT Star Contender Bangkok - Doubles",
                          "hash_image": "94bfe4d2370e8366fbf5a214297a15270bc77b73c20053242d4b2a75f9e1fda8"
                        },
                        {
                          "id": 21788,
                          "name": "WTT Star Contender Bangkok - Mixed Doubles",
                          "hash_image": "815310b41741c1ef2b04a07fc21c28b44028f7f0e3dace076717b0afbf310d21"
                        },
                        {
                          "id": 21789,
                          "name": "WTT Star Contender Bangkok - Singles",
                          "hash_image": "b7ff2f16f82c5cfefb01a35d81fb84f5e16ff8e9b62b812c8fdcde11a82de72e"
                        },
                        {
                          "id": 21792,
                          "name": "WTT Star Contender Bangkok - Women Doubles",
                          "hash_image": "92e627349e73c6788ac0e230a61ac308de899c2f4d36a28214596cc003192ec5"
                        },
                        {
                          "id": 21794,
                          "name": "WTT Star Contender Bangkok - Women Singles",
                          "hash_image": "b2323f21a4c774e1af7c79d1a9e139240fc467dbacdfc96c3b95cc6f1a253d5f"
                        },
                        {
                          "id": 21795,
                          "name": "WTT Star Contender Foz do Iguacu 2025 - MD - Qual.",
                          "hash_image": "42d423cea6397896e08eb62e933e6102d0ab382a83739ef61c1ef4725d3a0779"
                        },
                        {
                          "id": 21797,
                          "name": "WTT Star Contender Foz do Iguacu 2025 - WD - Qual.",
                          "hash_image": "ebb20b3a61c8c5e8831b523311d4c28635031219c3ff22a05b2b5cc2c323ad59"
                        },
                        {
                          "id": 21799,
                          "name": "WTT Star Contender Foz do Iguacu 2025 - XD - Qual.",
                          "hash_image": "d6c8cfb862529dab5f19db48a1ec281a4b16316f123b5c2df5f6ef12f6d6c6b4"
                        },
                        {
                          "id": 21800,
                          "name": "WTT Star Contender Goa - Mixed Doubles",
                          "hash_image": "c3dad367fd797bdbb1a04dfd0548d710943335abcf3e121630b315fd3829e73a"
                        },
                        {
                          "id": 21802,
                          "name": "WTT Star Contender Goa - Singles",
                          "hash_image": "a5a2cb455c102d723eb32dcb54a544a8e061b888c09a3d19c7ef33ce49bc9028"
                        },
                        {
                          "id": 21807,
                          "name": "WTT Star Contender Goa - Women - Doubles",
                          "hash_image": "ce1888642180f022eadfebe6c940c032f1f0c82b984f37c0424f6bbe7cfdd5eb"
                        },
                        {
                          "id": 21809,
                          "name": "WTT Star Contender Goa - Women - Singles",
                          "hash_image": "a5b5f0cbe2e7a733f5998823ec5d4332e97749a8a8a9af669eb393cfca902704"
                        },
                        {
                          "id": 21812,
                          "name": "WTT Star Contender Lanzhou - MD",
                          "hash_image": "71e0d9a69695c4a63a6762e6ffdacbe2e72a80bd1bfcf9124ab6c274e7af4e34"
                        },
                        {
                          "id": 21813,
                          "name": "WTT Star Contender Lanzhou - MS",
                          "hash_image": "b90496d9a31ba855d5e427a8527e23b6d52d5531f94905b0309f307d07bde9e3"
                        },
                        {
                          "id": 21814,
                          "name": "WTT Star Contender Lanzhou - WD",
                          "hash_image": "a7c76318caa2b05aa4dff8607630eacf78fdd651da90a343478dc371c05d1c12"
                        },
                        {
                          "id": 21815,
                          "name": "WTT Star Contender Lanzhou - WS",
                          "hash_image": "e68811b4a3dc553b8aae5bac625ce368e6998a8a9b9edf12809d9aa279d88ed2"
                        },
                        {
                          "id": 21816,
                          "name": "WTT Star Contender Lanzhou - XD",
                          "hash_image": "b2752eb11884028a20e34088a8c1b06605a8781c136926f32dadea4266c9389d"
                        },
                        {
                          "id": 21817,
                          "name": "World Team Championships Finals 2024 - MS",
                          "hash_image": "4c2b44d0deb1df67f0854a82b7c43642199b00fbf55b5f52c24cd1b72ae191e4"
                        },
                        {
                          "id": 21818,
                          "name": "World Team Championships Finals 2024 - WS",
                          "hash_image": "5ca06def79dee234f589ab721667c943a6e9a8cc87e29f6e3558e0130c746c2a"
                        },
                        {
                          "id": 22001,
                          "name": "Korea Open (WTP) - Mixed Doubles",
                          "hash_image": "c13f1e5ad586f3d27d1745f5a1ec024b513f5dad68d75599ddbc055332ca2f08"
                        },
                        {
                          "id": 22005,
                          "name": "India Open - Women Doubles",
                          "hash_image": "17e4184b41bc49aba2521ba519ae3e8089f36708c2e9ff8122bd6c4215cf0322"
                        },
                        {
                          "id": 22006,
                          "name": "India Open - Doubles",
                          "hash_image": "b3f8f950d45001befa034bfa9c46ed3203924aa431ed0ce20c15fabd0cc7b23c"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Leagues By Class"
      }
    },
    "/news-matches": {
      "get": {
        "tags": [
          "News"
        ],
        "summary": "News Matches",
        "description": "This endpoint allows you to retrieve the news from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 2 hours.<br />**Recommended Calls**: Limit calls to 1 every 2 hours.\n\n### Use Cases\nGet news from a specific **match_id**<br />`https://table-tennis.sportmicro.com/news-matches?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.news-matches.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/news-matches"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 935453,
                      "match_id": 935453,
                      "league_id": 2053,
                      "league_name": "Olympic Games, Singles",
                      "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                      "date": "2024-07-27T13:00:00+00:00",
                      "title": "Olympic Games 2024 Table Tennis Round 1: Desai H. vs ABO Yaman Z.",
                      "name": "Olympic Games 2024 Table Tennis Round 1: Desai H. vs ABO Yaman Z.",
                      "subtitles": [
                        {
                          "text": "As the Olympic Games 2024 kick off, all eyes are on the table tennis arena. The first round of the Singles category is set to be a thrilling encounter between Desai H. and ABO Yaman Z. The match, scheduled for Sat Jul 27 2024 13:00:00 GMT+0000 (Coordinated Universal Time), is expected to draw a global audience, eager to witness the high-octane action of this International class event.",
                          "subtitle": "Anticipation Builds for the Opening Round"
                        },
                        {
                          "text": "Desai H. and ABO Yaman Z. are no strangers to the international table tennis scene. Both have demonstrated exceptional skill and determination in their previous matches. As they gear up for the first round of the Olympic Games 2024, it's clear that neither team will be holding anything back. The match will be a test of their skill, strategy, and mental toughness. Fans around the world are eagerly waiting to see who will emerge victorious in this clash of the titans.",
                          "subtitle": "A Closer Look at the Competing Teams"
                        },
                        {
                          "text": "The first round of the Singles category at the Olympic Games 2024 is expected to be a thrilling affair. With Desai H. and ABO Yaman Z. facing off, fans can expect a match filled with powerful serves, quick reflexes, and strategic gameplay. The match, set to begin at Sat Jul 27 2024 13:00:00 GMT+0000 (Coordinated Universal Time), will be a true testament to the skill and determination of these world-class athletes. As the countdown to the match begins, the excitement and anticipation continue to build.",
                          "subtitle": "What to Expect from the Match"
                        },
                        {
                          "text": "The Olympic Games, known for showcasing the best talent in the world, is once again set to host a classic table tennis encounter. The Singles category, always a crowd favorite, promises to deliver high-quality action. The first round will see Desai H. and ABO Yaman Z. battling it out on the table. Both teams have been preparing rigorously for this moment, and it's expected to be a match filled with intense rallies and strategic gameplay.",
                          "subtitle": "The Stage is Set for a Classic Encounter"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "News Matches"
      }
    },
    "/teams-by-league": {
      "get": {
        "tags": [
          "Teams"
        ],
        "summary": "Teams By League",
        "description": "This endpoint allows you to retrieve the teams from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet teams from a specific **league_id**<br />`https://table-tennis.sportmicro.com/teams-by-league?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.teams-by-league.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/teams-by-league"
                  },
                  "type": "array",
                  "example": [
                    {
                      "league_id": 1755,
                      "league_name": "World Cup",
                      "teams": [
                        {
                          "id": 8430,
                          "name": "Shunsuke Togami",
                          "hash_image": "53387dbdf777b2be6318586e1df566c119096f5017f34b85c63c3d510b1eafbd"
                        },
                        {
                          "id": 8440,
                          "name": "Duda Benedikt",
                          "hash_image": "0722e6cf17af8caeea6c4248766a4646890267a6ec31b40b27b8aadcb211f393"
                        },
                        {
                          "id": 8483,
                          "name": "Wong C.",
                          "hash_image": "371250ea64fdc8e9bcd0db48acd0261df070d1dd346a3854d58ae0d71a4022eb"
                        },
                        {
                          "id": 8487,
                          "name": "Gaoyuan Lin",
                          "hash_image": "51348df25b8a7351eeb0fc2151e260a4fc033efc24f9982aed47dfe805ebefab"
                        },
                        {
                          "id": 8490,
                          "name": "Ovidiu Ionescu",
                          "hash_image": "93af974c7aef397090b176f9b3b63810149dddba2776ffbc3cdb8b08983793fd"
                        },
                        {
                          "id": 8493,
                          "name": "Harimoto T.",
                          "hash_image": "28a13ccf51f4ace98b6f681954083e73404777ea36f895ea6f3519df5678e996"
                        },
                        {
                          "id": 8495,
                          "name": "Youzheng Huang",
                          "hash_image": "977e101bbc7821465883518d17d6754651578a6ae15bfacfb8900568efe58340"
                        },
                        {
                          "id": 8500,
                          "name": "El-Beiali M.",
                          "hash_image": "a1b13b3c3e3d75ed2e9a856192bc768fef61c942e48de3edb811d653ee1922bb"
                        },
                        {
                          "id": 8505,
                          "name": "Uda Y.",
                          "hash_image": "0ee67c8b40f632216862d197ccbec7e48c27e8dd2c5a7cdc20e860f3ad48d4e8"
                        },
                        {
                          "id": 118260,
                          "name": "Jha K.",
                          "hash_image": "ebc82d417addd3a4201d66b737c3b2c028ef6a474cb0af6919c8aa26188f0e29"
                        },
                        {
                          "id": 118372,
                          "name": "Omar Assar",
                          "hash_image": "f8bee2c063ba8107928bcdf117ea42147c67c740680a9fd5b101591b28bcd0fc"
                        },
                        {
                          "id": 118624,
                          "name": "Chien-An Chen",
                          "hash_image": "822ee2fce01c57d31d86b00211bd9902608035121cbc2cef75c0956930195dea"
                        },
                        {
                          "id": 118712,
                          "name": "Sangeun Jeong",
                          "hash_image": "71d1dcb1eea4d2c72264a036dccff0ff960558db515d1fd0496fc85d6fc9b9c8"
                        },
                        {
                          "id": 118813,
                          "name": "Alexander Shibaev",
                          "hash_image": "045e7dd3bb5a11952acabef16eb8bd7977e592e7b15205253c2bbcf363413bbf"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams By League"
      }
    },
    "/countries": {
      "get": {
        "tags": [
          "Countries"
        ],
        "summary": "Countries",
        "description": "This endpoint allows you to retrieve the countries.\nYou can use the `alpha` field to get the country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times per day.<br />**Recommended Calls**: Limit calls to 1 per week.\n\nYou can get the image of the country by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet countries<br />`https://table-tennis.sportmicro.com/countries`<br /><br />Get country based on the **id**<br />`https://table-tennis.sportmicro.com/countries?id=eq.{id}`<br /><br />Get countries based on the **alpha**<br />`https://table-tennis.sportmicro.com/countries?alpha=eq.{alpha}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.countries.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.countries.alpha"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/countries"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "name": "Central African Republic",
                      "alpha": "CF",
                      "hash_image": "5c62e0b4977585c1b8aecfb35a731f2f6669e3c814cd6feab19ee492d56499f1"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Countries"
      }
    },
    "/tv-channels": {
      "get": {
        "tags": [
          "Tv channels"
        ],
        "summary": "Tv Channels",
        "description": "This endpoint allows you to retrieve the tv channels.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a week.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tv channels<br />`https://table-tennis.sportmicro.com/tv-channels`<br /><br />Get tv channels based on the **name**<br />`https://table-tennis.sportmicro.com/tv-channels?name=like.*Sportklub*`<br /><br />Get tv channels based on the **id**<br />`https://table-tennis.sportmicro.com/tv-channels?id=eq.{id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.tv-channels.id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/tv-channels"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "name": "5Sport"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Tv Channels"
      }
    },
    "/matches-statistics": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches Statistics",
        "description": "This endpoint allows you to retrieve the statistics from matches.\n\nTypes of the statistics:\n**Red cards**, **Comeback to win**, **Receiver points won**, **Number of lets**, **Points won**, **Timeouts**, **Yellow cards**, **Max points in a row**, **Biggest lead**, **Service errors**, **Service points won**.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.\n**Recommended Calls**: Limit calls to 1 every minute.\n\n### Use Cases\nGet statistics from a specific **match_id**<br />`https://table-tennis.sportmicro.com/matches-statistics?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-statistics.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-statistics"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 1,
                      "statistics": [
                        {
                          "type": "Biggest lead",
                          "period": "1ST",
                          "category": "Points",
                          "away_team": "8",
                          "home_team": "0"
                        },
                        {
                          "type": "Biggest lead",
                          "period": "2ND",
                          "category": "Points",
                          "away_team": "0",
                          "home_team": "6"
                        },
                        {
                          "type": "Biggest lead",
                          "period": "3RD",
                          "category": "Points",
                          "away_team": "3",
                          "home_team": "2"
                        },
                        {
                          "type": "Biggest lead",
                          "period": "4TH",
                          "category": "Points",
                          "away_team": "2",
                          "home_team": "2"
                        },
                        {
                          "type": "Biggest lead",
                          "period": "ALL",
                          "category": "Points",
                          "away_team": "8",
                          "home_team": "6"
                        },
                        {
                          "type": "Comeback to win",
                          "period": "1ST",
                          "category": "Points",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Comeback to win",
                          "period": "2ND",
                          "category": "Points",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Comeback to win",
                          "period": "3RD",
                          "category": "Points",
                          "away_team": "2",
                          "home_team": "0"
                        },
                        {
                          "type": "Comeback to win",
                          "period": "4TH",
                          "category": "Points",
                          "away_team": "2",
                          "home_team": "0"
                        },
                        {
                          "type": "Comeback to win",
                          "period": "ALL",
                          "category": "Points",
                          "away_team": "2",
                          "home_team": "0"
                        },
                        {
                          "type": "Max points in a row",
                          "period": "1ST",
                          "category": "Points",
                          "away_team": "6",
                          "home_team": "3"
                        },
                        {
                          "type": "Max points in a row",
                          "period": "2ND",
                          "category": "Points",
                          "away_team": "2",
                          "home_team": "4"
                        },
                        {
                          "type": "Max points in a row",
                          "period": "3RD",
                          "category": "Points",
                          "away_team": "3",
                          "home_team": "2"
                        },
                        {
                          "type": "Max points in a row",
                          "period": "4TH",
                          "category": "Points",
                          "away_team": "3",
                          "home_team": "4"
                        },
                        {
                          "type": "Max points in a row",
                          "period": "ALL",
                          "category": "Points",
                          "away_team": "6",
                          "home_team": "4"
                        },
                        {
                          "type": "Number of lets",
                          "period": "1ST",
                          "category": "Other",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Number of lets",
                          "period": "2ND",
                          "category": "Other",
                          "away_team": "1",
                          "home_team": "0"
                        },
                        {
                          "type": "Number of lets",
                          "period": "ALL",
                          "category": "Other",
                          "away_team": "1",
                          "home_team": "0"
                        },
                        {
                          "type": "Points won",
                          "period": "1ST",
                          "category": "Points",
                          "away_team": "11",
                          "home_team": "5"
                        },
                        {
                          "type": "Points won",
                          "period": "2ND",
                          "category": "Points",
                          "away_team": "6",
                          "home_team": "11"
                        },
                        {
                          "type": "Points won",
                          "period": "3RD",
                          "category": "Points",
                          "away_team": "11",
                          "home_team": "8"
                        },
                        {
                          "type": "Points won",
                          "period": "4TH",
                          "category": "Points",
                          "away_team": "14",
                          "home_team": "12"
                        },
                        {
                          "type": "Points won",
                          "period": "ALL",
                          "category": "Points",
                          "away_team": "42",
                          "home_team": "36"
                        },
                        {
                          "type": "Receiver points won",
                          "period": "1ST",
                          "category": "Points",
                          "away_team": "4/8 (50%)",
                          "home_team": "1/8 (13%)"
                        },
                        {
                          "type": "Receiver points won",
                          "period": "2ND",
                          "category": "Points",
                          "away_team": "3/8 (38%)",
                          "home_team": "6/9 (67%)"
                        },
                        {
                          "type": "Receiver points won",
                          "period": "3RD",
                          "category": "Points",
                          "away_team": "5/10 (50%)",
                          "home_team": "3/9 (33%)"
                        },
                        {
                          "type": "Receiver points won",
                          "period": "4TH",
                          "category": "Points",
                          "away_team": "6/13 (46%)",
                          "home_team": "5/13 (38%)"
                        },
                        {
                          "type": "Receiver points won",
                          "period": "ALL",
                          "category": "Points",
                          "away_team": "18/39 (46%)",
                          "home_team": "15/39 (38%)"
                        },
                        {
                          "type": "Service errors",
                          "period": "1ST",
                          "category": "Points",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Service errors",
                          "period": "2ND",
                          "category": "Points",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Service errors",
                          "period": "3RD",
                          "category": "Points",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Service errors",
                          "period": "4TH",
                          "category": "Points",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Service errors",
                          "period": "ALL",
                          "category": "Points",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Service points won",
                          "period": "1ST",
                          "category": "Points",
                          "away_team": "7/8 (88%)",
                          "home_team": "4/8 (50%)"
                        },
                        {
                          "type": "Service points won",
                          "period": "2ND",
                          "category": "Points",
                          "away_team": "3/9 (33%)",
                          "home_team": "5/8 (63%)"
                        },
                        {
                          "type": "Service points won",
                          "period": "3RD",
                          "category": "Points",
                          "away_team": "6/9 (67%)",
                          "home_team": "5/10 (50%)"
                        },
                        {
                          "type": "Service points won",
                          "period": "4TH",
                          "category": "Points",
                          "away_team": "8/13 (62%)",
                          "home_team": "7/13 (54%)"
                        },
                        {
                          "type": "Service points won",
                          "period": "ALL",
                          "category": "Points",
                          "away_team": "24/39 (62%)",
                          "home_team": "21/39 (54%)"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Statistics"
      }
    },
    "/teams-by-season": {
      "get": {
        "tags": [
          "Teams"
        ],
        "summary": "Teams By Season",
        "description": "This endpoint allows you to retrieve the teams from a specific season.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet teams from a specific **season_id**<br />`https://table-tennis.sportmicro.com/teams-by-season?season_id=eq.{season_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.teams-by-season.season_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/teams-by-season"
                  },
                  "type": "array",
                  "example": [
                    {
                      "season_id": 4193,
                      "season_name": "ITTF World Cup 2026",
                      "teams": [
                        {
                          "team_id": 8430,
                          "team_name": "Shunsuke Togami",
                          "team_hash_image": "53387dbdf777b2be6318586e1df566c119096f5017f34b85c63c3d510b1eafbd"
                        },
                        {
                          "team_id": 8440,
                          "team_name": "Duda Benedikt",
                          "team_hash_image": "0722e6cf17af8caeea6c4248766a4646890267a6ec31b40b27b8aadcb211f393"
                        },
                        {
                          "team_id": 8483,
                          "team_name": "Wong C.",
                          "team_hash_image": "371250ea64fdc8e9bcd0db48acd0261df070d1dd346a3854d58ae0d71a4022eb"
                        },
                        {
                          "team_id": 8487,
                          "team_name": "Gaoyuan Lin",
                          "team_hash_image": "51348df25b8a7351eeb0fc2151e260a4fc033efc24f9982aed47dfe805ebefab"
                        },
                        {
                          "team_id": 8490,
                          "team_name": "Ovidiu Ionescu",
                          "team_hash_image": "93af974c7aef397090b176f9b3b63810149dddba2776ffbc3cdb8b08983793fd"
                        },
                        {
                          "team_id": 8493,
                          "team_name": "Harimoto T.",
                          "team_hash_image": "28a13ccf51f4ace98b6f681954083e73404777ea36f895ea6f3519df5678e996"
                        },
                        {
                          "team_id": 8495,
                          "team_name": "Youzheng Huang",
                          "team_hash_image": "977e101bbc7821465883518d17d6754651578a6ae15bfacfb8900568efe58340"
                        },
                        {
                          "team_id": 8500,
                          "team_name": "El-Beiali M.",
                          "team_hash_image": "a1b13b3c3e3d75ed2e9a856192bc768fef61c942e48de3edb811d653ee1922bb"
                        },
                        {
                          "team_id": 8505,
                          "team_name": "Uda Y.",
                          "team_hash_image": "0ee67c8b40f632216862d197ccbec7e48c27e8dd2c5a7cdc20e860f3ad48d4e8"
                        },
                        {
                          "team_id": 118260,
                          "team_name": "Jha K.",
                          "team_hash_image": "ebc82d417addd3a4201d66b737c3b2c028ef6a474cb0af6919c8aa26188f0e29"
                        },
                        {
                          "team_id": 118372,
                          "team_name": "Omar Assar",
                          "team_hash_image": "f8bee2c063ba8107928bcdf117ea42147c67c740680a9fd5b101591b28bcd0fc"
                        },
                        {
                          "team_id": 118624,
                          "team_name": "Chien-An Chen",
                          "team_hash_image": "822ee2fce01c57d31d86b00211bd9902608035121cbc2cef75c0956930195dea"
                        },
                        {
                          "team_id": 118712,
                          "team_name": "Sangeun Jeong",
                          "team_hash_image": "71d1dcb1eea4d2c72264a036dccff0ff960558db515d1fd0496fc85d6fc9b9c8"
                        },
                        {
                          "team_id": 118813,
                          "team_name": "Alexander Shibaev",
                          "team_hash_image": "045e7dd3bb5a11952acabef16eb8bd7977e592e7b15205253c2bbcf363413bbf"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams By Season"
      }
    },
    "/teams": {
      "get": {
        "tags": [
          "Teams"
        ],
        "summary": "Teams",
        "description": "This endpoint allows you to retrieve the teams.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can get the image of the team by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet teams<br />`https://table-tennis.sportmicro.com/teams`<br /><br />Get team based on the **name**<br />`https://table-tennis.sportmicro.com/teams?name=like.*Real*`<br /><br />Get team based on the **id**<br />`https://table-tennis.sportmicro.com/teams?id=eq.{id}`<br /><br />Get teams from a specific **country_id**<br />`https://table-tennis.sportmicro.com/teams?country_id=eq.{country_id}`<br /><br />Get teams from a specific **category_id**<br />`https://table-tennis.sportmicro.com/teams?category_id=eq.{category_id}`<br /><br />Get team from a specific **primary_league_id**<br />`https://table-tennis.sportmicro.com/teams?primary_league_id=eq.{primary_league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.teams.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.teams.country_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.teams.class_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.teams.tournament_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.teams.primary_league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/teams"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 279135,
                      "name": "S. Cho / J. MA",
                      "full_name": "S. Cho / J. MA",
                      "name_code": "C/M",
                      "national": false,
                      "type": 2,
                      "color_primary": "#374df5",
                      "color_secondary": "#374df5",
                      "color_text": "#ffffff",
                      "hash_image": "672141a336531f410e9c4d580bbdc81b9ed72327bec740a34705ab36160d2fdb",
                      "sub_teams": [
                        121910,
                        120629
                      ],
                      "class_id": 306,
                      "class_name": "International",
                      "class_hash_image": "65dbfe692e6cbf63ac2a535ab413f3d039183afe1d4a9c29dc2b1cdc4c9de7ec"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams"
      }
    },
    "/seasons-info": {
      "get": {
        "tags": [
          "Seasons"
        ],
        "summary": "Seasons Info",
        "description": "This endpoint allows you to retrieve the info from seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet info from a specific **season_id**<br />`https://table-tennis.sportmicro.com/seasons-info?season_id=eq.{season_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.seasons-info.season_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/seasons-info"
                  },
                  "type": "array",
                  "example": [
                    {
                      "season_id": 4272,
                      "season_name": "2026"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons Info"
      }
    },
    "/tournaments-by-class": {
      "get": {
        "tags": [
          "Tournaments"
        ],
        "summary": "Tournaments By Class",
        "description": "This endpoint allows you to retrieve the tournaments from a specific class.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tournaments from a specific **class_id**<br />`https://table-tennis.sportmicro.com/tournaments-by-class?class_id=eq.{class_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.tournaments-by-class.class_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/tournaments-by-class"
                  },
                  "type": "array",
                  "example": [
                    {
                      "class_id": 306,
                      "class_name": "International",
                      "class_hash_image": "65dbfe692e6cbf63ac2a535ab413f3d039183afe1d4a9c29dc2b1cdc4c9de7ec",
                      "tournaments": [
                        {
                          "id": 3894,
                          "name": "Olympic Games, Singles",
                          "importance": 11
                        },
                        {
                          "id": 3895,
                          "name": "Japan Open (SS) 2014",
                          "importance": 0
                        },
                        {
                          "id": 3897,
                          "name": "ITTF World Cup 2024, Group 10",
                          "importance": 0
                        },
                        {
                          "id": 3898,
                          "name": "ITTF World Cup 2026, Group 14",
                          "importance": 0
                        },
                        {
                          "id": 3899,
                          "name": "ITTF Belgium Open 2017",
                          "importance": 0
                        },
                        {
                          "id": 3902,
                          "name": "ITTF World Cup 2024, Group 11",
                          "importance": 0
                        },
                        {
                          "id": 3903,
                          "name": "ITTF World Cup 2024, Group 2",
                          "importance": 0
                        },
                        {
                          "id": 3904,
                          "name": "World Tour, Spanish Open (MS) 2014",
                          "importance": 0
                        },
                        {
                          "id": 3907,
                          "name": "World Tour, Spanish Open (MS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 3909,
                          "name": "China Open (WTP) 2017",
                          "importance": 0
                        },
                        {
                          "id": 3912,
                          "name": "China Open (WTP) 2018",
                          "importance": 0
                        },
                        {
                          "id": 3916,
                          "name": "World Tour, Russian Open (MS) 2014",
                          "importance": 0
                        },
                        {
                          "id": 3922,
                          "name": "ITTF World Cup 2020, Group A",
                          "importance": 0
                        },
                        {
                          "id": 3925,
                          "name": "ITTF World Cup 2025, Group 4",
                          "importance": 0
                        },
                        {
                          "id": 3926,
                          "name": "ITTF World Cup 2025, Group 10",
                          "importance": 0
                        },
                        {
                          "id": 3928,
                          "name": "Hungarian Open (WT) 2017, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 3929,
                          "name": "ITTF World Cup 2024, Group 6",
                          "importance": 0
                        },
                        {
                          "id": 3930,
                          "name": "ITTF World Cup 2025, Group 3",
                          "importance": 0
                        },
                        {
                          "id": 3931,
                          "name": "World Tour, Polish Open (MS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 3933,
                          "name": "ITTF World Cup 2026, Group 4",
                          "importance": 0
                        },
                        {
                          "id": 3935,
                          "name": "WTT Contender Zagreb 2022, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 3938,
                          "name": "ITTF World Cup 2024, Group 9",
                          "importance": 0
                        },
                        {
                          "id": 3939,
                          "name": "ITTF World Cup 2025, Group 5",
                          "importance": 0
                        },
                        {
                          "id": 3940,
                          "name": "India Open (WT) 2017, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 16405,
                          "name": "EU Youth Championship 2019, Mixed Doubles U18",
                          "importance": 0
                        },
                        {
                          "id": 34424,
                          "name": "WTT Contender Taiyuan, WS",
                          "importance": 0
                        },
                        {
                          "id": 34425,
                          "name": "WTT Contender Taiyuan, MD",
                          "importance": 0
                        },
                        {
                          "id": 34426,
                          "name": "WTT Contender Taiyuan, MS",
                          "importance": 0
                        },
                        {
                          "id": 34427,
                          "name": "WTT Feeder Cappadocia II, MS",
                          "importance": 0
                        },
                        {
                          "id": 34428,
                          "name": "WTT Contender Taiyuan, WD",
                          "importance": 0
                        },
                        {
                          "id": 34430,
                          "name": "WTT Contender Taiyuan, XD",
                          "importance": 0
                        },
                        {
                          "id": 34431,
                          "name": "WTT Feeder Cappadocia II, WS",
                          "importance": 0
                        },
                        {
                          "id": 34432,
                          "name": "WTT Feeder Cappadocia II, WD",
                          "importance": 0
                        },
                        {
                          "id": 34435,
                          "name": "WTT Feeder Cappadocia II, MD",
                          "importance": 0
                        },
                        {
                          "id": 34441,
                          "name": "WTT Feeder Cappadocia II, XD",
                          "importance": 0
                        },
                        {
                          "id": 34457,
                          "name": "German Open (WTP) 2019, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 34458,
                          "name": "Japan Open (WTP) 2017, U21 Women",
                          "importance": 0
                        },
                        {
                          "id": 34463,
                          "name": "World Tour, Swedish Open (MS) 2014",
                          "importance": 0
                        },
                        {
                          "id": 34464,
                          "name": "India Open (WT) 2017, Women Qualification",
                          "importance": 0
                        },
                        {
                          "id": 34465,
                          "name": "ITTF World Junior Championships 2017, Girls",
                          "importance": 0
                        },
                        {
                          "id": 34466,
                          "name": "World Tour, Russian Open (MS) 2014, Women",
                          "importance": 0
                        },
                        {
                          "id": 34468,
                          "name": "WTT Star Contender Foz do Iguacu 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 34469,
                          "name": "WTT Star Contender Foz do Iguacu 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 34470,
                          "name": "ITTF World Cup 2017, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 34471,
                          "name": "U21 European Championship",
                          "importance": 0
                        },
                        {
                          "id": 34472,
                          "name": "WTT Feeder Budapest 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 34473,
                          "name": "World Tour, Hungary Open (MS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 34475,
                          "name": "ITTF Challenge, Polish Open 2020, Girls",
                          "importance": 0
                        },
                        {
                          "id": 34478,
                          "name": "ITTF World Junior Championships 2017, Boys Team S",
                          "importance": 0
                        },
                        {
                          "id": 34479,
                          "name": "Feeder Vila Nova de Gaia 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 34480,
                          "name": "Feeder Vila Nova de Gaia 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 34481,
                          "name": "Feeder Vila Nova de Gaia 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 34482,
                          "name": "Feeder Vila Nova de Gaia 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 34483,
                          "name": "Feeder Vila Nova de Gaia, WD",
                          "importance": 0
                        },
                        {
                          "id": 34489,
                          "name": "WTT Contender Zagreb 2022, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34490,
                          "name": "ITTF World Cup 2026, Group 3",
                          "importance": 0
                        },
                        {
                          "id": 34491,
                          "name": "WTT Feeder Beirut II 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34492,
                          "name": "WTT Feeder Beirut II 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 34494,
                          "name": "WTT Feeder Beirut II 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 34495,
                          "name": "WTT Feeder Cappadocia II 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 34496,
                          "name": "WTT Feeder Beirut 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 34497,
                          "name": "WTT Feeder Beirut 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 34499,
                          "name": "ITTF Europe Top 16 2016, Group C",
                          "importance": 0
                        },
                        {
                          "id": 34500,
                          "name": "ITTF World Cup 2025, Women, Group 6",
                          "importance": 0
                        },
                        {
                          "id": 34501,
                          "name": "WTT Feeder Beirut II 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 34506,
                          "name": "World Tour, Czech Open (MS) 2014",
                          "importance": 0
                        },
                        {
                          "id": 34507,
                          "name": "WTT Contender Muscat 2022, WS Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34508,
                          "name": "ITTF Challenge, Thailand Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 34509,
                          "name": "European Championships 2016, Singles, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 34515,
                          "name": "ITTF Belarus Open 2017, Boys",
                          "importance": 0
                        },
                        {
                          "id": 34516,
                          "name": "U18 European Youth Championship, Girls",
                          "importance": 0
                        },
                        {
                          "id": 34520,
                          "name": "ITTF World Junior Championships, Girls, Team, Sing",
                          "importance": 0
                        },
                        {
                          "id": 34523,
                          "name": "ITTF World Cup 2024, Women, Group 1",
                          "importance": 0
                        },
                        {
                          "id": 34528,
                          "name": "ITTF Challenge, Belarus Open 2019, WS, Group Stage",
                          "importance": 0
                        },
                        {
                          "id": 34529,
                          "name": "Japan Open (SS) 2014, Women",
                          "importance": 0
                        },
                        {
                          "id": 34531,
                          "name": "ITTF World Cup 2026, Group 12",
                          "importance": 0
                        },
                        {
                          "id": 34532,
                          "name": "Challenge Plus Portugal Open 2019, Boys",
                          "importance": 0
                        },
                        {
                          "id": 34534,
                          "name": "ITTF World Junior Championships 2017, Singles",
                          "importance": 0
                        },
                        {
                          "id": 34535,
                          "name": "Japan Open (WTP) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 34536,
                          "name": "Korea Open (WTP) 2018, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 34538,
                          "name": "EU Youth Championship 2019, Girls Doubles U18",
                          "importance": 0
                        },
                        {
                          "id": 34539,
                          "name": "WTT Contender Doha 2022, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34540,
                          "name": "Austrian Open (MS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 34541,
                          "name": "ITTF World Cup 2020, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 34542,
                          "name": "Challenge Plus Portugal Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 34543,
                          "name": "ETTU Youth Top 10, Cadet Girls",
                          "importance": 0
                        },
                        {
                          "id": 34545,
                          "name": "ITTF World Junior Championships, Team, Singles",
                          "importance": 0
                        },
                        {
                          "id": 34546,
                          "name": "Austrian Open (MS) 2016, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 34547,
                          "name": "Australian Open 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 34548,
                          "name": "World Tour, Spanish Open (MS) 2014, Women",
                          "importance": 0
                        },
                        {
                          "id": 34551,
                          "name": "ITTF World Cup 2026, Women, Group 8",
                          "importance": 0
                        },
                        {
                          "id": 34552,
                          "name": "China Open (WTP) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 34559,
                          "name": "ITTF World Cup 2024, Women, Group 7",
                          "importance": 0
                        },
                        {
                          "id": 34561,
                          "name": "Feeder Vila Nova de Gaia 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 34562,
                          "name": "ITTF World Cup 2025, Women, Group 11",
                          "importance": 0
                        },
                        {
                          "id": 34566,
                          "name": "Feeder Vila Nova de Gaia 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 34567,
                          "name": "ITTF Belarus Open 2017, Doubles Qualification",
                          "importance": 0
                        },
                        {
                          "id": 34569,
                          "name": "World Tour, Bulgaria Open (MS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 34570,
                          "name": "ITTF World Cup 2024, Women, Group 13",
                          "importance": 0
                        },
                        {
                          "id": 34576,
                          "name": "World Tour, Polish Open (MS) 2016, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 34581,
                          "name": "Czech Open (WT) 2017",
                          "importance": 0
                        },
                        {
                          "id": 34586,
                          "name": "Brazil Open (CH) 2017, Girls",
                          "importance": 0
                        },
                        {
                          "id": 34588,
                          "name": "ITTF World Tour, German Open, Women",
                          "importance": 0
                        },
                        {
                          "id": 34592,
                          "name": "ITTF World Cup 2020, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 34596,
                          "name": "ITTF World Cup 2024, Women, Group 2",
                          "importance": 0
                        },
                        {
                          "id": 34599,
                          "name": "World Tour, Korea Open (SS) 2014",
                          "importance": 0
                        },
                        {
                          "id": 34601,
                          "name": "ETTU Europe Top 16 Cup 2025",
                          "importance": 0
                        },
                        {
                          "id": 34604,
                          "name": "World Tour, Spanish Open (MS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 34605,
                          "name": "ITTF Challenge, Thailand Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 34606,
                          "name": "World Championship, Women",
                          "importance": 0
                        },
                        {
                          "id": 34608,
                          "name": "World Tour, Korea Open (SS) 2014, Women",
                          "importance": 0
                        },
                        {
                          "id": 34617,
                          "name": "Challenger Series 2019, Week 16, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 34618,
                          "name": "European Championship",
                          "importance": 0
                        },
                        {
                          "id": 34619,
                          "name": "Polish Open (CS) 2018, Girls",
                          "importance": 0
                        },
                        {
                          "id": 34621,
                          "name": "Indonesia Open 2019, WS, Group Stage",
                          "importance": 0
                        },
                        {
                          "id": 34623,
                          "name": "ITTF World Cup 2026, Women, Group 2",
                          "importance": 0
                        },
                        {
                          "id": 34624,
                          "name": "ITTF World Cup 2025, Women, Group 2",
                          "importance": 0
                        },
                        {
                          "id": 34627,
                          "name": "ITTF World Cup 2014, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 34634,
                          "name": "Slovenian Open (CH) 2017, Boys",
                          "importance": 0
                        },
                        {
                          "id": 34639,
                          "name": "ITTF World Cup 2020, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 34640,
                          "name": "Kazakhstan International Open 2021, WS",
                          "importance": 0
                        },
                        {
                          "id": 34652,
                          "name": "ITTF World Cup 2024, Women, Group 3",
                          "importance": 0
                        },
                        {
                          "id": 34654,
                          "name": "ITTF Europe Top 16 2017, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 34655,
                          "name": "European Championships 2018, (XD)",
                          "importance": 0
                        },
                        {
                          "id": 34662,
                          "name": "Kazakhstan International Open 2021, WD",
                          "importance": 0
                        },
                        {
                          "id": 34664,
                          "name": "Austria Open (WTP) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 34673,
                          "name": "ITTF World Cup 2020, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 34674,
                          "name": "Feeder Vila Nova de Gaia 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 34676,
                          "name": "ITTF Belgium Open 2017, Boys",
                          "importance": 0
                        },
                        {
                          "id": 34677,
                          "name": "World Tour, Polish Open (CS) 2017, Boys",
                          "importance": 0
                        },
                        {
                          "id": 34679,
                          "name": "Challenger Series 2021, Week 28, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 34680,
                          "name": "ITTF Challenge, Spanish Open 2017",
                          "importance": 0
                        },
                        {
                          "id": 34681,
                          "name": "World Tour, Polish Open (CS) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 34682,
                          "name": "ITTF World Cup 2014, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 34686,
                          "name": "EU Youth Championship 2019, Boys Cadet U15",
                          "importance": 0
                        },
                        {
                          "id": 34687,
                          "name": "World Tour, Korea Open (SS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 34688,
                          "name": "U15 European Youth Championship, Boys",
                          "importance": 0
                        },
                        {
                          "id": 34689,
                          "name": "Challenger Series 2022, Week 29, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 34695,
                          "name": "ITTF World Cup 2025, Women, Group 14",
                          "importance": 0
                        },
                        {
                          "id": 34703,
                          "name": "ITTF World Cup 2017, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 34713,
                          "name": "ITTF World Cup 2020, Group B",
                          "importance": 0
                        },
                        {
                          "id": 34718,
                          "name": "U21 European Championship, Women",
                          "importance": 0
                        },
                        {
                          "id": 34719,
                          "name": "World Championship 2017",
                          "importance": 0
                        },
                        {
                          "id": 34725,
                          "name": "ITTF World Cup 2017, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 34729,
                          "name": "U18 European Youth Championship, Boys",
                          "importance": 0
                        },
                        {
                          "id": 34734,
                          "name": "EU Youth Championship 2019, Boys U18",
                          "importance": 0
                        },
                        {
                          "id": 34736,
                          "name": "Polish Open (CS) 2018, Boys",
                          "importance": 0
                        },
                        {
                          "id": 34739,
                          "name": "ITTF Challenge, Thailand Open 2018, Boys",
                          "importance": 0
                        },
                        {
                          "id": 34740,
                          "name": "World Tour, Polish Open (MS) 2016, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 34743,
                          "name": "World Tour, Polish Open (MS) 2016, U21",
                          "importance": 0
                        },
                        {
                          "id": 34749,
                          "name": "ITTF World Junior Championships 2017, Girls Team S",
                          "importance": 0
                        },
                        {
                          "id": 34753,
                          "name": "European Team Championships, Women Singles",
                          "importance": 0
                        },
                        {
                          "id": 34758,
                          "name": "World Tour, Austrian Open (MS) 2015, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 34759,
                          "name": "World Tour, China Open (SS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 34761,
                          "name": "World Tour, Polish Open (CS) 2017",
                          "importance": 0
                        },
                        {
                          "id": 34763,
                          "name": "World Tour, Czech Open (MS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 34767,
                          "name": "World Championships 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 34770,
                          "name": "ITTF World Cup 2026, Women, Group 16",
                          "importance": 0
                        },
                        {
                          "id": 34771,
                          "name": "WTT Singapore Smash 2022, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34775,
                          "name": "ITTF Europe Top 16 2017, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 34783,
                          "name": "ITTF World Cup 2017, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 34792,
                          "name": "ITTF Europe Top 16 2017, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 34794,
                          "name": "European Championships 2022, WS",
                          "importance": 3
                        },
                        {
                          "id": 34804,
                          "name": "WTT Contender Skopje 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 34805,
                          "name": "ETTU Champions League, Women, Singles",
                          "importance": 0
                        },
                        {
                          "id": 34807,
                          "name": "WTT Contender Skopje 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 34810,
                          "name": "ETTU Champions League, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 34814,
                          "name": "WTT Contender Skopje 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 34815,
                          "name": "World Championship",
                          "importance": 0
                        },
                        {
                          "id": 34816,
                          "name": "ITTF World Cup 2025, Group 16",
                          "importance": 0
                        },
                        {
                          "id": 34817,
                          "name": "ITTF World Cup 2014, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 34818,
                          "name": "WTT Contender Skopje 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 34825,
                          "name": "WTT Contender Skopje 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 34833,
                          "name": "China Smash 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 34834,
                          "name": "ETTU Europe Trophy, Grand Final 2022, Singles",
                          "importance": 0
                        },
                        {
                          "id": 34835,
                          "name": "China Smash 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 34837,
                          "name": "China Smash 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 34838,
                          "name": "China Smash 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 34839,
                          "name": "WTT Feeder Doha 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34841,
                          "name": "WTT Feeder Doha, MS",
                          "importance": 0
                        },
                        {
                          "id": 34848,
                          "name": "Austrian Open (MS) 2016, U21",
                          "importance": 0
                        },
                        {
                          "id": 34849,
                          "name": "World Tour, Japan Open (SS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 34851,
                          "name": "World Tour, Polish Open (MS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 34854,
                          "name": "ITTF World Cup 2014, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 34857,
                          "name": "Korea Open (WTP) 2018, Women, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 34859,
                          "name": "World Tour, Czech Open (MS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 34862,
                          "name": "WTT Star Contender Doha 2022, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34863,
                          "name": "Challenge Plus Portugal Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 34864,
                          "name": "World Tour, Swedish Open (MS) 2014, Women",
                          "importance": 0
                        },
                        {
                          "id": 34865,
                          "name": "Challenge Plus Canada Open 2019, Boys",
                          "importance": 0
                        },
                        {
                          "id": 34868,
                          "name": "Slovenian Open (CH) 2017",
                          "importance": 0
                        },
                        {
                          "id": 34871,
                          "name": "ITTF World Cup 2014, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 34872,
                          "name": "ITTF World Cup 2026, Group 7",
                          "importance": 0
                        },
                        {
                          "id": 34875,
                          "name": "Challenge Plus Oman Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 34877,
                          "name": "European Championships 2018, (Ms), Qualification",
                          "importance": 0
                        },
                        {
                          "id": 34881,
                          "name": "ITTF World Cup 2026, Women, Group 3",
                          "importance": 0
                        },
                        {
                          "id": 34882,
                          "name": "ITTF World Cup 2026, Women, Group 13",
                          "importance": 0
                        },
                        {
                          "id": 34883,
                          "name": "ITTF World Cup 2025, Group 8",
                          "importance": 0
                        },
                        {
                          "id": 34886,
                          "name": "Korea Open 2019, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 34890,
                          "name": "ITTF World Cup 2024, Women, Group 14",
                          "importance": 0
                        },
                        {
                          "id": 34891,
                          "name": "Australian Open 2019, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 34892,
                          "name": "China Smash 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 34894,
                          "name": "U15 European Youth Championship, Girls",
                          "importance": 0
                        },
                        {
                          "id": 34895,
                          "name": "ITTF World Cup 2025, Women, Group 3",
                          "importance": 0
                        },
                        {
                          "id": 34899,
                          "name": "WTT Contender Doha 2022, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34900,
                          "name": "ITTF World Cup 2026, Group 11",
                          "importance": 0
                        },
                        {
                          "id": 34902,
                          "name": "German Open (WTP) 2018, Girls",
                          "importance": 0
                        },
                        {
                          "id": 34903,
                          "name": "World Championship 2019, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 34904,
                          "name": "German Open (WTP) 2017, Girls",
                          "importance": 0
                        },
                        {
                          "id": 34906,
                          "name": "ITTF World Cup 2014, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 34907,
                          "name": "WTT Contender Lima 2022, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34909,
                          "name": "Polish Open (CS) 2018",
                          "importance": 0
                        },
                        {
                          "id": 34912,
                          "name": "ITTF World Cup 2026, Women, Group 9",
                          "importance": 0
                        },
                        {
                          "id": 34913,
                          "name": "WTT Feeder Doha 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 34914,
                          "name": "ITTF World Cup 2025, Group 15",
                          "importance": 0
                        },
                        {
                          "id": 34916,
                          "name": "WTT Contender Muscat 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 34918,
                          "name": "ITTF World Cup 2026, Women, Group 15",
                          "importance": 0
                        },
                        {
                          "id": 34920,
                          "name": "World Tour, Bulgaria Open (MS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 34921,
                          "name": "ETTU Champions League, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 34924,
                          "name": "WTT Feeder Doha 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 34925,
                          "name": "World Tour, Czech Open (MS) 2014, Women",
                          "importance": 0
                        },
                        {
                          "id": 34927,
                          "name": "ITTF World Cup 2024, Women, Group 11",
                          "importance": 0
                        },
                        {
                          "id": 34930,
                          "name": "ITTF Challenge, Spanish Open 2020, MS, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 34931,
                          "name": "Austrian Open (MS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 34933,
                          "name": "ITTF World Cup 2025, Women, Group 15",
                          "importance": 0
                        },
                        {
                          "id": 34934,
                          "name": "European Championships, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 34935,
                          "name": "Polish Open (CS) 2018, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 34938,
                          "name": "ETTU European Championships 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 34939,
                          "name": "ETTU Champions League, Women, Stage 2, Group A",
                          "importance": 0
                        },
                        {
                          "id": 34940,
                          "name": "World Tour, Spanish Open (MS) 2015, Women Quali.",
                          "importance": 0
                        },
                        {
                          "id": 34941,
                          "name": "WTT Feeder Doha 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 34944,
                          "name": "Brazil Open (CH) 2017, Boys",
                          "importance": 0
                        },
                        {
                          "id": 34950,
                          "name": "ITTF World Cup 2015, Women, Group 4",
                          "importance": 0
                        },
                        {
                          "id": 34952,
                          "name": "WTT Feeder Doha 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34956,
                          "name": "WTT Feeder Doha 2026, MS",
                          "importance": 0
                        },
                        {
                          "id": 34958,
                          "name": "WTT Feeder Doha 2026, WD",
                          "importance": 0
                        },
                        {
                          "id": 34959,
                          "name": "WTT Feeder Doha 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 34961,
                          "name": "China Smash 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 34965,
                          "name": "ITTF World Cup 2015, Women, Group 2",
                          "importance": 0
                        },
                        {
                          "id": 34966,
                          "name": "WTT Feeder Doha 2026, XD",
                          "importance": 0
                        },
                        {
                          "id": 34967,
                          "name": "ITTF World Cup 2017, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 34968,
                          "name": "WTT Contender Budapest 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 34972,
                          "name": "ETTU Champions League",
                          "importance": 0
                        },
                        {
                          "id": 34973,
                          "name": "WTT Feeder Doha 2026, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34975,
                          "name": "China Smash 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 34976,
                          "name": "Austria Open (WTP) 2017",
                          "importance": 0
                        },
                        {
                          "id": 34978,
                          "name": "ITTF World Cup 2014, Group A",
                          "importance": 0
                        },
                        {
                          "id": 34979,
                          "name": "ITTF Europe Top 16 2017, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 34981,
                          "name": "ITTF Challenge, Belarus Open 2019, MS, Main Stage",
                          "importance": 0
                        },
                        {
                          "id": 34983,
                          "name": "WTT Feeder Doha 2026, WS",
                          "importance": 0
                        },
                        {
                          "id": 34984,
                          "name": "ITTF World Cup 2026, Group 9",
                          "importance": 0
                        },
                        {
                          "id": 34986,
                          "name": "World Championship 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 34988,
                          "name": "Qatar Open (WTP) 2017, U21",
                          "importance": 0
                        },
                        {
                          "id": 34989,
                          "name": "Kazakhstan International Open 2021, MS",
                          "importance": 0
                        },
                        {
                          "id": 34990,
                          "name": "ITTF World Cup 2024, Group 3",
                          "importance": 0
                        },
                        {
                          "id": 34991,
                          "name": "Japan Open (WT) 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 34992,
                          "name": "ITTF World Cup 2015, Women, Group 1",
                          "importance": 0
                        },
                        {
                          "id": 34993,
                          "name": "Qatar Open 2020, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 34997,
                          "name": "World Tour, Kuwait Open (SS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 35000,
                          "name": "Austrian Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 35003,
                          "name": "WTT Contender Lima 2022, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35008,
                          "name": "Korean Open (WT) 2017, U21",
                          "importance": 0
                        },
                        {
                          "id": 35009,
                          "name": "World Tour, Japan Open (SS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35010,
                          "name": "ETTU European Championships 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 35011,
                          "name": "World Tour, Czech Open (MS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35012,
                          "name": "Qatar Open 2019, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35018,
                          "name": "Hungarian Open 2020, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35019,
                          "name": "EU Youth Championship 2019, Girls Cadets U15",
                          "importance": 0
                        },
                        {
                          "id": 35020,
                          "name": "ITTF Challenge, Slovenia Open 2018",
                          "importance": 0
                        },
                        {
                          "id": 35022,
                          "name": "ITTF World Cup 2026, Women, Group 10",
                          "importance": 0
                        },
                        {
                          "id": 35023,
                          "name": "ETTU Champions League, Women, Stage 2, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35025,
                          "name": "ITTF World Cup 2024, Women, Group 5",
                          "importance": 0
                        },
                        {
                          "id": 35027,
                          "name": "ITTF World Cup 2018, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35028,
                          "name": "WTT Feeder Doha 2026, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35029,
                          "name": "WTT Feeder Doha 2026, MD",
                          "importance": 0
                        },
                        {
                          "id": 35033,
                          "name": "ITTF World Cup 2024, Group 12",
                          "importance": 0
                        },
                        {
                          "id": 35034,
                          "name": "Challenge Plus Oman Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 35036,
                          "name": "ITTF Europe Top 16 2016, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35039,
                          "name": "ITTF Challenge, Belarus Open 2019, Girls",
                          "importance": 0
                        },
                        {
                          "id": 35040,
                          "name": "European Championships 2018, (XD), Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35041,
                          "name": "World Tour, Qatar Open (SS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 35042,
                          "name": "Australian Open (WTP) 2017, Women, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35047,
                          "name": "ITTF World Cup 2015, Women, Group 3",
                          "importance": 0
                        },
                        {
                          "id": 35049,
                          "name": "Belarus Open 2018, Girls",
                          "importance": 0
                        },
                        {
                          "id": 35050,
                          "name": "ITTF Challenge, Thailand Open 2018, Girls",
                          "importance": 0
                        },
                        {
                          "id": 35051,
                          "name": "ITTF World Cup 2026, Women, Group 5",
                          "importance": 0
                        },
                        {
                          "id": 35056,
                          "name": "World Tour, Korea Open (SS) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35058,
                          "name": "WTT Feeder Lille 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35059,
                          "name": "Czech Open 2021, MD",
                          "importance": 0
                        },
                        {
                          "id": 35062,
                          "name": "China Smash 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 35064,
                          "name": "ITTF Belarus Open 2017, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35065,
                          "name": "WTT Contender Lasko 2021, WS Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35068,
                          "name": "ITTF World Tour, German Open",
                          "importance": 0
                        },
                        {
                          "id": 35072,
                          "name": "ITTF World Cup 2017, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35073,
                          "name": "ETTU Europe Cup, Women, Teams, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 35074,
                          "name": "ITTF Europe Top 16 2017, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35083,
                          "name": "ITTF World Cup 2019, Group A",
                          "importance": 0
                        },
                        {
                          "id": 35087,
                          "name": "WTT Feeder Lille 2026, MS",
                          "importance": 0
                        },
                        {
                          "id": 35089,
                          "name": "WTT Contender Novo Mesto 2021, WS",
                          "importance": 0
                        },
                        {
                          "id": 35091,
                          "name": "WTT Feeder Lille 2026, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35092,
                          "name": "Bulgaria Open (WT) 2017, WS",
                          "importance": 0
                        },
                        {
                          "id": 35099,
                          "name": "ITTF Europe Top 16 2017, Group A",
                          "importance": 0
                        },
                        {
                          "id": 35100,
                          "name": "ITTF World Cup 2024, Group 7",
                          "importance": 0
                        },
                        {
                          "id": 35103,
                          "name": "Belarus Open 2018, MS",
                          "importance": 0
                        },
                        {
                          "id": 35106,
                          "name": "ITTF World Cup 2025, Group 9",
                          "importance": 0
                        },
                        {
                          "id": 35107,
                          "name": "WTT Contender Lasko 2021, MS Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35108,
                          "name": "ETTU Europe Cup, Women, Stage 2, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35109,
                          "name": "ETTU Europe Cup",
                          "importance": 0
                        },
                        {
                          "id": 35110,
                          "name": "WTT Feeder Lille 2026, WS",
                          "importance": 0
                        },
                        {
                          "id": 35112,
                          "name": "Croatia Open (CH) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 35113,
                          "name": "ITTF World Junior Championships, Girls",
                          "importance": 0
                        },
                        {
                          "id": 35114,
                          "name": "ITTF World Cup 2019, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35118,
                          "name": "World Tour, German Open (SS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 35121,
                          "name": "ITTF World Cup 2026, Group 5",
                          "importance": 0
                        },
                        {
                          "id": 35122,
                          "name": "Challenge Plus Portugal Open 2020, Boys",
                          "importance": 0
                        },
                        {
                          "id": 35123,
                          "name": "South American Championships 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 35124,
                          "name": "ITTF World Cup 2026, Group 15",
                          "importance": 0
                        },
                        {
                          "id": 35126,
                          "name": "ITTF World Cup 2026, Group 13",
                          "importance": 0
                        },
                        {
                          "id": 35128,
                          "name": "ITTF Europe Top 16 2016, Group A",
                          "importance": 0
                        },
                        {
                          "id": 35130,
                          "name": "World Team Cup, Women Singles",
                          "importance": 0
                        },
                        {
                          "id": 35133,
                          "name": "ITTF World Cup 2019, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35134,
                          "name": "ITTF World Cup 2024, Group 1",
                          "importance": 0
                        },
                        {
                          "id": 35136,
                          "name": "Olympic Games Women, Singles",
                          "importance": 8
                        },
                        {
                          "id": 35140,
                          "name": "ITTF World Cup 2025, Group 13",
                          "importance": 0
                        },
                        {
                          "id": 35141,
                          "name": "ITTF World Cup 2019, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35143,
                          "name": "World Tour, Czech Open (MS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 35144,
                          "name": "ITTF World Cup 2025, Group 7",
                          "importance": 0
                        },
                        {
                          "id": 35147,
                          "name": "World Championship 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 35150,
                          "name": "Challenger Series 2017, Week 44, Women",
                          "importance": 0
                        },
                        {
                          "id": 35155,
                          "name": "European Championships, Women",
                          "importance": 0
                        },
                        {
                          "id": 35165,
                          "name": "World Tour, China Open (SS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 35169,
                          "name": "WTT Feeder Lille 2026, MD",
                          "importance": 0
                        },
                        {
                          "id": 35170,
                          "name": "ETTU Europe Cup, Women, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 35174,
                          "name": "ITTF Africa Top 16 Cup, WS",
                          "importance": 0
                        },
                        {
                          "id": 35176,
                          "name": "ITTF Europe Top 16 2017, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35186,
                          "name": "ITTF World Cup 2026, Women, Group 1",
                          "importance": 0
                        },
                        {
                          "id": 35189,
                          "name": "ETTU U21 European Championship 2021, XD",
                          "importance": 0
                        },
                        {
                          "id": 35190,
                          "name": "ITTF World Cup 2014, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35192,
                          "name": "Challenger Series 2022, Week 27, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 35198,
                          "name": "ITTF World Cup 2026, Group 16",
                          "importance": 0
                        },
                        {
                          "id": 35199,
                          "name": "ITTF World Cup 2025, Women, Group 9",
                          "importance": 0
                        },
                        {
                          "id": 35200,
                          "name": "WTT Feeder Lille 2026, WD",
                          "importance": 0
                        },
                        {
                          "id": 35203,
                          "name": "ITTF World Cup 2020, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35204,
                          "name": "WTT Feeder Lille 2026, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35205,
                          "name": "ETTU Europe Cup, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35206,
                          "name": "ITTF European Championships Qualification 2017",
                          "importance": 0
                        },
                        {
                          "id": 35210,
                          "name": "ITTF World Cup 2026, Group 10",
                          "importance": 0
                        },
                        {
                          "id": 35212,
                          "name": "ITTF Europe Top 16 2017, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35213,
                          "name": "WTT Feeder Lille 2026, XD",
                          "importance": 0
                        },
                        {
                          "id": 35214,
                          "name": "TT Cup, Women",
                          "importance": 0
                        },
                        {
                          "id": 35216,
                          "name": "ITTF World Cup 2026, Women, Group 14",
                          "importance": 0
                        },
                        {
                          "id": 35222,
                          "name": "ITTF World Cup 2024, Women, Group 9",
                          "importance": 0
                        },
                        {
                          "id": 35224,
                          "name": "ITTF World Cup 2025, Group 12",
                          "importance": 0
                        },
                        {
                          "id": 35225,
                          "name": "Challenge Plus Portugal Open 2019, Girls",
                          "importance": 0
                        },
                        {
                          "id": 35226,
                          "name": "ITTF World Cup 2025, Women, Group 10",
                          "importance": 0
                        },
                        {
                          "id": 35229,
                          "name": "ETTU Europe Top 16 Cup 2025, Women",
                          "importance": 0
                        },
                        {
                          "id": 35230,
                          "name": "German Open (WTP) 2017, Women Doubles, Qual.",
                          "importance": 0
                        },
                        {
                          "id": 35234,
                          "name": "WTT Contender Doha 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 35235,
                          "name": "World Tour, Swedish Open (MS) 2014, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 35237,
                          "name": "Japan Open 2019, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35241,
                          "name": "World Tour, Czech Open (MS) 2014, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35243,
                          "name": "ITTF World Cup 2026, Group 6",
                          "importance": 0
                        },
                        {
                          "id": 35249,
                          "name": "ITTF World Cup 2024, Group 5",
                          "importance": 0
                        },
                        {
                          "id": 35250,
                          "name": "ITTF World Cup 2017, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35252,
                          "name": "Bulgaria Open (WT) 2018, MS",
                          "importance": 0
                        },
                        {
                          "id": 35253,
                          "name": "ITTF World Cup 2024, Group 4",
                          "importance": 0
                        },
                        {
                          "id": 35254,
                          "name": "ETTU Europe Cup, Women, Stage 2, Group A",
                          "importance": 0
                        },
                        {
                          "id": 35256,
                          "name": "ITTF World Cup 2026, Women, Group 4",
                          "importance": 0
                        },
                        {
                          "id": 35261,
                          "name": "ITTF Challenge, Thailand Open 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35263,
                          "name": "ITTF Europe Top 16 2016, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35266,
                          "name": "ETTU Europe Cup, Women, Stage 1, Group A",
                          "importance": 0
                        },
                        {
                          "id": 35268,
                          "name": "ITTF World Cup 2018, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35269,
                          "name": "ITTF World Cup 2017, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35276,
                          "name": "EU Youth Championship 2019, Girls U18",
                          "importance": 0
                        },
                        {
                          "id": 35277,
                          "name": "Challenger Series 2020, Week 48, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 35281,
                          "name": "WTT Contender Tunis, MD",
                          "importance": 0
                        },
                        {
                          "id": 35282,
                          "name": "WTT Contender Tunis, MS",
                          "importance": 0
                        },
                        {
                          "id": 35283,
                          "name": "WTT Contender Tunis 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35286,
                          "name": "Korean Open (WT) 2017, U21 Women",
                          "importance": 0
                        },
                        {
                          "id": 35288,
                          "name": "WTT Contender Tunis, WD",
                          "importance": 0
                        },
                        {
                          "id": 35290,
                          "name": "ITTF World Cup 2026, Women, Group 6",
                          "importance": 0
                        },
                        {
                          "id": 35292,
                          "name": "China Open (SS) 2014, Women",
                          "importance": 0
                        },
                        {
                          "id": 35294,
                          "name": "WTT Contender Tunis 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35295,
                          "name": "Feeder Dusseldorf II 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 35296,
                          "name": "ETTU Champions League, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35298,
                          "name": "ITTF World Cup 2024, Women, Group 4",
                          "importance": 0
                        },
                        {
                          "id": 35300,
                          "name": "WTT Contender Tunis, WS",
                          "importance": 0
                        },
                        {
                          "id": 35304,
                          "name": "Southeast Asian Games, MS",
                          "importance": 0
                        },
                        {
                          "id": 35305,
                          "name": "Challenge Plus Paraguay Open 2019, Boys",
                          "importance": 0
                        },
                        {
                          "id": 35306,
                          "name": "ITTF Belgium Open 2018, (WS)",
                          "importance": 0
                        },
                        {
                          "id": 35307,
                          "name": "ITTF World Cup 2024, Group 8",
                          "importance": 0
                        },
                        {
                          "id": 35308,
                          "name": "WTT Contender Tunis 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35311,
                          "name": "ITTF Challenge, Croatia Open 2018",
                          "importance": 0
                        },
                        {
                          "id": 35312,
                          "name": "ITTF Challenge, Thailand Open 2019, Girls",
                          "importance": 0
                        },
                        {
                          "id": 35313,
                          "name": "ETTU Europe Cup, Women, Teams, Group A",
                          "importance": 0
                        },
                        {
                          "id": 35315,
                          "name": "WTT Contender Tunis, XD",
                          "importance": 0
                        },
                        {
                          "id": 35321,
                          "name": "WTT Feeder Manchester 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35322,
                          "name": "World Tour, Swedish Open (MS) 2014, Women Doubl.,Q",
                          "importance": 0
                        },
                        {
                          "id": 35331,
                          "name": "WTT Contender Muscat 2022, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35333,
                          "name": "World Tour, Belarus Open (CS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 35337,
                          "name": "Bulgaria Open (WT) 2018, Women Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35339,
                          "name": "Slovenian Open (CH) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 35343,
                          "name": "WTT Feeder Manchester 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 35344,
                          "name": "ITTF Belgium Open 2018, Boys",
                          "importance": 0
                        },
                        {
                          "id": 35345,
                          "name": "Commonwealth Games 2014 Team, MS",
                          "importance": 0
                        },
                        {
                          "id": 35347,
                          "name": "WTT Star Contender Doha 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 35348,
                          "name": "World Tour, Spanish Open (MS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35349,
                          "name": "Chile Open (CH) 2017",
                          "importance": 0
                        },
                        {
                          "id": 35357,
                          "name": "ITTF World Cup 2025, Group 2",
                          "importance": 0
                        },
                        {
                          "id": 35358,
                          "name": "ITTF World Cup 2024, Women, Group 15",
                          "importance": 0
                        },
                        {
                          "id": 35359,
                          "name": "WTT Feeder Manchester 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35361,
                          "name": "Korean Open (WT) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 35363,
                          "name": "Bulgaria Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 35365,
                          "name": "ITTF Challenge, Spanish Open 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 35371,
                          "name": "Czech Open (WT) 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35372,
                          "name": "China Open (WTP) 2017, Women Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35373,
                          "name": "Hungarian Open (WT) 2017",
                          "importance": 0
                        },
                        {
                          "id": 35374,
                          "name": "WTT Feeder Manchester 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 35382,
                          "name": "ITTF Challenge, Polish Open 2019, MS, Group Stage",
                          "importance": 0
                        },
                        {
                          "id": 35384,
                          "name": "World Tour, Polish Open (MS) 2016, U21 Women",
                          "importance": 0
                        },
                        {
                          "id": 35388,
                          "name": "WTT Feeder Manchester 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 35392,
                          "name": "Korea Open (WTP) 2018, Mixed Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35394,
                          "name": "Thailand Open (CH) 2017, Girls",
                          "importance": 0
                        },
                        {
                          "id": 35395,
                          "name": "WTT Feeder Manchester 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35400,
                          "name": "World Tour, Czech Open (MS) 2014, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 35405,
                          "name": "WTT Feeder Manchester 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 35409,
                          "name": "South American Championships 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 35416,
                          "name": "Korea Open 2019, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35417,
                          "name": "WTT Contender Tunis 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 35418,
                          "name": "ETTU Europe Trophy, Women, Gr Final 2022, Singles",
                          "importance": 0
                        },
                        {
                          "id": 35426,
                          "name": "World Tour, Polish Open (MS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 35427,
                          "name": "ETTU Europe Cup, Women, Teams, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35429,
                          "name": "ITTF World Cup 2024, Group 16",
                          "importance": 0
                        },
                        {
                          "id": 35433,
                          "name": "ITTF World Junior Championships, Mixed Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35434,
                          "name": "European University Table Tennis Championship, MS",
                          "importance": 0
                        },
                        {
                          "id": 35435,
                          "name": "Chile Open (CH) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 35439,
                          "name": "World Championship 2017, Women, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35440,
                          "name": "WTT Contender Tunis 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 35442,
                          "name": "Challenger Series 2019, Week 28, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 35443,
                          "name": "WTT Feeder Doha 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 35445,
                          "name": "World Championship 2019, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35446,
                          "name": "ITTF Challenge, Croatia Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 35448,
                          "name": "WTT Contender Tunis 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 35453,
                          "name": "World Championship 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35455,
                          "name": "Hungarian Open (WT) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35460,
                          "name": "WTT Feeder Manchester 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 35463,
                          "name": "WTT Feeder Manchester 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 35466,
                          "name": "U18 European Youth Championship, Mixed",
                          "importance": 0
                        },
                        {
                          "id": 35467,
                          "name": "European Championships, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35470,
                          "name": "WTT Feeder Manchester 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 35473,
                          "name": "WTT Contender Muscat 2022, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35475,
                          "name": "ETTU Europe Cup, Women, Stage 1, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35477,
                          "name": "ETTU Europe Trophy, Women, Gr Final, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35478,
                          "name": "ITTF World Cup 2024, Women, Group 8",
                          "importance": 0
                        },
                        {
                          "id": 35479,
                          "name": "ITTF World Cup 2025, Women, Group 7",
                          "importance": 0
                        },
                        {
                          "id": 35485,
                          "name": "ETTU Champions League, Women, Stage 2, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35487,
                          "name": "Swedish Open (WT) 2017, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35490,
                          "name": "ETTU Champions League, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35491,
                          "name": "Slovenian Open (CH) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35493,
                          "name": "ETTU Europe Trophy, Women, Grand Final, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35494,
                          "name": "ITTF World Cup 2026, Women, Group 7",
                          "importance": 0
                        },
                        {
                          "id": 35498,
                          "name": "ITTF World Cup 2025, Women, Group 5",
                          "importance": 0
                        },
                        {
                          "id": 35503,
                          "name": "ITTF World Cup 2024, Group 13",
                          "importance": 0
                        },
                        {
                          "id": 35506,
                          "name": "ETTU Europe Trophy, Women, Gr Final, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35507,
                          "name": "World Tour, Russian Open (MS) 2014, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35511,
                          "name": "WTT Contender Tunis 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 35512,
                          "name": "ETTU Champions League, Women, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35519,
                          "name": "Challenger Series 2022, Week 22, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 35527,
                          "name": "ETTU Europe Cup, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35534,
                          "name": "ITTF Challenge, Spanish Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 35535,
                          "name": "ITTF Challenge, Thailand Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 35537,
                          "name": "World Championship 2017, Mixed Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35544,
                          "name": "Challenger Series 2022, Week 10, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 35545,
                          "name": "ITTF Challenge, Slovenia Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 35546,
                          "name": "ETTU Champions League, Women, Stage 1, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35550,
                          "name": "WTT Contender Doha 2022, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35551,
                          "name": "ETTU Europe Cup, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35554,
                          "name": "WTT Contender Novo Mesto 2021, MD",
                          "importance": 0
                        },
                        {
                          "id": 35559,
                          "name": "Croatia Open (CH) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35563,
                          "name": "ETTU Champions League, Women, Stage 1, Group A",
                          "importance": 0
                        },
                        {
                          "id": 35564,
                          "name": "ETTU Europe Top 16 Cup 2023, Women",
                          "importance": 0
                        },
                        {
                          "id": 35565,
                          "name": "ITTF World Cup 2025, Group 6",
                          "importance": 0
                        },
                        {
                          "id": 35566,
                          "name": "World Tour, Polish Open (CS) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35570,
                          "name": "ITTF World Cup 2025, Women, Group 1",
                          "importance": 0
                        },
                        {
                          "id": 35571,
                          "name": "ETTU Europe Cup, Women, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 35575,
                          "name": "WTT Contender Muscat 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 35576,
                          "name": "ITTF Challenge, Spanish Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 35586,
                          "name": "ETTU Europe Cup, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35596,
                          "name": "Challenger Series 2022, Week 20, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 35598,
                          "name": "EU Youth Championship 2019, Boys Doubles U18",
                          "importance": 0
                        },
                        {
                          "id": 35605,
                          "name": "ETTU Youth Top 10, Cadet Boys",
                          "importance": 0
                        },
                        {
                          "id": 35610,
                          "name": "ITTF World Junior Championships 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35617,
                          "name": "ETTU Champions League, Women, Stage 1, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35622,
                          "name": "ETTU Europe Cup, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35624,
                          "name": "WTT Singapore Smash 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 35627,
                          "name": "European Team Championships, Singles",
                          "importance": 0
                        },
                        {
                          "id": 35640,
                          "name": "Challenger Series 2021, Week 38, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 35641,
                          "name": "EU Youth Championship 2019, Girls Doubl. Cadet U15",
                          "importance": 0
                        },
                        {
                          "id": 35642,
                          "name": "ETTU Europe Cup, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35644,
                          "name": "ETTU Europe Trophy, Women, Grand Final, Group A",
                          "importance": 0
                        },
                        {
                          "id": 35655,
                          "name": "WTT Contender Tunis 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 35657,
                          "name": "WTT Contender Muscat 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 35664,
                          "name": "ETTU Europe Cup, Women, Stage 2, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35665,
                          "name": "World Championship 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 35671,
                          "name": "ITTF World Cup 2019, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 35673,
                          "name": "ETTU Europe Cup, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35678,
                          "name": "ITTF World Junior Championships 2017, WD Qual",
                          "importance": 0
                        },
                        {
                          "id": 35691,
                          "name": "ITTF World Cup 2016, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 35694,
                          "name": "Swedish Open (WT) 2017, Doubles Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35695,
                          "name": "ETTU Europe Cup, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 35700,
                          "name": "Bulgaria Open (WT) 2018, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35704,
                          "name": "World Tour, Korea Open (SS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35709,
                          "name": "Pan Am Games, MS",
                          "importance": 0
                        },
                        {
                          "id": 35714,
                          "name": "ETTU Champions League, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35717,
                          "name": "ETTU Europe Cup, Women, Teams, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35718,
                          "name": "ITTF Challenge, Spanish Open 2020, MD, Quali",
                          "importance": 0
                        },
                        {
                          "id": 35719,
                          "name": "WTT Star Contender Ljubljana 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 35720,
                          "name": "World Championship 2017, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35721,
                          "name": "European Championships 2022, Singles",
                          "importance": 4
                        },
                        {
                          "id": 35722,
                          "name": "WTT Star Contender Ljubljana 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 35724,
                          "name": "WTT Star Contender Ljubljana 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 35725,
                          "name": "World Championships 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 35726,
                          "name": "WTT Star Contender Ljubljana 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 35727,
                          "name": "ETTU Europe Cup, Women, Stage 1, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35729,
                          "name": "ITTF Challenge, Spanish Open 2018, Boys",
                          "importance": 0
                        },
                        {
                          "id": 35731,
                          "name": "ETTU Champions League, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 35732,
                          "name": "Korea Open (WTP) 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35736,
                          "name": "India Open (WT) 2017, U21",
                          "importance": 0
                        },
                        {
                          "id": 35737,
                          "name": "ITTF Challenge, Polish Open 2020, MS, Quali",
                          "importance": 0
                        },
                        {
                          "id": 35738,
                          "name": "Czech Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 35739,
                          "name": "European Championships 2016, Women, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35744,
                          "name": "ETTU Champions League, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35748,
                          "name": "World Tour, Austrian Open (MS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 35750,
                          "name": "Challenger Series 2021, Week 20, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 35753,
                          "name": "WTT Contender Tunis 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 35754,
                          "name": "ETTU Champions League, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35755,
                          "name": "ITTF Europe Top 16 2020, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 35756,
                          "name": "WTT Star Contender Ljubljana 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 35758,
                          "name": "ETTU Champions League, Stage 1, Group A",
                          "importance": 0
                        },
                        {
                          "id": 35764,
                          "name": "ETTU Europe Cup, Women, Stage 2, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35768,
                          "name": "WTT Contender Doha 2021, WD",
                          "importance": 0
                        },
                        {
                          "id": 35777,
                          "name": "Czech Open 2021, XD",
                          "importance": 0
                        },
                        {
                          "id": 35778,
                          "name": "Challenge Plus Paraguay Open 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 35790,
                          "name": "World Tour, Swedish Open (MS) 2014, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35791,
                          "name": "Japan Open (WTP) 2017",
                          "importance": 0
                        },
                        {
                          "id": 35805,
                          "name": "Feeder Vila Nova de Gaia, WS",
                          "importance": 0
                        },
                        {
                          "id": 35806,
                          "name": "ITTF Challenge, Slovenia Open 2018, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35807,
                          "name": "South American Championships 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 35811,
                          "name": "ETTU Champions League, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 35812,
                          "name": "ETTU Europe Cup, Teams, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 35816,
                          "name": "Olympic Games, Team Double matches",
                          "importance": 0
                        },
                        {
                          "id": 35818,
                          "name": "U15 European Youth Championship, Girls Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35819,
                          "name": "ETTU Europe Cup, Stage 2, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35820,
                          "name": "European Championships 2022, MS",
                          "importance": 5
                        },
                        {
                          "id": 35823,
                          "name": "Brazil Open (CH) 2017",
                          "importance": 0
                        },
                        {
                          "id": 35826,
                          "name": "ITTF World Cup 2024, Women, Group 6",
                          "importance": 0
                        },
                        {
                          "id": 35827,
                          "name": "ETTU Europe Cup, Women, Stage 1, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35831,
                          "name": "Qatar Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 35833,
                          "name": "Japan Open (SS) 2014, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35838,
                          "name": "Korea Open (WTP) 2018, Boys",
                          "importance": 0
                        },
                        {
                          "id": 35839,
                          "name": "Austrian Open 2018, MS",
                          "importance": 0
                        },
                        {
                          "id": 35844,
                          "name": "ETTU Europe Cup, Teams, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35847,
                          "name": "ETTU Europe Cup, Women, Teams, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35851,
                          "name": "Indonesia Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 35857,
                          "name": "ITTF World Tour, Qatar Open, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35861,
                          "name": "ETTU Europe Cup, Teams, 2nd Stage, Group A",
                          "importance": 0
                        },
                        {
                          "id": 35865,
                          "name": "ITTF Challenge, Polish Open 2019, Girls",
                          "importance": 0
                        },
                        {
                          "id": 35866,
                          "name": "Hong Kong Open (WT) 2019, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35869,
                          "name": "Austrian Open (MS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35881,
                          "name": "ETTU Cup",
                          "importance": 0
                        },
                        {
                          "id": 35887,
                          "name": "Czech Open 2019, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35898,
                          "name": "Olympic Tournament, Singles, Preliminary Rounds",
                          "importance": 12
                        },
                        {
                          "id": 35905,
                          "name": "World Tour, Polish Open (MS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 35906,
                          "name": "European Championships 2016, Doubles, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 35907,
                          "name": "Brazil Open (CH) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35913,
                          "name": "ETTU Champions League, Group C",
                          "importance": 0
                        },
                        {
                          "id": 35914,
                          "name": "WTT Saudi Smash 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 35915,
                          "name": "WTT Saudi Smash 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 35917,
                          "name": "WTT Saudi Smash 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 35922,
                          "name": "ITTF Challenge, Slovenia Open 2018, Boys",
                          "importance": 0
                        },
                        {
                          "id": 35931,
                          "name": "ETTU Europe Cup, Teams, 2nd Stage, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35932,
                          "name": "Swedish Open 2018, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35935,
                          "name": "ETTU Europe Cup, Women, Teams, 2nd Stage, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35937,
                          "name": "European Championships 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 35945,
                          "name": "Austrian Open (MS) 2016, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35950,
                          "name": "WTT Contender Lasko 2021, WD",
                          "importance": 0
                        },
                        {
                          "id": 35952,
                          "name": "Swedish Open (WTP) 2019, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 35956,
                          "name": "World Tour, Belgium Open (CS) 2014, Women",
                          "importance": 0
                        },
                        {
                          "id": 35959,
                          "name": "Challenger Series 2021, Week 18, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 35962,
                          "name": "Croatia Open (CH) 2017, Boys",
                          "importance": 0
                        },
                        {
                          "id": 35966,
                          "name": "Challenge Plus Portugal Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 35967,
                          "name": "ETTU Europe Cup, Stage 2, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35968,
                          "name": "Challenger Series 2021, Week 19, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 35969,
                          "name": "ETTU Champions League, Women, Stage 2, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35970,
                          "name": "ETTU Europe Cup, Teams, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35975,
                          "name": "ETTU Europe Cup, Teams, Group B",
                          "importance": 0
                        },
                        {
                          "id": 35978,
                          "name": "ETTU Champions League, Women, Stage 2, Group D",
                          "importance": 0
                        },
                        {
                          "id": 35979,
                          "name": "Challenge Plus Oman Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 35982,
                          "name": "WTT Contender Lasko 2021, XD",
                          "importance": 0
                        },
                        {
                          "id": 35985,
                          "name": "ITTF World Tour, Hungarian Open 2018, MD Qual.",
                          "importance": 0
                        },
                        {
                          "id": 35988,
                          "name": "WTT Feeder Budapest 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 35989,
                          "name": "ETTU Champions League, Women, Stage 1, Group A",
                          "importance": 0
                        },
                        {
                          "id": 35991,
                          "name": "Thailand Open (CH) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35995,
                          "name": "ETTU Europe Cup, Teams, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36003,
                          "name": "World Team Qualification Games, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36004,
                          "name": "ETTU Europe Cup, Stage 1, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36005,
                          "name": "ETTU Champions League, Women, Stage 1, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36006,
                          "name": "WTT Contender Muscat 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 36008,
                          "name": "Swedish Open (WT) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36009,
                          "name": "ETTU Europe Cup, Women, Teams, 2nd Stage, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36014,
                          "name": "ITTF Challenge, Spanish Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 36015,
                          "name": "ETTU Europe Cup, Teams, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36019,
                          "name": "ETTU Champions League, Women, Stage 2, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36023,
                          "name": "Australian Open (WTP) 2017, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36025,
                          "name": "ETTU Champions League, Women, Stage 2, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36026,
                          "name": "WTT Feeder Otocec 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 36027,
                          "name": "Challenge Plus Oman Open 2020, MS",
                          "importance": 0
                        },
                        {
                          "id": 36028,
                          "name": "Campeonato Centroamericano, WS",
                          "importance": 0
                        },
                        {
                          "id": 36029,
                          "name": "Hungarian Open 2020, WS",
                          "importance": 0
                        },
                        {
                          "id": 36032,
                          "name": "ETTU Europe Cup, Teams, Stage 2, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36034,
                          "name": "ETTU Champions League, Women, Stage 2, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36038,
                          "name": "ITTF World Tour, Hungarian Open 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36042,
                          "name": "WTT Feeder Dusseldorf 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 36043,
                          "name": "WTT Feeder Havirov 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 36044,
                          "name": "WTT Feeder Dusseldorf 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 36045,
                          "name": "ETTU Champions League, Women, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 36047,
                          "name": "WTT Feeder Dusseldorf 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 36049,
                          "name": "WTT Feeder Havirov 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 36051,
                          "name": "Japan Open (WT) 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36052,
                          "name": "Korean Open (WT) 2017, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36053,
                          "name": "ETTU Europe Cup, Women, Stage 2, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36056,
                          "name": "WTT Feeder Havirov 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 36057,
                          "name": "ETTU Europe Cup, Teams, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36060,
                          "name": "Korea Open (WTP) 2018, Doubles, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36067,
                          "name": "ITTF Belarus Open 2017, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 36069,
                          "name": "ITTF Challenge, Belarus Open 2019, WS, Main Stage",
                          "importance": 0
                        },
                        {
                          "id": 36070,
                          "name": "Slovenian Open (CH) 2017, Girls",
                          "importance": 0
                        },
                        {
                          "id": 36071,
                          "name": "WTT Feeder Havirov 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 36072,
                          "name": "World Tour, Swedish Open (MS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 36074,
                          "name": "World Tour, Kuwait Open (SS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 36077,
                          "name": "Thailand Open (CH) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36078,
                          "name": "Lat Am & Ctrl Am Championship 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 36079,
                          "name": "Polish Open (CS) 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 36082,
                          "name": "ETTU Europe Trophy, Women, Gr Final, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36083,
                          "name": "WTT Feeder Havirov 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 36086,
                          "name": "World Tour, Japan Open (SS) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36087,
                          "name": "ETTU Europe Cup, Women, Teams, 2nd Stage, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36091,
                          "name": "European Championships 2021, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36092,
                          "name": "Challenge Plus Oman Open 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 36097,
                          "name": "WTT Feeder Dusseldorf 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 36101,
                          "name": "ETTU Europe Cup, Teams, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36107,
                          "name": "WTT Feeder Havirov 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 36110,
                          "name": "ETTU Europe Cup, Stage 2, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36112,
                          "name": "WTT Contender Ljubljana 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 36121,
                          "name": "ITTF Belarus Open 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36125,
                          "name": "ETTU Champions League, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36126,
                          "name": "ETTU Europe Cup, Women, Stage 2, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36129,
                          "name": "WTT Feeder Dusseldorf 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 36130,
                          "name": "ETTU Europe Cup, Stage 1, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36135,
                          "name": "ETTU Europe Cup, Women, Stage 2, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36136,
                          "name": "WTT Star Contender Doha 2021, WD",
                          "importance": 0
                        },
                        {
                          "id": 36145,
                          "name": "World Tour, Czech Open (MS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 36150,
                          "name": "Feeder Vila Nova de Gaia, MD",
                          "importance": 0
                        },
                        {
                          "id": 36162,
                          "name": "CIS Games, MS",
                          "importance": 0
                        },
                        {
                          "id": 36163,
                          "name": "World Team Cup, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36168,
                          "name": "ETTU Europe Cup, Stage 2, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36170,
                          "name": "ETTU Champions League, Stage 1, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36172,
                          "name": "ITTF China Open 2019, XD, Quali",
                          "importance": 0
                        },
                        {
                          "id": 36175,
                          "name": "World Championship, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36176,
                          "name": "ETTU Europe Trophy, Grand Final, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36178,
                          "name": "U21 European Championship, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36185,
                          "name": "Qatar Open (WTP) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36190,
                          "name": "ETTU Europe Trophy, Grand Final, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36192,
                          "name": "ITTF Challenge, Polish Open 2019, WS, Group Stage",
                          "importance": 0
                        },
                        {
                          "id": 36194,
                          "name": "World Tour, Swedish Open (MS) 2016, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36196,
                          "name": "Austria Open (WTP) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36198,
                          "name": "World Tour, Czech Open (MS) 2016, Doubles, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 36199,
                          "name": "Master Tour",
                          "importance": 0
                        },
                        {
                          "id": 36201,
                          "name": "World Tour, Czech Open (MS) 2016, Women Doubles, Q",
                          "importance": 0
                        },
                        {
                          "id": 36203,
                          "name": "ETTU Europe Trophy, Grand Final, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36210,
                          "name": "ETTU Europe Trophy, Grand Final, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36215,
                          "name": "ETTU Europe Trophy, Grand Final 2023, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36217,
                          "name": "ETTU Europe Trophy, Grand Final 2023, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36219,
                          "name": "World Championship, Mixed Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36223,
                          "name": "WTT Contender Ljubljana 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 36224,
                          "name": "ITTF Belgium Open 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 36227,
                          "name": "ETTU Europe Cup, Teams, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36228,
                          "name": "Challenge Plus Paraguay Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 36229,
                          "name": "ETTU Europe Cup, Women, Teams, 2nd Stage, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36232,
                          "name": "ETTU Europe Cup, Teams, Stage 2, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36233,
                          "name": "ETTU Europe Cup, Teams, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36234,
                          "name": "World Tour, Swedish Open (MS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 36237,
                          "name": "Challenge Plus Canada Open 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 36238,
                          "name": "ETTU Europe Cup, Women, Stage 2, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36239,
                          "name": "ETTU Champions League, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36240,
                          "name": "ETTU Champions League, Women, Stage 1, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36241,
                          "name": "World Championship, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36242,
                          "name": "World Tour, Korea Open (SS) 2014, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36244,
                          "name": "WTT Contender Muscat 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 36245,
                          "name": "ETTU Europe Trophy, Grand Final, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36247,
                          "name": "ETTU Europe Cup, Teams, 2nd Stage, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36251,
                          "name": "World Tour, Argentina Open (CS) 2014, Women",
                          "importance": 0
                        },
                        {
                          "id": 36253,
                          "name": "ETTU Europe Trophy, Grand Final, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36254,
                          "name": "World Tour, Hungary Open (MS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 36256,
                          "name": "ETTU Champions League, Stage 1, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36257,
                          "name": "ETTU Champions League, Stage 2, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36260,
                          "name": "World Tour, Bulgaria Open (MS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36261,
                          "name": "Japan Open (WTP) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36262,
                          "name": "ETTU Champions League, Stage 2, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36263,
                          "name": "ETTU Europe Trophy, Women, Gr Final, KO stage",
                          "importance": 0
                        },
                        {
                          "id": 36265,
                          "name": "ETTU Champions League, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 36266,
                          "name": "Feeder Dusseldorf II 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 36269,
                          "name": "Australian Open (WTP) 2017, Girls",
                          "importance": 0
                        },
                        {
                          "id": 36271,
                          "name": "Bulgaria Open (WT) 2017, WD",
                          "importance": 0
                        },
                        {
                          "id": 36272,
                          "name": "ETTU Team Championships 2025, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36273,
                          "name": "Slovenian Open (CH) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36275,
                          "name": "Olympic Games, Team",
                          "importance": 7
                        },
                        {
                          "id": 36276,
                          "name": "World Tour, Swedish Open (MS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36278,
                          "name": "World Tour, Polish Open (MS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36279,
                          "name": "ETTU Champions League, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 36280,
                          "name": "Swedish Open (WTP) 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 36282,
                          "name": "European Games, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36283,
                          "name": "World Tour, China Open (SS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36284,
                          "name": "Hungarian Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 36286,
                          "name": "Challenge Plus Portugal Open 2020, XD",
                          "importance": 0
                        },
                        {
                          "id": 36287,
                          "name": "ITTF World Cup 2026, Group 1",
                          "importance": 0
                        },
                        {
                          "id": 36288,
                          "name": "ETTU Europe Cup, Women, Stage 2, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36289,
                          "name": "China Open (WTP) 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36293,
                          "name": "World Team Championships Finals 2024, Group 3",
                          "importance": 0
                        },
                        {
                          "id": 36296,
                          "name": "Asian Championships 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36300,
                          "name": "World Team Championships Finals 2024, Group 1",
                          "importance": 0
                        },
                        {
                          "id": 36304,
                          "name": "ETTU Team Championships 2025, Group G",
                          "importance": 0
                        },
                        {
                          "id": 36305,
                          "name": "European Team Championships 2021, Group G",
                          "importance": 0
                        },
                        {
                          "id": 36306,
                          "name": "World Tour, Belarus Open (CS) 2014, Women",
                          "importance": 0
                        },
                        {
                          "id": 36307,
                          "name": "ETTU Europe Cup, Women, Stage 2, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36308,
                          "name": "Austrian Open 2018, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36310,
                          "name": "European Team Championships 2021, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36312,
                          "name": "ETTU Champions League, Stage 1, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36313,
                          "name": "ETTU Europe Cup, Stage 1, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36314,
                          "name": "ETTU Europe Cup, Stage 1, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36316,
                          "name": "ETTU Team Championships 2025, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36317,
                          "name": "ETTU Team Championships 2023, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36318,
                          "name": "ITTF China Open 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 36319,
                          "name": "China Open (WTP) 2018, Doubles, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36320,
                          "name": "ETTU Champions League, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36321,
                          "name": "ETTU Champions League, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36322,
                          "name": "ETTU Team Championships 2023, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36324,
                          "name": "ETTU Champions League, Teams",
                          "importance": 0
                        },
                        {
                          "id": 36325,
                          "name": "World Tour, Belarus Open (CS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36326,
                          "name": "ETTU Champions League, Stage 2, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36328,
                          "name": "World Team Championships Finals 2024, Group 5",
                          "importance": 0
                        },
                        {
                          "id": 36329,
                          "name": "World Tour, Czech Open (MS) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36330,
                          "name": "Challenge Plus Oman Open 2020, MD",
                          "importance": 0
                        },
                        {
                          "id": 36331,
                          "name": "ETTU Champions League, Stage 1, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36334,
                          "name": "ETTU Team Championships 2023, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36335,
                          "name": "ETTU Champions League, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36336,
                          "name": "ETTU Team Championships 2025, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36337,
                          "name": "European Team Championships 2021, Group F",
                          "importance": 0
                        },
                        {
                          "id": 36338,
                          "name": "World Team Championships Finals 2024, Group 4",
                          "importance": 0
                        },
                        {
                          "id": 36339,
                          "name": "Polish Open (CS) 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36340,
                          "name": "World Tour, Czech Open (MS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36341,
                          "name": "WTT Feeder Dusseldorf III 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 36342,
                          "name": "World Tour, Swedish Open (MS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36343,
                          "name": "European Team Championships 2021, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36344,
                          "name": "World Team Championships Finals 2024, Group 6",
                          "importance": 0
                        },
                        {
                          "id": 36345,
                          "name": "Challenge Plus Canada Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 36346,
                          "name": "European Championships 2016, Mixed Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36348,
                          "name": "World Tour, Czech Open (MS) 2014, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36349,
                          "name": "ETTU Team Championships 2025, Group H",
                          "importance": 0
                        },
                        {
                          "id": 36350,
                          "name": "European Team Championships 2021, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36351,
                          "name": "World Tour, Korea Open (SS) 2015, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36352,
                          "name": "Hungarian Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 36354,
                          "name": "European Team Championships 2021, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36355,
                          "name": "European Team Championships 2021, Group H",
                          "importance": 0
                        },
                        {
                          "id": 36357,
                          "name": "ETTU Team Championships 2023, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36358,
                          "name": "Hungarian Open 2020, WD",
                          "importance": 0
                        },
                        {
                          "id": 36359,
                          "name": "ETTU Champions League, Stage 2, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36360,
                          "name": "Swedish Open (WT) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36361,
                          "name": "Japan Open (SS) 2014, Womens Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36362,
                          "name": "ETTU Europe Cup, Women, Stage 2, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36363,
                          "name": "World Tour, Kuwait Open (SS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36364,
                          "name": "ETTU Team Championships 2025, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36365,
                          "name": "European Team Championships 2021, Group E",
                          "importance": 0
                        },
                        {
                          "id": 36366,
                          "name": "World Team Championships Finals 2024, Group 8",
                          "importance": 0
                        },
                        {
                          "id": 36367,
                          "name": "ITTF Belgium Open 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36370,
                          "name": "World Tour, Kuwait Open (SS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36371,
                          "name": "China Open (SS) 2014, Womens Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36374,
                          "name": "ETTU Europe Cup, Women, Stage 2, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36377,
                          "name": "European Team Championships 2021, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36381,
                          "name": "Hungarian Open 2020, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36382,
                          "name": "China Open (WTP) 2018, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36383,
                          "name": "ETTU Team Championships 2023, Group E",
                          "importance": 0
                        },
                        {
                          "id": 36384,
                          "name": "Asian Championships 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36385,
                          "name": "World Team Cup, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36388,
                          "name": "ETTU Champions League, Stage 2, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36389,
                          "name": "ETTU Champions League, Stage 2, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36390,
                          "name": "ETTU Team Championships 2023, Group F",
                          "importance": 0
                        },
                        {
                          "id": 36391,
                          "name": "World Tour, Qatar Open (SS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36392,
                          "name": "ETTU Europe Cup, Women, Stage 2, Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 36393,
                          "name": "World Tour, Belgium Open (CH) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36394,
                          "name": "ETTU Team Championships 2025, Group E",
                          "importance": 0
                        },
                        {
                          "id": 36396,
                          "name": "China Open (WTP) 2018, Women Doubles, Qual.",
                          "importance": 0
                        },
                        {
                          "id": 36398,
                          "name": "World Team Championships Finals 2024, Group 7",
                          "importance": 0
                        },
                        {
                          "id": 36399,
                          "name": "World Tour, German Open (SS) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36401,
                          "name": "ETTU Team Championships 2023, Group G",
                          "importance": 0
                        },
                        {
                          "id": 36404,
                          "name": "German Open  2020, MD",
                          "importance": 0
                        },
                        {
                          "id": 36407,
                          "name": "German Open  2020, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36408,
                          "name": "ETTU Team Championships 2025, Group F",
                          "importance": 0
                        },
                        {
                          "id": 36409,
                          "name": "World Championship 2017, Women Doubles, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 36411,
                          "name": "ETTU Team Championships 2023, Group H",
                          "importance": 0
                        },
                        {
                          "id": 36412,
                          "name": "European Championships 2021, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36413,
                          "name": "U21 European Championship 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 36417,
                          "name": "ITTF World Cup 2024, Women, Group 10",
                          "importance": 0
                        },
                        {
                          "id": 36418,
                          "name": "ITTF World Cup 2024, Women, Group 12",
                          "importance": 0
                        },
                        {
                          "id": 36419,
                          "name": "ETTU Europe Cup, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 36422,
                          "name": "ITTF World Cup 2026, Women, Group 11",
                          "importance": 0
                        },
                        {
                          "id": 36423,
                          "name": "Japan Open (WTP) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36424,
                          "name": "ITTF World Cup 2024, Women, Group 16",
                          "importance": 0
                        },
                        {
                          "id": 36425,
                          "name": "World Championship 2019, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36427,
                          "name": "ITTF Belgium Open 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36428,
                          "name": "ITTF World Cup 2024, Women, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 36429,
                          "name": "World Tour, Swedish Open (MS) 2014, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36430,
                          "name": "World Tour, China Open (SS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36434,
                          "name": "China Open (WTP) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36435,
                          "name": "World Tour, Hungary Open (MS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36437,
                          "name": "ITTF World Cup 2025, Women, Group 8",
                          "importance": 0
                        },
                        {
                          "id": 36438,
                          "name": "ITTF World Tour, Hungarian Open 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 36440,
                          "name": "Swedish Open (WT) 2017, WD Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36441,
                          "name": "ETTU Europe Trophy, Women, Gr Final, Pl. 7-10",
                          "importance": 0
                        },
                        {
                          "id": 36443,
                          "name": "ETTU Champions League, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 36446,
                          "name": "European Team Championships 2023, Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 36447,
                          "name": "Korea Open (WTP) 2018, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36452,
                          "name": "World Tour, Spanish Open (MS) 2014, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36454,
                          "name": "ITTF World Junior Championships 2017, XD",
                          "importance": 0
                        },
                        {
                          "id": 36456,
                          "name": "World Team Championships Finals 2024, Group 2",
                          "importance": 0
                        },
                        {
                          "id": 36458,
                          "name": "World Tour, German Open (SS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36460,
                          "name": "Austrian Open 2018, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36462,
                          "name": "ETTU Europe Trophy, Women, Gr Final 2023, KO stage",
                          "importance": 0
                        },
                        {
                          "id": 36466,
                          "name": "Korean Open (WT) 2017, Doubles Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36467,
                          "name": "WTT Contender Tunis 2021, XD",
                          "importance": 0
                        },
                        {
                          "id": 36469,
                          "name": "Korea Open (WTP) 2018, Women Doubles, Qual.",
                          "importance": 0
                        },
                        {
                          "id": 36470,
                          "name": "ETTU Champions League, Stage 2, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36471,
                          "name": "European Team Championships 2021, Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 36472,
                          "name": "ETTU Champions League, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36473,
                          "name": "ETTU Europe Cup, Teams, Group D, Round 2",
                          "importance": 0
                        },
                        {
                          "id": 36474,
                          "name": "ETTU Champions League, Stage 1, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36475,
                          "name": "ETTU Europe Cup, Teams, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36476,
                          "name": "ETTU Champions League 2023, Stage 1, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36479,
                          "name": "WTT Contender Lima 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 36482,
                          "name": "ETTU Champions League, Stage 2, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36484,
                          "name": "World Tour, China Open (SS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36485,
                          "name": "Hungarian Open 2020, MD",
                          "importance": 0
                        },
                        {
                          "id": 36491,
                          "name": "Korea Open 2019, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36496,
                          "name": "German Open (WTP) 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 36499,
                          "name": "World Tour, Polish Open (MS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36501,
                          "name": "Hong Kong Open (WT) 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36503,
                          "name": "Hong Kong Open (WT) 2019, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36506,
                          "name": "World Tour, Russian Open (MS) 2014, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36507,
                          "name": "Australian Open (WTP) 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36510,
                          "name": "Swedish Open 2018, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36511,
                          "name": "Hungarian Open 2019, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36515,
                          "name": "World Tour, German Open (SS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36517,
                          "name": "World Team Qualification Games, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36520,
                          "name": "German Open  2020, WD",
                          "importance": 0
                        },
                        {
                          "id": 36521,
                          "name": "German Open  2020, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36522,
                          "name": "Qatar Open (WTP) 2018, WD Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36523,
                          "name": "Hungarian Open (WT) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 36526,
                          "name": "ETTU Champions League, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36527,
                          "name": "ETTU Europe Cup, Teams, Group C, Round 2",
                          "importance": 0
                        },
                        {
                          "id": 36528,
                          "name": "ETTU Champions League, Stage 1, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36529,
                          "name": "ETTU Europe Cup, Teams, Stage 2, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36530,
                          "name": "European Championships 2018, (WD)",
                          "importance": 0
                        },
                        {
                          "id": 36531,
                          "name": "ITTF Challenge, Polish Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 36533,
                          "name": "Hungarian Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 36537,
                          "name": "Australian Open (WTP) 2018, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36538,
                          "name": "World Team Championships Finals 2024, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 36544,
                          "name": "World Championship 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 36545,
                          "name": "World Tour, Hungary Open (MS) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36547,
                          "name": "ITTF World Tour, Hungarian Open 2018, WD",
                          "importance": 0
                        },
                        {
                          "id": 36548,
                          "name": "ETTU Europe Cup, Teams, Group B, Round 2",
                          "importance": 0
                        },
                        {
                          "id": 36549,
                          "name": "World Championships 2021, XD",
                          "importance": 0
                        },
                        {
                          "id": 36550,
                          "name": "ETTU Europe Cup, Teams, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36551,
                          "name": "Belarus Open 2018, MD",
                          "importance": 0
                        },
                        {
                          "id": 36552,
                          "name": "ETTU Champions League 2023, Stage 1, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36553,
                          "name": "ETTU Europe Cup, Teams, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36554,
                          "name": "Hong Kong Open (WT) 2018, Doubles, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36555,
                          "name": "European Championships 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36556,
                          "name": "World Tour, Korea Open (SS) 2016, Women Quali.",
                          "importance": 0
                        },
                        {
                          "id": 36557,
                          "name": "ETTU Europe Cup, Teams, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36558,
                          "name": "ETTU Champions League 2023, Stage 1, Group A",
                          "importance": 0
                        },
                        {
                          "id": 36559,
                          "name": "ITTF World Tour, German Open, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36560,
                          "name": "ETTU Champions League, Stage 1, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36561,
                          "name": "ETTU Europe Cup, Teams, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36562,
                          "name": "China Open (WTP) 2018, Mixed Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36564,
                          "name": "China Open (SS) 2014",
                          "importance": 0
                        },
                        {
                          "id": 36567,
                          "name": "ETTU Champions League, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 36570,
                          "name": "Thailand Open (CH) 2017",
                          "importance": 0
                        },
                        {
                          "id": 36571,
                          "name": "World Tour, Korea Open (SS) 2014, Womens Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36572,
                          "name": "Asian Championships 2017, Mixed Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36574,
                          "name": "German Open (WTP) 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 36576,
                          "name": "Qatar Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 36577,
                          "name": "ITTF World Tour, Hungarian Open 2018, WD Qual.",
                          "importance": 0
                        },
                        {
                          "id": 36582,
                          "name": "Hungarian Open (WT) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36583,
                          "name": "German Open (WTP) 2019, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36585,
                          "name": "Czech Open (WT) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36586,
                          "name": "ETTU Europe Cup, Teams, Stage 2, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36588,
                          "name": "ITTF Belgium Open 2018, (WD)",
                          "importance": 0
                        },
                        {
                          "id": 36589,
                          "name": "Bulgaria Open (WT) 2017, MD",
                          "importance": 0
                        },
                        {
                          "id": 36590,
                          "name": "World Tour, Kuwait Open (SS) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36591,
                          "name": "ETTU Europe Cup, Teams, Group D",
                          "importance": 0
                        },
                        {
                          "id": 36593,
                          "name": "ETTU Europe Cup, Teams, Group C",
                          "importance": 0
                        },
                        {
                          "id": 36595,
                          "name": "Qatar Open (WTP) 2018, Doubles Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36598,
                          "name": "ETTU Europe Cup, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 36599,
                          "name": "World Tour, Kuwait Open (SS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36600,
                          "name": "Qatar Open (WTP) 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36602,
                          "name": "Challenge Plus Portugal Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 36603,
                          "name": "Qatar Open 2020, MD",
                          "importance": 0
                        },
                        {
                          "id": 36604,
                          "name": "German Open (WTP) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36607,
                          "name": "China Open (WTP) 2018, Mixed Doubles Qual.",
                          "importance": 0
                        },
                        {
                          "id": 36610,
                          "name": "World Tour, Swedish Open (MS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 36628,
                          "name": "Austrian Open 2018, MD",
                          "importance": 0
                        },
                        {
                          "id": 36632,
                          "name": "German Open (WTP) 2018, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36635,
                          "name": "Austrian Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 36642,
                          "name": "China Open (SS) 2014, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36650,
                          "name": "ETTU Champions League 2023, Stage 1, Group B",
                          "importance": 0
                        },
                        {
                          "id": 36653,
                          "name": "ETTU Champions League 2023, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 36654,
                          "name": "ITTF World Tour, German Open, Womens Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36655,
                          "name": "ITTF Challenge, Polish Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 36663,
                          "name": "German Open (WTP) 2018, Women Doubles, Qual.",
                          "importance": 0
                        },
                        {
                          "id": 36664,
                          "name": "ETTU Europe Trophy, Grand Final, KO-stage",
                          "importance": 0
                        },
                        {
                          "id": 36675,
                          "name": "Japan Open (WTP) 2017, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36677,
                          "name": "ETTU Team Championships 2025, Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 36678,
                          "name": "Hungarian Open 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 36679,
                          "name": "ETTU Europe Cup, Teams, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 36683,
                          "name": "Belarus Open 2018, WD",
                          "importance": 0
                        },
                        {
                          "id": 36689,
                          "name": "German Open (WTP) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36692,
                          "name": "Korean Open (WT) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36693,
                          "name": "Hungarian Open (WT) 2017, Doubles Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36694,
                          "name": "WTT Feeder Dusseldorf III 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 36696,
                          "name": "ETTU Europe Trophy, Grand Final 2023, KO stage",
                          "importance": 0
                        },
                        {
                          "id": 36701,
                          "name": "World Tour, Japan Open (SS) 2015, Doubles Quali.",
                          "importance": 0
                        },
                        {
                          "id": 36705,
                          "name": "WTT Singapore Smash 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 36710,
                          "name": "ETTU Europe Trophy, Gr Final, Placement 5-8",
                          "importance": 0
                        },
                        {
                          "id": 36711,
                          "name": "ETTU Europe Trophy, Grand Final, KO stage",
                          "importance": 0
                        },
                        {
                          "id": 36712,
                          "name": "Singapore Smash 2026, WD",
                          "importance": 0
                        },
                        {
                          "id": 36714,
                          "name": "ETTU Europe Trophy, Gr Final, Placement 9-12",
                          "importance": 0
                        },
                        {
                          "id": 36715,
                          "name": "Korean Open (WT) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36716,
                          "name": "Challenge Plus Oman Open 2020, WD",
                          "importance": 0
                        },
                        {
                          "id": 36725,
                          "name": "Australian Open (WTP) 2018, Mixed Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36726,
                          "name": "WTT Contender Zagreb 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 36729,
                          "name": "ETTU Europe Cup, Teams, Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 36732,
                          "name": "Challenge Plus Portugal Open 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 36734,
                          "name": "World Tour, German Open (SS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36738,
                          "name": "World Tour, Bulgaria Open (MS) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36749,
                          "name": "ETTU Europe Cup, Teams, Group A, Round 2",
                          "importance": 0
                        },
                        {
                          "id": 36754,
                          "name": "ETTU Europe Cup, Teams, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 36772,
                          "name": "European Championships 2018, (MS)",
                          "importance": 0
                        },
                        {
                          "id": 36779,
                          "name": "World Tour, Swedish Open (MS) 2014, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36788,
                          "name": "Singapore Smash 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 36789,
                          "name": "World Tour, Hungary Open (CS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 36790,
                          "name": "Qatar Open 2019, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36796,
                          "name": "ITTF World Tour, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36798,
                          "name": "WTT Singapore Smash 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 36800,
                          "name": "ITTF World Tour, Grand Finals 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36801,
                          "name": "ITTF World Tour, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36802,
                          "name": "WTT Contender Zagreb 2022, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 36809,
                          "name": "European Championships 2016, Mixed Doubles, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 36814,
                          "name": "WTT Singapore Smash 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 36815,
                          "name": "ITTF Challenge, Thailand Open 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 36817,
                          "name": "World Tour, Austrian Open (MS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36818,
                          "name": "World Championship 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 36822,
                          "name": "World Tour, Polish Open (MS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36826,
                          "name": "World Championship 2017, Mixed Doubles, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 36830,
                          "name": "World Championships 2021, WD",
                          "importance": 0
                        },
                        {
                          "id": 36838,
                          "name": "World Tour, Belarus Open (CS) 2014",
                          "importance": 0
                        },
                        {
                          "id": 36844,
                          "name": "Austria Open (WTP) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36851,
                          "name": "World Tour, Austrian Open (MS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36858,
                          "name": "Thailand Open (CH) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 36862,
                          "name": "World Tour, Swedish Open (MS) 2015, Doubles, Quali",
                          "importance": 0
                        },
                        {
                          "id": 36865,
                          "name": "ITTF Challenge, Polish Open 2020, WS, Quali",
                          "importance": 0
                        },
                        {
                          "id": 36878,
                          "name": "Qatar Open (WTP) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36891,
                          "name": "Qatar Open (WTP) 2017, Doubles Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36894,
                          "name": "European Championships 2021, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36907,
                          "name": "European Championships 2022, MD",
                          "importance": 2
                        },
                        {
                          "id": 36910,
                          "name": "World Tour, Qatar Open (SS) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36912,
                          "name": "WTT Feeder Otocec 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 36915,
                          "name": "WTT Star Contender Doha 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 36918,
                          "name": "ITTF Challenge, Slovenia Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 36924,
                          "name": "ETTU Europe Top 16 Cup 2023",
                          "importance": 0
                        },
                        {
                          "id": 36927,
                          "name": "World Tour, Polish Open (CS) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36932,
                          "name": "WTT Singapore Smash 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 36937,
                          "name": "Singapore Smash 2026, MD",
                          "importance": 0
                        },
                        {
                          "id": 36942,
                          "name": "German Open (WTP) 2017, Doubles, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 36953,
                          "name": "Lat Am & Ctrl Am Championship 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 36959,
                          "name": "ITTF Europe Top 16 2020, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 36964,
                          "name": "WTT Contender Budapest 2021, MD",
                          "importance": 0
                        },
                        {
                          "id": 36976,
                          "name": "ITTF Europe Top 16 2019, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 36985,
                          "name": "WTT Contender Zagreb 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 36993,
                          "name": "WTT Contender Lima 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 36994,
                          "name": "Singapore Smash 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 37003,
                          "name": "WTT Singapore Smash 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 37019,
                          "name": "WTT Singapore Smash 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 37028,
                          "name": "Chile Open (CH) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 37092,
                          "name": "ITTF Challenge, Croatia Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 37107,
                          "name": "European Championships 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 37109,
                          "name": "U18 European Youth Championship, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 37119,
                          "name": "WTT Contender Tunis 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 37122,
                          "name": "Japan Open (WT) 2018, Mixed Doubles",
                          "importance": 0
                        },
                        {
                          "id": 37160,
                          "name": "European Championships 2018, (MD)",
                          "importance": 0
                        },
                        {
                          "id": 37167,
                          "name": "European Championships 2018, (MD), Qualification",
                          "importance": 0
                        },
                        {
                          "id": 37173,
                          "name": "Bulgaria Open (WT) 2018, MD",
                          "importance": 0
                        },
                        {
                          "id": 37185,
                          "name": "World Championship 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 37453,
                          "name": "WTT Contender Muscat 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 37457,
                          "name": "European Championships 2021, WS",
                          "importance": 0
                        },
                        {
                          "id": 37458,
                          "name": "European Championships 2022, WD",
                          "importance": 1
                        },
                        {
                          "id": 37459,
                          "name": "WTT Contender Muscat 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 37463,
                          "name": "WTT Contender Muscat 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 37464,
                          "name": "Challenger Series 2022, Week 9, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 37474,
                          "name": "Setka Cup, Women",
                          "importance": 0
                        },
                        {
                          "id": 37477,
                          "name": "World Team Championship 2018, C'ship Division, WS",
                          "importance": 0
                        },
                        {
                          "id": 37481,
                          "name": "WTT Contender Muscat 2026, WS",
                          "importance": 0
                        },
                        {
                          "id": 37482,
                          "name": "WTT Contender Muscat 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 37483,
                          "name": "WTT Contender Muscat 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 37484,
                          "name": "WTT Contender Muscat 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 37485,
                          "name": "WTT Contender Budapest 2021, WD Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 37486,
                          "name": "WTT Contender Muscat 2022, WD Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 37490,
                          "name": "WTT Contender Muscat 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 37493,
                          "name": "WTT Contender Muscat 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 37496,
                          "name": "WTT Contender Muscat 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 37501,
                          "name": "WTT Contender Muscat 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 37512,
                          "name": "WTT Contender Zagreb, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 37513,
                          "name": "WTT Contender Zagreb, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 37514,
                          "name": "WTT Contender Zagreb, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 37515,
                          "name": "WTT Contender Zagreb, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 37521,
                          "name": "WTT Contender Zagreb, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 37536,
                          "name": "WTT Contender Zagreb, WD",
                          "importance": 0
                        },
                        {
                          "id": 37537,
                          "name": "WTT Contender Zagreb, MS",
                          "importance": 0
                        },
                        {
                          "id": 37539,
                          "name": "World Tour, Swedish Open (MS) 2016, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 37544,
                          "name": "WTT Contender Zagreb, MD",
                          "importance": 0
                        },
                        {
                          "id": 37545,
                          "name": "ITTF World Tour, Hungarian Open 2018, Girls",
                          "importance": 0
                        },
                        {
                          "id": 37549,
                          "name": "WTT Contender Zagreb, WS",
                          "importance": 0
                        },
                        {
                          "id": 37557,
                          "name": "Czech Open (WT) 2018, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 37560,
                          "name": "Asian Championships 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 37561,
                          "name": "ITTF Challenge, Belarus Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 37574,
                          "name": "ITTF Challenge, Spanish Open 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 37580,
                          "name": "WTT Contender Zagreb 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 37586,
                          "name": "Challenger Series 2022, Week 9, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 37594,
                          "name": "WTT Contender Budapest 2021, WD",
                          "importance": 0
                        },
                        {
                          "id": 37595,
                          "name": "Challenger Series 2022, Week 2, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 37599,
                          "name": "WTT Contender Doha 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 37619,
                          "name": "Czech Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 37633,
                          "name": "WTT Contender Doha 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 37639,
                          "name": "WTT Contender Muscat 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 37646,
                          "name": "German Open (WTP) 2019, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 37654,
                          "name": "World Championships 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 37657,
                          "name": "World Championships 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 37658,
                          "name": "WTT Contender Almaty 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 37659,
                          "name": "World Championships 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 37668,
                          "name": "Kazakhstan International Open 2021, MD",
                          "importance": 0
                        },
                        {
                          "id": 37670,
                          "name": "Challenger Series 2022, Week 3, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 37673,
                          "name": "Feeder Dusseldorf II 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 37676,
                          "name": "Feeder Dusseldorf II 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 37680,
                          "name": "Feeder Dusseldorf II 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 37692,
                          "name": "ITTF Challenge, Spanish Open 2017, Boys",
                          "importance": 0
                        },
                        {
                          "id": 37694,
                          "name": "WTT Contender Lima 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 37700,
                          "name": "Challenger Series 2020, Week 21, Session 3",
                          "importance": 0
                        },
                        {
                          "id": 37706,
                          "name": "ITTF European Championships Qual. 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 37724,
                          "name": "ITTF World Tour, Hungarian Open 2018, Boys",
                          "importance": 0
                        },
                        {
                          "id": 37732,
                          "name": "ITTF Belgium Open 2018, (MD)",
                          "importance": 0
                        },
                        {
                          "id": 37817,
                          "name": "South American Championships 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 37818,
                          "name": "Challenger Series 2022, Week 30, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 37820,
                          "name": "Challenger Series 2022, Week 30, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 37821,
                          "name": "South American Championships 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 37822,
                          "name": "Challenger Series 2021, Week 35, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 37849,
                          "name": "ETTU Cup, Women",
                          "importance": 0
                        },
                        {
                          "id": 37857,
                          "name": "Challenger Series 2021, Week 18, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 37858,
                          "name": "ITTF Belarus Open 2017, Girls",
                          "importance": 0
                        },
                        {
                          "id": 37861,
                          "name": "Croatia Open (CH) 2017",
                          "importance": 0
                        },
                        {
                          "id": 37863,
                          "name": "ETTU Europe Cup, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 37877,
                          "name": "German Open (WTP) 2019, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 37887,
                          "name": "ETTU Europe Trophy, Women, Gr Final 2023, Group A",
                          "importance": 0
                        },
                        {
                          "id": 37888,
                          "name": "ETTU Europe Trophy, Women, Gr Final 2023, Group B",
                          "importance": 0
                        },
                        {
                          "id": 37891,
                          "name": "WTT Singapore Smash 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 37893,
                          "name": "WTT Singapore Smash 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 37894,
                          "name": "U21 European Championship 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 37931,
                          "name": "Challenger Series 2021, Week 51, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 37942,
                          "name": "Singapore Smash 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 37955,
                          "name": "ETTU U21 European Championship 2021, WD",
                          "importance": 0
                        },
                        {
                          "id": 37987,
                          "name": "European University Table Tennis Championship, WS",
                          "importance": 0
                        },
                        {
                          "id": 38087,
                          "name": "Challenger Series 2021, Week 50, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 38095,
                          "name": "Challenger Series 2021, Week 50, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 38138,
                          "name": "ETTU Team Championship 2022, Q, Women, Singles",
                          "importance": 0
                        },
                        {
                          "id": 38147,
                          "name": "Balkan Championships, WS",
                          "importance": 0
                        },
                        {
                          "id": 38148,
                          "name": "ITTF Challenge, Spanish Open 2019, Girls",
                          "importance": 0
                        },
                        {
                          "id": 38152,
                          "name": "ETTU Team Championship 2022, Q, Women, Teams",
                          "importance": 0
                        },
                        {
                          "id": 38153,
                          "name": "Olympic Qualification, World Singles, Women",
                          "importance": 0
                        },
                        {
                          "id": 38157,
                          "name": "European Team Championships 2021, Qual., Women",
                          "importance": 0
                        },
                        {
                          "id": 38158,
                          "name": "European Championships 2021, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 38169,
                          "name": "European Olympic Qualification Tournament",
                          "importance": 0
                        },
                        {
                          "id": 38174,
                          "name": "European Olympic Qualification Tournament, Women",
                          "importance": 0
                        },
                        {
                          "id": 38176,
                          "name": "Olympic Qualification, World Singles",
                          "importance": 0
                        },
                        {
                          "id": 38178,
                          "name": "Hungarian Open (WT) 2017, Women Qualification",
                          "importance": 0
                        },
                        {
                          "id": 38304,
                          "name": "ETTU Champions League, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 38381,
                          "name": "Challenger Series 2021, Week 43, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 38382,
                          "name": "Challenger Series 2021, Week 43, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 38393,
                          "name": "WTT Contender Tunis 2021, MD",
                          "importance": 0
                        },
                        {
                          "id": 38395,
                          "name": "WTT Contender Tunis 2021, MS",
                          "importance": 0
                        },
                        {
                          "id": 38400,
                          "name": "WTT Contender Tunis 2021, MS Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 38402,
                          "name": "WTT Contender Tunis 2021, WD",
                          "importance": 0
                        },
                        {
                          "id": 38403,
                          "name": "WTT Contender Tunis 2021, WS",
                          "importance": 0
                        },
                        {
                          "id": 38404,
                          "name": "WTT Contender Tunis  2021, MD Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 38405,
                          "name": "WTT Contender Tunis 2021, WS Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 38406,
                          "name": "WTT Contender Tunis 2021, WD Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 38408,
                          "name": "ITTF World Junior Championships, Girls Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38475,
                          "name": "ITTF World Cup 2020, Group D",
                          "importance": 0
                        },
                        {
                          "id": 38515,
                          "name": "CIS Games, WS",
                          "importance": 0
                        },
                        {
                          "id": 38516,
                          "name": "Belarus Open 2018, Boys",
                          "importance": 0
                        },
                        {
                          "id": 38518,
                          "name": "Challenger Series 2021, Week 36, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 38715,
                          "name": "Challenger Series 2021, Week 32, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 38716,
                          "name": "Australian Open (WTP) 2017, Boys",
                          "importance": 0
                        },
                        {
                          "id": 39016,
                          "name": "Olympic Tournament, Mixed Doubles",
                          "importance": 10
                        },
                        {
                          "id": 39019,
                          "name": "ITTF Africa Top 16 Cup, MS",
                          "importance": 0
                        },
                        {
                          "id": 39022,
                          "name": "Asian Olympic Qualification Tournament",
                          "importance": 0
                        },
                        {
                          "id": 39024,
                          "name": "Olympic Tournament, Singles, Women, Prelim. Rounds",
                          "importance": 0
                        },
                        {
                          "id": 39029,
                          "name": "Olympic Tournament Women, Singles, Prelim. Rounds",
                          "importance": 9
                        },
                        {
                          "id": 39032,
                          "name": "Latin America Olympic Qual. Tournament, Women",
                          "importance": 0
                        },
                        {
                          "id": 39041,
                          "name": "Lat Am & Ctrl Am Championship 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 39043,
                          "name": "Asian Olympic Qualification Tournament, Women",
                          "importance": 0
                        },
                        {
                          "id": 39044,
                          "name": "Challenge Plus Canada Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 39732,
                          "name": "Challenge Plus Portugal Open 2020, MS, Quali",
                          "importance": 0
                        },
                        {
                          "id": 39733,
                          "name": "Challenge Plus Portugal Open 2020, MD, Quali",
                          "importance": 0
                        },
                        {
                          "id": 39734,
                          "name": "Challenge Plus Portugal Open 2020, Girls",
                          "importance": 0
                        },
                        {
                          "id": 39738,
                          "name": "Challenge Plus Portugal Open 2020, WS, Quali",
                          "importance": 0
                        },
                        {
                          "id": 39740,
                          "name": "Hong Kong Open (WT) 2019, Singles",
                          "importance": 0
                        },
                        {
                          "id": 39741,
                          "name": "Hong Kong Open (WT) 2019, Women",
                          "importance": 0
                        },
                        {
                          "id": 39742,
                          "name": "ITTF Challenge, Slovenia Open 2019, Boys",
                          "importance": 0
                        },
                        {
                          "id": 39744,
                          "name": "Hong Kong Open (WT) 2019, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39745,
                          "name": "German Open  2020, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 39746,
                          "name": "Hong Kong Open (WT) 2019, Mixed Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39747,
                          "name": "Asian Championships 2017",
                          "importance": 0
                        },
                        {
                          "id": 39750,
                          "name": "Indonesia Open 2019, Boys",
                          "importance": 0
                        },
                        {
                          "id": 39751,
                          "name": "ITTF Challenge, Belarus Open 2019, MS, Group Stage",
                          "importance": 0
                        },
                        {
                          "id": 39753,
                          "name": "ITTF World Cup 2018, Women, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 39754,
                          "name": "Challenge Plus Portugal Open 2020, XD, Quali",
                          "importance": 0
                        },
                        {
                          "id": 39771,
                          "name": "World Tour, Polish Open (CS) 2017, Girls",
                          "importance": 0
                        },
                        {
                          "id": 39775,
                          "name": "Hong Kong Open (WT) 2019, Mixed Doubles, Qual.",
                          "importance": 0
                        },
                        {
                          "id": 39778,
                          "name": "ITTF World Cup 2018, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 39780,
                          "name": "ITTF World Cup 2018, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 39781,
                          "name": "World Tour, Belarus Open (CS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 39782,
                          "name": "World Tour, Belarus Open (CS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 39783,
                          "name": "ITTF Challenge, Spanish Open 2018",
                          "importance": 0
                        },
                        {
                          "id": 39784,
                          "name": "World Tour, Belarus Open (CS) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39785,
                          "name": "Hong Kong Open (WT) 2018, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 39789,
                          "name": "World Tour, China Open (SS) 2015, Women Quali.",
                          "importance": 0
                        },
                        {
                          "id": 39791,
                          "name": "ITTF World Tour, Hungarian Open 2018",
                          "importance": 0
                        },
                        {
                          "id": 39793,
                          "name": "Hong Kong Open (WT) 2019, Women, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 39803,
                          "name": "ITTF China Open 2019, WD, Quali",
                          "importance": 0
                        },
                        {
                          "id": 39804,
                          "name": "ITTF World Tour, Hungarian Open 2018, Qual.",
                          "importance": 0
                        },
                        {
                          "id": 39810,
                          "name": "ITTF World Tour, Grand Finals 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 39811,
                          "name": "ITTF World Tour, Grand Finals 2015",
                          "importance": 0
                        },
                        {
                          "id": 39812,
                          "name": "Hong Kong Open (WT) 2019, Doubles, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 39815,
                          "name": "ITTF World Tour, Grand Finals 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39820,
                          "name": "Commonwealth Games 2014 Team, WS",
                          "importance": 0
                        },
                        {
                          "id": 39821,
                          "name": "ITTF World Cup 2014, Group B",
                          "importance": 0
                        },
                        {
                          "id": 39824,
                          "name": "World Tour, Czech Open (MS) 2016, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 39827,
                          "name": "China Open (WTP) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39828,
                          "name": "World Tour, Czech Open (MS) 2016, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 39830,
                          "name": "European Championships 2018, (WS), Qualification",
                          "importance": 0
                        },
                        {
                          "id": 39831,
                          "name": "Croatia Open (CH) 2017, Girls",
                          "importance": 0
                        },
                        {
                          "id": 39832,
                          "name": "Croatia Open (CH) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39834,
                          "name": "Hong Kong Open (WT) 2018",
                          "importance": 0
                        },
                        {
                          "id": 39835,
                          "name": "ITTF World Junior Championships 2017, Girls Doubl.",
                          "importance": 0
                        },
                        {
                          "id": 39837,
                          "name": "ITTF Challenge, Thailand Open 2019, Boys",
                          "importance": 0
                        },
                        {
                          "id": 39838,
                          "name": "ITTF Challenge, Thailand Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 39839,
                          "name": "World Team Qualification Games, Women, Singles",
                          "importance": 0
                        },
                        {
                          "id": 39840,
                          "name": "Brazil Open (CH) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 39842,
                          "name": "World Team Qualification Games, Singles",
                          "importance": 0
                        },
                        {
                          "id": 39845,
                          "name": "German Open  2020, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 39846,
                          "name": "World Tour, Korea Open (SS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 39849,
                          "name": "Austrian Open (MS) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39850,
                          "name": "World Championship 2019, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 39851,
                          "name": "ITTF Challenge, Spanish Open 2017, Girls",
                          "importance": 0
                        },
                        {
                          "id": 39852,
                          "name": "World Tour, Japan Open (SS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39854,
                          "name": "European Championships 2016, Women Doubles, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 39856,
                          "name": "European Championships, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 39859,
                          "name": "World Tour, Swedish Open (MS) 2015, WD, Quali",
                          "importance": 0
                        },
                        {
                          "id": 39862,
                          "name": "Chile Open (CH) 2017, Boys",
                          "importance": 0
                        },
                        {
                          "id": 39865,
                          "name": "China Open (WTP) 2017, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 39866,
                          "name": "Europe Youth Top-10, Boys",
                          "importance": 0
                        },
                        {
                          "id": 39868,
                          "name": "Europe Youth Top-10, Girls",
                          "importance": 0
                        },
                        {
                          "id": 39869,
                          "name": "World Tour, Austrian Open (MS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 39870,
                          "name": "ITTF Challenge, Croatia Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 39873,
                          "name": "World Tour, Qatar Open (SS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 39876,
                          "name": "World Tour, Swedish Open (MS) 2015, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 39878,
                          "name": "World Tour, Spanish Open (MS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39879,
                          "name": "Challenger Series 2017, Week 17, Women",
                          "importance": 0
                        },
                        {
                          "id": 39881,
                          "name": "ITTF Challenge, Croatia Open 2019, Boys",
                          "importance": 0
                        },
                        {
                          "id": 39882,
                          "name": "ITTF Challenge, Croatia Open 2019, Girls",
                          "importance": 0
                        },
                        {
                          "id": 39887,
                          "name": "Challenger Series 2016, Week 39 Session 2, Women",
                          "importance": 0
                        },
                        {
                          "id": 39888,
                          "name": "Qatar Open 2020, MS",
                          "importance": 0
                        },
                        {
                          "id": 39889,
                          "name": "Challenger Series 2016, Week 48 Session 1",
                          "importance": 0
                        },
                        {
                          "id": 39890,
                          "name": "ITTF World Tour, Grand Finals 2017",
                          "importance": 0
                        },
                        {
                          "id": 39891,
                          "name": "ITTF Challenge, Croatia Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 39894,
                          "name": "ITTF World Cup 2015, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 39895,
                          "name": "ITTF World Tour, Grand Finals 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 39896,
                          "name": "ITTF World Tour, Grand Finals 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39897,
                          "name": "ITTF World Tour, Grand Finals 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39898,
                          "name": "World Tour, Qatar Open (SS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 39901,
                          "name": "Qatar Open (WTP) 2017",
                          "importance": 0
                        },
                        {
                          "id": 39902,
                          "name": "Hong Kong Open (WT) 2018, Girls",
                          "importance": 0
                        },
                        {
                          "id": 39903,
                          "name": "India Open (WT) 2017, U21 Women",
                          "importance": 0
                        },
                        {
                          "id": 39905,
                          "name": "World Tour, German Open (SS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 39907,
                          "name": "Olympic Games, Team Single matches",
                          "importance": 0
                        },
                        {
                          "id": 39911,
                          "name": "Olympic Games Women, Team Single matches",
                          "importance": 0
                        },
                        {
                          "id": 39912,
                          "name": "World Tour, Japan Open (SS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 39917,
                          "name": "World Tour, German Open (SS) 2015, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 39919,
                          "name": "World Tour, German Open (SS) 2015, Doubles Qualif.",
                          "importance": 0
                        },
                        {
                          "id": 39921,
                          "name": "World Tour, German Open (SS) 2015, Women Qualif.",
                          "importance": 0
                        },
                        {
                          "id": 39923,
                          "name": "Olympic Games Women, Team",
                          "importance": 6
                        },
                        {
                          "id": 39925,
                          "name": "Challenger Series 2019, Week 19, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 39928,
                          "name": "ITTF Challenge, Slovenia Open 2019, Girls",
                          "importance": 0
                        },
                        {
                          "id": 39931,
                          "name": "World Tour Finals 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 39935,
                          "name": "German Open  2020, MS",
                          "importance": 0
                        },
                        {
                          "id": 39940,
                          "name": "ITTF World Cup 2015, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 39941,
                          "name": "World Tour, China Open (SS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 39944,
                          "name": "German Open (WTP) 2017",
                          "importance": 0
                        },
                        {
                          "id": 39946,
                          "name": "ITTF Challenge, Slovenia Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 39947,
                          "name": "ITTF World Cup 2015, Group B",
                          "importance": 0
                        },
                        {
                          "id": 39948,
                          "name": "ITTF World Cup 2015, Group A",
                          "importance": 0
                        },
                        {
                          "id": 39950,
                          "name": "ITTF World Cup 2015, Group C",
                          "importance": 0
                        },
                        {
                          "id": 39951,
                          "name": "ITTF World Cup 2015, Group D",
                          "importance": 0
                        },
                        {
                          "id": 39952,
                          "name": "ITTF Challenge, Serbia Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 39953,
                          "name": "Czech Open (WT) 2018",
                          "importance": 0
                        },
                        {
                          "id": 39954,
                          "name": "World Team Championsh. Finals 2024, Women, Gr. 4",
                          "importance": 0
                        },
                        {
                          "id": 39955,
                          "name": "Challenge Plus Oman Open 2019, Boys",
                          "importance": 0
                        },
                        {
                          "id": 39956,
                          "name": "Czech Open (WT) 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 39961,
                          "name": "Czech Open (WT) 2018, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39962,
                          "name": "World Team Championsh. Finals 2024, Women, Gr. 5",
                          "importance": 0
                        },
                        {
                          "id": 39964,
                          "name": "ITTF Challenge, Serbia Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 39965,
                          "name": "ITTF Challenge, Serbia Open 2019, Girls",
                          "importance": 0
                        },
                        {
                          "id": 39966,
                          "name": "ITTF Challenge, Serbia Open 2019, Boys",
                          "importance": 0
                        },
                        {
                          "id": 39967,
                          "name": "World Team Championsh. Finals 2024, Women, Gr. 2",
                          "importance": 0
                        },
                        {
                          "id": 39968,
                          "name": "ITTF Challenge, Serbia Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 39970,
                          "name": "World Team Championsh. Finals 2024, Women, Gr. 1",
                          "importance": 0
                        },
                        {
                          "id": 39971,
                          "name": "World Tour, Qatar Open (SS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 39972,
                          "name": "World Tour, Qatar Open (SS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39973,
                          "name": "Thailand Open (CH) 2017, Boys",
                          "importance": 0
                        },
                        {
                          "id": 39974,
                          "name": "ITTF Challenge, Serbia Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 39985,
                          "name": "Asian Championships 2015",
                          "importance": 0
                        },
                        {
                          "id": 39986,
                          "name": "World Tour Grand Finals 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 39987,
                          "name": "World Tour, China Open (SS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 39988,
                          "name": "Challenger Series 2019, Week 18, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 39991,
                          "name": "Bulgaria Open (WT) 2018, WD Qualification",
                          "importance": 0
                        },
                        {
                          "id": 39992,
                          "name": "World Tour Grand Finals 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 39993,
                          "name": "Czech Open (WT) 2018, Doubles Qualification",
                          "importance": 0
                        },
                        {
                          "id": 39994,
                          "name": "World Tour Grand Finals 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 39996,
                          "name": "World Tour Grand Finals 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 39997,
                          "name": "Czech Open (WT) 2018, Girls",
                          "importance": 0
                        },
                        {
                          "id": 39998,
                          "name": "World Tour, Spanish Open (MS) 2014, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39999,
                          "name": "Czech Open (WT) 2018, Women Doubles Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40000,
                          "name": "World Tour Grand Finals 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 40001,
                          "name": "Czech Open (WT) 2018, Women Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40002,
                          "name": "World Tour, Qatar Open (SS) 2015, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40003,
                          "name": "World Tour, Kuwait Open (SS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 40015,
                          "name": "Asian Championships 2015, Mixed Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40016,
                          "name": "Bulgaria Open (WT) 2018, WD",
                          "importance": 0
                        },
                        {
                          "id": 40017,
                          "name": "Bulgaria Open (WT) 2018, WS",
                          "importance": 0
                        },
                        {
                          "id": 40021,
                          "name": "World Championship 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 40023,
                          "name": "World Tour, Kuwait Open (SS) 2015, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40024,
                          "name": "World Tour, Kuwait Open (SS) 2015, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 40032,
                          "name": "European Team Championships 2021, Women, Group F",
                          "importance": 0
                        },
                        {
                          "id": 40035,
                          "name": "ETTU Team Championships 2025, Women, Group E",
                          "importance": 0
                        },
                        {
                          "id": 40036,
                          "name": "ETTU Team Championships 2025, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 40037,
                          "name": "European Team Championships 2021, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 40038,
                          "name": "European Team Championships 2021, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 40039,
                          "name": "ETTU Team Championships 2025, Women, Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 40041,
                          "name": "Challenge Plus Canada Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 40042,
                          "name": "World Tour, Hungary Open (CS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 40043,
                          "name": "ETTU Team Championships 2025, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 40044,
                          "name": "ETTU Team Championships 2023, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 40046,
                          "name": "European Team Championships 2021, Women, Group G",
                          "importance": 0
                        },
                        {
                          "id": 40047,
                          "name": "ETTU Team Championships 2023, Women, Group H",
                          "importance": 0
                        },
                        {
                          "id": 40048,
                          "name": "World Tour, Hungary Open (CS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40051,
                          "name": "European Team Championships 2021, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 40053,
                          "name": "World Team Championsh. Finals 2024, Women, Gr. 6",
                          "importance": 0
                        },
                        {
                          "id": 40054,
                          "name": "European Team Championships 2021, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 40055,
                          "name": "ETTU Team Championships 2023, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 40060,
                          "name": "World Tour, Argentina Open (CS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 40061,
                          "name": "ETTU Team Championships 2025, Women, Group G",
                          "importance": 0
                        },
                        {
                          "id": 40062,
                          "name": "World Tour, Argentina Open (CS) 2015,Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40063,
                          "name": "ETTU Team Championships 2025, Women, Group F",
                          "importance": 0
                        },
                        {
                          "id": 40064,
                          "name": "ETTU Team Championships 2023, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 40065,
                          "name": "World Tour, Argentina Open (CS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 40066,
                          "name": "Swedish Open (WT) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 40067,
                          "name": "Swedish Open (WT) 2017",
                          "importance": 0
                        },
                        {
                          "id": 40070,
                          "name": "ETTU Team Championships 2025, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 40071,
                          "name": "ETTU Team Championships 2023, Women, Group F",
                          "importance": 0
                        },
                        {
                          "id": 40072,
                          "name": "European Team Championships 2021, Women, Group E",
                          "importance": 0
                        },
                        {
                          "id": 40073,
                          "name": "World Team Championsh. Finals 2024, Women, Gr. 8",
                          "importance": 0
                        },
                        {
                          "id": 40074,
                          "name": "ETTU Team Championships 2023, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 40075,
                          "name": "ETTU Team Championships 2025, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 40076,
                          "name": "European Team Championships 2021, Women, Group H",
                          "importance": 0
                        },
                        {
                          "id": 40077,
                          "name": "World Tour Finals 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 40078,
                          "name": "ETTU Team Championships 2023, Women, Group G",
                          "importance": 0
                        },
                        {
                          "id": 40081,
                          "name": "ITTF Challenge, Spanish Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 40082,
                          "name": "ETTU Team Championships 2025, Women, Group H",
                          "importance": 0
                        },
                        {
                          "id": 40083,
                          "name": "World Team Championsh. Finals 2024, Women, Gr. 3",
                          "importance": 0
                        },
                        {
                          "id": 40086,
                          "name": "German Open (WTP) 2017, Women, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40088,
                          "name": "World Team Championsh. Finals 2024, Women, Gr. 7",
                          "importance": 0
                        },
                        {
                          "id": 40089,
                          "name": "Swedish Open (WT) 2017, Women Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40091,
                          "name": "World Tour, Czech Open (MS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40093,
                          "name": "ETTU Team Championships 2023, Women, Group E",
                          "importance": 0
                        },
                        {
                          "id": 40094,
                          "name": "World Tour, Qatar Open (SS) 2015, Doubles, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 40095,
                          "name": "Swedish Open (WT) 2017, U21",
                          "importance": 0
                        },
                        {
                          "id": 40096,
                          "name": "World Team Cup, Singles",
                          "importance": 0
                        },
                        {
                          "id": 40098,
                          "name": "World Tour, Korea Open (SS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 40099,
                          "name": "World Tour, Korea Open (SS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40100,
                          "name": "Challenger Series 2019, Week 27, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 40101,
                          "name": "World Tour, Austrian Open (MS) 2015, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 40103,
                          "name": "World Tour, Austrian Open (MS) 2015, WD, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 40107,
                          "name": "World Tour, Belarus Open (CS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 40112,
                          "name": "ITTF Belarus Open 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40113,
                          "name": "ITTF Belarus Open 2017",
                          "importance": 0
                        },
                        {
                          "id": 40114,
                          "name": "World Tour, Japan Open (SS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40116,
                          "name": "German Open (WTP) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 40118,
                          "name": "Australian Open (WTP) 2018",
                          "importance": 0
                        },
                        {
                          "id": 40119,
                          "name": "World Tour, Korea Open (SS) 2016, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40120,
                          "name": "German Open (WTP) 2017, Boys",
                          "importance": 0
                        },
                        {
                          "id": 40121,
                          "name": "German Open (WTP) 2017, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40122,
                          "name": "Australian Open (WTP) 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 40123,
                          "name": "World Tour Grand Finals 2018, WD",
                          "importance": 0
                        },
                        {
                          "id": 40124,
                          "name": "World Tour, Czech Open (MS) 2015, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40129,
                          "name": "ITTF Belarus Open 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 40130,
                          "name": "ITTF World Tour, Qatar Open",
                          "importance": 0
                        },
                        {
                          "id": 40132,
                          "name": "ITTF World Tour, Qatar Open, Women",
                          "importance": 0
                        },
                        {
                          "id": 40133,
                          "name": "ITTF World Tour, Qatar Open, Womens Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40134,
                          "name": "World Tour, Japan Open (SS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 40135,
                          "name": "World Tour, Japan Open (SS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 40138,
                          "name": "Australian Open (WTP) 2018, Doubles, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40139,
                          "name": "Australian Open (WTP) 2018, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40141,
                          "name": "World Tour, Grand Finals 2014, Women",
                          "importance": 0
                        },
                        {
                          "id": 40142,
                          "name": "World Tour, Grand Finals 2014",
                          "importance": 0
                        },
                        {
                          "id": 40144,
                          "name": "World Tour, Grand Finals 2014, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40146,
                          "name": "World Tour, Grand Finals 2014, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40147,
                          "name": "Australian Open (WTP) 2018, Women, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40150,
                          "name": "Campeonato Centroamericano, MD",
                          "importance": 0
                        },
                        {
                          "id": 40152,
                          "name": "Campeonato Centroamericano, MS",
                          "importance": 0
                        },
                        {
                          "id": 40156,
                          "name": "World Tour, Bulgaria Open (CS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 40157,
                          "name": "World Tour, Bulgaria Open (CS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 40158,
                          "name": "ITTF Belgium Open 2017, Girls",
                          "importance": 0
                        },
                        {
                          "id": 40160,
                          "name": "World Tour, Japan Open (SS) 2016, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40161,
                          "name": "European Team Championships 2023, Women, Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 40162,
                          "name": "World Tour, Japan Open (SS) 2016, Women Quali.",
                          "importance": 0
                        },
                        {
                          "id": 40163,
                          "name": "ITTF Oceania Cup",
                          "importance": 0
                        },
                        {
                          "id": 40164,
                          "name": "Austrian Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 40165,
                          "name": "Austrian Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 40167,
                          "name": "Indonesia Open 2019, Girls",
                          "importance": 0
                        },
                        {
                          "id": 40168,
                          "name": "Campeonato Centroamericano, WD",
                          "importance": 0
                        },
                        {
                          "id": 40171,
                          "name": "Korea Open (WTP) 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 40172,
                          "name": "Korea Open (WTP) 2018",
                          "importance": 0
                        },
                        {
                          "id": 40173,
                          "name": "Indonesia Open 2019, MS, Main Stage",
                          "importance": 0
                        },
                        {
                          "id": 40175,
                          "name": "World Team Championship 2018, 2nd Division, WS",
                          "importance": 0
                        },
                        {
                          "id": 40176,
                          "name": "World Tour, Australia Open (CS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 40177,
                          "name": "World Tour, Australia Open (CS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 40178,
                          "name": "U15 European Youth Championship, Mixed",
                          "importance": 0
                        },
                        {
                          "id": 40179,
                          "name": "Indonesia Open 2019, WS, Main Stage",
                          "importance": 0
                        },
                        {
                          "id": 40181,
                          "name": "Austrian Open 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 40184,
                          "name": "U18 European Youth Championship, Girls Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40186,
                          "name": "Austrian Open 2019, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40188,
                          "name": "Austrian Open 2019, MS Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40190,
                          "name": "Austrian Open 2019, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40191,
                          "name": "World Tour, Slovenia Open (CS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 40192,
                          "name": "World Tour, Slovenia Open (CS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 40193,
                          "name": "World Tour, Slovenia Open (CS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40194,
                          "name": "Austrian Open 2019, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40197,
                          "name": "Korea Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 40198,
                          "name": "Challenger Series 2017, Week 9, Women",
                          "importance": 0
                        },
                        {
                          "id": 40199,
                          "name": "Indonesia Open 2019, MS, Group Stage",
                          "importance": 0
                        },
                        {
                          "id": 40200,
                          "name": "Korea Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 40201,
                          "name": "World Tour, China Open (SS) 2015, WD Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40202,
                          "name": "World Tour, China Open (SS) 2015, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40204,
                          "name": "Qatar Open 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 40205,
                          "name": "Qatar Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 40206,
                          "name": "Indonesia Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 40207,
                          "name": "Qatar Open 2019, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40212,
                          "name": "Qatar Open 2019, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40213,
                          "name": "ITTF World Tour",
                          "importance": 0
                        },
                        {
                          "id": 40214,
                          "name": "European Team Championships 2021, Women, Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 40215,
                          "name": "Qatar Open 2019, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40216,
                          "name": "ITTF World Tour, Women",
                          "importance": 0
                        },
                        {
                          "id": 40222,
                          "name": "Qatar Open (WTP) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 40224,
                          "name": "Qatar Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 40227,
                          "name": "Hungarian Open 2019, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40229,
                          "name": "Asian Cup 2016, Group stage, Singles",
                          "importance": 0
                        },
                        {
                          "id": 40230,
                          "name": "Asian Cup 2016, Group stage, Women Singles",
                          "importance": 0
                        },
                        {
                          "id": 40231,
                          "name": "Qatar Open (WTP) 2017, U21 Women",
                          "importance": 0
                        },
                        {
                          "id": 40232,
                          "name": "Qatar Open (WTP) 2017, Women Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40233,
                          "name": "Qatar Open (WTP) 2017, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40236,
                          "name": "World Tour, Korea Open (SS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 40238,
                          "name": "World Tour, Korea Open (SS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40239,
                          "name": "Qatar Open (WTP) 2017, WD Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40241,
                          "name": "World Tour, Kuwait Open (SS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 40242,
                          "name": "Austrian Open 2018, XD",
                          "importance": 0
                        },
                        {
                          "id": 40245,
                          "name": "Qatar Open 2020, XD",
                          "importance": 0
                        },
                        {
                          "id": 40249,
                          "name": "Challenge Plus Oman Open 2019, Girls",
                          "importance": 0
                        },
                        {
                          "id": 40250,
                          "name": "ITTF Challenge, Belarus Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 40252,
                          "name": "World Tour, Qatar Open (SS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40256,
                          "name": "World Tour, Polish Open (MS) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40259,
                          "name": "ITTF Challenge, Belarus Open 2019, Boys",
                          "importance": 0
                        },
                        {
                          "id": 40264,
                          "name": "ITTF Challenge, Polish Open 2020, Boys",
                          "importance": 0
                        },
                        {
                          "id": 40267,
                          "name": "ITTF World Cup 2014, Group D",
                          "importance": 0
                        },
                        {
                          "id": 40270,
                          "name": "Australian Open (WTP) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 40275,
                          "name": "World Tour, Japan Open (SS) 2015, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40277,
                          "name": "U21 European Championship 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 40290,
                          "name": "U21 European Championship 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 40292,
                          "name": "ITTF Europe Top 16 2017, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 40294,
                          "name": "ITTF Europe Top 16 2017, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 40295,
                          "name": "World Tour, Australia Open (CS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 40296,
                          "name": "North American Olympic Qual. Tournament, Women",
                          "importance": 0
                        },
                        {
                          "id": 40297,
                          "name": "World Tour, Chile Open (CS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 40298,
                          "name": "World Tour, Australia Open (CS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 40299,
                          "name": "World Tour, Australia Open (CS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40300,
                          "name": "World Tour, Chile Open (CS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 40302,
                          "name": "ITTF Challenge, Polish Open 2019, MS, Main Stage",
                          "importance": 0
                        },
                        {
                          "id": 40303,
                          "name": "ITTF World Cup 2019, Women, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 40304,
                          "name": "ITTF Challenge, Polish Open 2019, WS, Main Stage",
                          "importance": 0
                        },
                        {
                          "id": 40306,
                          "name": "ITTF Europe Top 16 2017, Placement 5-8",
                          "importance": 0
                        },
                        {
                          "id": 40307,
                          "name": "Latin America Olympic Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40309,
                          "name": "Challenge Plus Paraguay Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 40311,
                          "name": "World Tour, Philippines Open (CS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 40312,
                          "name": "ITTF World Junior Championships, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40317,
                          "name": "Austrian Open 2019, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40319,
                          "name": "World Tour, Croatia Open (CS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 40320,
                          "name": "World Tour, Croatia Open (CS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40321,
                          "name": "World Tour, Croatia Open (CS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 40323,
                          "name": "ITTF Challenge, Polish Open 2019, Boys",
                          "importance": 0
                        },
                        {
                          "id": 40328,
                          "name": "World Tour, Croatia Open (CS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40336,
                          "name": "World Tour, Brazil Open (CS) 2014, Women",
                          "importance": 0
                        },
                        {
                          "id": 40337,
                          "name": "World Tour, Belgium Open (CS) 2014",
                          "importance": 0
                        },
                        {
                          "id": 40338,
                          "name": "Swedish Open 2018, Girls",
                          "importance": 0
                        },
                        {
                          "id": 40344,
                          "name": "World Tour, Qatar Open (SS) 2016, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40345,
                          "name": "World Tour, Qatar Open (SS) 2016, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 40347,
                          "name": "World Tour, Belarus Open (CS) 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40348,
                          "name": "World Tour, Belarus Open (CS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40356,
                          "name": "Japan Open (WT) 2018",
                          "importance": 0
                        },
                        {
                          "id": 40357,
                          "name": "Japan Open (WT) 2018, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40359,
                          "name": "World Tour, Czech Open (MS) 2014, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40363,
                          "name": "Korea Open (WTP) 2018, Mixed Doubles, Quali",
                          "importance": 0
                        },
                        {
                          "id": 40364,
                          "name": "World Tour, Kuwait Open (SS) 2016, Women Quali.",
                          "importance": 0
                        },
                        {
                          "id": 40365,
                          "name": "World Tour, Kuwait Open (SS) 2016, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40366,
                          "name": "Swedish Open (WTP) 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 40367,
                          "name": "Japan Open (WT) 2018, Women Doubles Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40368,
                          "name": "Japan Open (WT) 2018, Women Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40369,
                          "name": "Japan Open (WT) 2018, Mixed Doubles Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40370,
                          "name": "Japan Open (WT) 2018, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40371,
                          "name": "World Tour, Swedish Open (MS) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40376,
                          "name": "Hungarian Open (WT) 2017, WD Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40378,
                          "name": "Swedish Open (WTP) 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 40379,
                          "name": "World Tour, Hungarian Open (WT) 2017, U21 Women",
                          "importance": 0
                        },
                        {
                          "id": 40380,
                          "name": "Qatar Open (WTP) 2018",
                          "importance": 0
                        },
                        {
                          "id": 40381,
                          "name": "World Team Championships, Singles",
                          "importance": 0
                        },
                        {
                          "id": 40382,
                          "name": "China Open (WTP) 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 40384,
                          "name": "Czech Open (WT) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 40385,
                          "name": "World Tour, Hungarian Open (WT) 2017, U21",
                          "importance": 0
                        },
                        {
                          "id": 40386,
                          "name": "World Team Championships, Women",
                          "importance": 0
                        },
                        {
                          "id": 40387,
                          "name": "Czech Open (WT) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40388,
                          "name": "ITTF Challenge, Croatia Open 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40389,
                          "name": "Swedish Open (WTP) 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 40391,
                          "name": "Swedish Open (WTP) 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 40392,
                          "name": "Swedish Open (WTP) 2019, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40394,
                          "name": "China Open (WTP) 2018, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40395,
                          "name": "Bulgaria Open (WT) 2017, MS",
                          "importance": 0
                        },
                        {
                          "id": 40396,
                          "name": "China Open (WTP) 2018, Women, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40402,
                          "name": "Swedish Open (WTP) 2019, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40405,
                          "name": "Swedish Open (WTP) 2019, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40407,
                          "name": "Swedish Open (WTP) 2019, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40423,
                          "name": "ITTF Europe Top 16 2019, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 40427,
                          "name": "Australian Open (WTP) 2017",
                          "importance": 0
                        },
                        {
                          "id": 40428,
                          "name": "Australian Open (WTP) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40429,
                          "name": "Hong Kong Open (WT) 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 40430,
                          "name": "Australian Open (WTP) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40432,
                          "name": "Hong Kong Open (WT) 2018, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40434,
                          "name": "ITTF Europe Top 16 2016, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 40435,
                          "name": "ITTF Europe Top 16 2016, Placement 5-8",
                          "importance": 0
                        },
                        {
                          "id": 40436,
                          "name": "ITTF Europe Top 16 2016, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 40440,
                          "name": "ITTF Europe Top 16 2016, Women, Placement 5-8",
                          "importance": 0
                        },
                        {
                          "id": 40444,
                          "name": "ITTF Europe Top 16 2016, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 40445,
                          "name": "ITTF Europe Top 16 2016, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 40446,
                          "name": "ITTF Europe Top 16 2016, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 40447,
                          "name": "ITTF Europe Top 16 2016, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 40449,
                          "name": "Challenger Series 2018, Week 21, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 40452,
                          "name": "Australian Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 40455,
                          "name": "Australian Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 40458,
                          "name": "World Tour, German Open (SS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 40459,
                          "name": "World Tour, German Open (SS) 2016",
                          "importance": 0
                        },
                        {
                          "id": 40464,
                          "name": "Hong Kong Open (WT) 2018, Boys",
                          "importance": 0
                        },
                        {
                          "id": 40470,
                          "name": "ITTF World Tour, Grand Finals 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40472,
                          "name": "ITTF World Tour, Grand Finals 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40473,
                          "name": "ITTF World Tour, Grand Finals 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 40474,
                          "name": "Hong Kong Open (WT) 2018, Women, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40476,
                          "name": "ITTF World Tour, Grand Finals 2016",
                          "importance": 0
                        },
                        {
                          "id": 40478,
                          "name": "Hungarian Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 40479,
                          "name": "ITTF World Tour, Grand Finals 2016, U21 Women",
                          "importance": 0
                        },
                        {
                          "id": 40480,
                          "name": "ITTF World Tour, Grand Finals 2016, U21",
                          "importance": 0
                        },
                        {
                          "id": 40481,
                          "name": "World Tour, German Open (SS) 2016, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40482,
                          "name": "World Tour, German Open (SS) 2016, Women Qualif.",
                          "importance": 0
                        },
                        {
                          "id": 40484,
                          "name": "Challenge Plus Paraguay Open 2019, Girls",
                          "importance": 0
                        },
                        {
                          "id": 40485,
                          "name": "World Tour, Swedish Open (MS) 2016, U21",
                          "importance": 0
                        },
                        {
                          "id": 40487,
                          "name": "Challenge Plus Paraguay Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 40490,
                          "name": "Challenge Plus Paraguay Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 40493,
                          "name": "Challenger Series 2019, Week 37, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 40494,
                          "name": "Hungarian Open 2019, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40496,
                          "name": "Hungarian Open 2019, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40499,
                          "name": "China Open (WTP) 2017, Doubles Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40503,
                          "name": "China Open (WTP) 2017, U21 Women",
                          "importance": 0
                        },
                        {
                          "id": 40505,
                          "name": "World Tour, Hungary Open (MS) 2016, WD, Quali",
                          "importance": 0
                        },
                        {
                          "id": 40508,
                          "name": "World Team Championship 2018, C'ship Division, MS",
                          "importance": 0
                        },
                        {
                          "id": 40509,
                          "name": "World Tour, Hungary Open (MS) 2016, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40510,
                          "name": "World Tour, Hungary Open (MS) 2016, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 40511,
                          "name": "China Open (WTP) 2017, U21",
                          "importance": 0
                        },
                        {
                          "id": 40514,
                          "name": "World Team Championship 2018, 2nd Division, MS",
                          "importance": 0
                        },
                        {
                          "id": 40516,
                          "name": "World Team Championship 2018, 3rd Division, MS",
                          "importance": 0
                        },
                        {
                          "id": 40518,
                          "name": "Australian Open 2019, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40521,
                          "name": "Challenger Series 2019, Week 37, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 40523,
                          "name": "ITTF World Tour, Hungarian Open 2018, Women Qual.",
                          "importance": 0
                        },
                        {
                          "id": 40524,
                          "name": "World Tour, Swedish Open (MS) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 40530,
                          "name": "Japan Open (WTP) 2017, Women Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40549,
                          "name": "World Tour, Swedish Open (MS) 2016, WD, Quali",
                          "importance": 0
                        },
                        {
                          "id": 40551,
                          "name": "World Tour Grand Finals 2018, MS",
                          "importance": 0
                        },
                        {
                          "id": 40552,
                          "name": "World Tour Grand Finals 2018, WS",
                          "importance": 0
                        },
                        {
                          "id": 40553,
                          "name": "World Tour Grand Finals 2018, MD",
                          "importance": 0
                        },
                        {
                          "id": 40559,
                          "name": "World Tour Grand Finals 2018, XD",
                          "importance": 0
                        },
                        {
                          "id": 40570,
                          "name": "World Tour, Swedish Open (MS) 2015, U21 Women",
                          "importance": 0
                        },
                        {
                          "id": 40572,
                          "name": "World Tour, Swedish Open (MS) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40585,
                          "name": "ITTF Challenge, Slovenia Open 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 40595,
                          "name": "World Tour, Swedish Open (MS) 2016, Doubles, Quali",
                          "importance": 0
                        },
                        {
                          "id": 40608,
                          "name": "Challenger Series 2019, Week 35, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 40615,
                          "name": "Chile Open (CH) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40625,
                          "name": "Czech Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 40626,
                          "name": "Austrian Open (MS) 2016, U21 Women",
                          "importance": 0
                        },
                        {
                          "id": 40628,
                          "name": "Czech Open 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 40629,
                          "name": "Czech Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 40631,
                          "name": "Austrian Open (MS) 2016, MD, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 40635,
                          "name": "Challenger Series 2019, Week 34, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 40643,
                          "name": "Czech Open 2019, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40644,
                          "name": "ITTF Challenge, Croatia Open 2018, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40645,
                          "name": "ITTF Challenge, Croatia Open 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 40650,
                          "name": "ITTF Challenge, Croatia Open 2018, Boys",
                          "importance": 0
                        },
                        {
                          "id": 40651,
                          "name": "Czech Open 2019, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40653,
                          "name": "ITTF Challenge, Croatia Open 2018, Girls",
                          "importance": 0
                        },
                        {
                          "id": 40657,
                          "name": "Belarus Open 2018, WS",
                          "importance": 0
                        },
                        {
                          "id": 40658,
                          "name": "Czech Open 2019, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40659,
                          "name": "Bulgaria Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 40660,
                          "name": "Bulgaria Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 40661,
                          "name": "Bulgaria Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 40663,
                          "name": "ITTF Challenge, Slovenia Open 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40665,
                          "name": "World Championship 2017, Doubles, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40668,
                          "name": "Bulgaria Open 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 40669,
                          "name": "ITTF Challenge, Spanish Open 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 40670,
                          "name": "Bulgaria Open 2019, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40671,
                          "name": "World Tour, Bulgaria Open (MS) 2016, Women Qual.",
                          "importance": 0
                        },
                        {
                          "id": 40681,
                          "name": "ITTF Challenge, Slovenia Open 2018, Girls",
                          "importance": 0
                        },
                        {
                          "id": 40692,
                          "name": "Bulgaria Open 2019, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40694,
                          "name": "Bulgaria Open 2019, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40697,
                          "name": "Bulgaria Open 2019, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40698,
                          "name": "Austrian Open 2018, WD",
                          "importance": 0
                        },
                        {
                          "id": 40699,
                          "name": "Austrian Open 2018, WS",
                          "importance": 0
                        },
                        {
                          "id": 40701,
                          "name": "Bulgaria Open 2019, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40704,
                          "name": "Japan Open 2019, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40709,
                          "name": "Austrian Open 2018, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40710,
                          "name": "Austrian Open 2018, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40711,
                          "name": "Austrian Open 2018, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40712,
                          "name": "Pan Am Games, MD",
                          "importance": 0
                        },
                        {
                          "id": 40713,
                          "name": "ITTF Challenge, Spanish Open 2018, Girls",
                          "importance": 0
                        },
                        {
                          "id": 40714,
                          "name": "Pan Am Games, WD",
                          "importance": 0
                        },
                        {
                          "id": 40716,
                          "name": "Pan Am Games, WS",
                          "importance": 0
                        },
                        {
                          "id": 40717,
                          "name": "Challenger Series 2019, Week 32, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 40722,
                          "name": "ITTF Challenge, Spanish Open 2018, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40725,
                          "name": "Swedish Open 2018, WS",
                          "importance": 0
                        },
                        {
                          "id": 40726,
                          "name": "Swedish Open 2018, MS",
                          "importance": 0
                        },
                        {
                          "id": 40728,
                          "name": "Balkan Championships, MD",
                          "importance": 0
                        },
                        {
                          "id": 40729,
                          "name": "Balkan Championships, WD",
                          "importance": 0
                        },
                        {
                          "id": 40731,
                          "name": "Challenger Series 2019, Week 32, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 40741,
                          "name": "Swedish Open 2018, WD",
                          "importance": 0
                        },
                        {
                          "id": 40742,
                          "name": "Pan Am Games, XD",
                          "importance": 0
                        },
                        {
                          "id": 40743,
                          "name": "Swedish Open 2018, MD",
                          "importance": 0
                        },
                        {
                          "id": 40744,
                          "name": "German Open (WTP) 2018",
                          "importance": 0
                        },
                        {
                          "id": 40745,
                          "name": "Swedish Open 2018, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40746,
                          "name": "Balkan Championships, MS",
                          "importance": 0
                        },
                        {
                          "id": 40751,
                          "name": "German Open (WTP) 2018, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40755,
                          "name": "ITTF World Cup 2016, Women, Group 2",
                          "importance": 0
                        },
                        {
                          "id": 40758,
                          "name": "ITTF World Cup 2016, Women, Group 4",
                          "importance": 0
                        },
                        {
                          "id": 40759,
                          "name": "ITTF World Cup 2016, Women, Group 1",
                          "importance": 0
                        },
                        {
                          "id": 40760,
                          "name": "Swedish Open 2018, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40763,
                          "name": "German Open (WTP) 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 40764,
                          "name": "European Games, Singles",
                          "importance": 0
                        },
                        {
                          "id": 40767,
                          "name": "ITTF World Cup 2016, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 40770,
                          "name": "German Open (WTP) 2018, Boys",
                          "importance": 0
                        },
                        {
                          "id": 40772,
                          "name": "German Open (WTP) 2018, Doubles, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40773,
                          "name": "German Open (WTP) 2018, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40774,
                          "name": "Challenger Series 2019, Week 31, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 40776,
                          "name": "ITTF World Cup 2016, Group B",
                          "importance": 0
                        },
                        {
                          "id": 40777,
                          "name": "ITTF World Cup 2016, Group D",
                          "importance": 0
                        },
                        {
                          "id": 40778,
                          "name": "ITTF World Cup 2016, Group A",
                          "importance": 0
                        },
                        {
                          "id": 40779,
                          "name": "ITTF World Cup 2016, Group C",
                          "importance": 0
                        },
                        {
                          "id": 40780,
                          "name": "Swedish Open 2018, Boys",
                          "importance": 0
                        },
                        {
                          "id": 40785,
                          "name": "German Open (WTP) 2018, Women, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40787,
                          "name": "ITTF Belgium Open 2018, (MS)",
                          "importance": 0
                        },
                        {
                          "id": 40788,
                          "name": "Challenger Series 2019, Week 31, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 40790,
                          "name": "World Tour, Belgium Open (CH) 2016",
                          "importance": 0
                        },
                        {
                          "id": 40791,
                          "name": "World Tour, Belgium Open (CH) 2016, Women",
                          "importance": 0
                        },
                        {
                          "id": 40797,
                          "name": "Challenger Series 2019, Week 30, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 40801,
                          "name": "Challenger Series 2019, Week 30, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 40804,
                          "name": "World Tour, Belgium Open (CH) 2016, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40805,
                          "name": "Challenger Series 2019, Week 29, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 40806,
                          "name": "European University Table Tennis Championship, MD",
                          "importance": 0
                        },
                        {
                          "id": 40807,
                          "name": "European University Table Tennis Championship, WD",
                          "importance": 0
                        },
                        {
                          "id": 40808,
                          "name": "ITTF Belgium Open 2018, Girls",
                          "importance": 0
                        },
                        {
                          "id": 40809,
                          "name": "Challenger Series 2019, Week 29, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 40810,
                          "name": "World Tour, China Open (SS) 2016, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40818,
                          "name": "ITTF World Cup 2018, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 40823,
                          "name": "ITTF World Cup 2018, Group B",
                          "importance": 0
                        },
                        {
                          "id": 40825,
                          "name": "ITTF World Cup 2018, Group A",
                          "importance": 0
                        },
                        {
                          "id": 40826,
                          "name": "ITTF World Cup 2018, Group D",
                          "importance": 0
                        },
                        {
                          "id": 40827,
                          "name": "ITTF World Cup 2018, Group C",
                          "importance": 0
                        },
                        {
                          "id": 40841,
                          "name": "Qatar Open (WTP) 2018, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40843,
                          "name": "Qatar Open (WTP) 2018, Women",
                          "importance": 0
                        },
                        {
                          "id": 40845,
                          "name": "Australian Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 40848,
                          "name": "U21 European Championship, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40851,
                          "name": "Australian Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 40853,
                          "name": "U21 European Championship, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40856,
                          "name": "Qatar Open (WTP) 2017, U21, Women",
                          "importance": 0
                        },
                        {
                          "id": 40860,
                          "name": "Qatar Open (WTP) 2018, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40872,
                          "name": "Qatar Open (WTP) 2018, U21",
                          "importance": 0
                        },
                        {
                          "id": 40873,
                          "name": "Qatar Open (WTP) 2018, Women Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40881,
                          "name": "Australian Open 2019, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40884,
                          "name": "Australian Open 2019, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40887,
                          "name": "Australian Open 2019, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40891,
                          "name": "Korea Open 2019, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40892,
                          "name": "Challenger Series 2019, Week 28, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 40894,
                          "name": "ITTF Challenge, Slovenia Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 40917,
                          "name": "ITTF Europe Top 16 2018, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 40919,
                          "name": "ITTF Europe Top 16 2018, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 40923,
                          "name": "Korea Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 40924,
                          "name": "Korea Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 40925,
                          "name": "Korea Open 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 40926,
                          "name": "Challenger Series 2019, Week 27, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 40934,
                          "name": "Korea Open 2019, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40937,
                          "name": "Korean Open (WT) 2017, Women Qualification",
                          "importance": 0
                        },
                        {
                          "id": 40941,
                          "name": "Challenger Series 2019, Week 26, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 40943,
                          "name": "European Games, Women Singles",
                          "importance": 0
                        },
                        {
                          "id": 40946,
                          "name": "European Games, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40951,
                          "name": "Challenger Series 2019, Week 26, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 40953,
                          "name": "European Games, Mixed Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40979,
                          "name": "Japan Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 40984,
                          "name": "Japan Open 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 40987,
                          "name": "Japan Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 65100,
                          "name": "WTT Feeder Havirov 2026, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 65101,
                          "name": "WTT Feeder Havirov, WS",
                          "importance": 0
                        },
                        {
                          "id": 65102,
                          "name": "WTT Feeder Havirov 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 65103,
                          "name": "WTT Feeder Havirov, MS",
                          "importance": 0
                        },
                        {
                          "id": 65106,
                          "name": "WTT Feeder Havirov, XD",
                          "importance": 0
                        },
                        {
                          "id": 65107,
                          "name": "WTT Feeder Havirov, MD",
                          "importance": 0
                        },
                        {
                          "id": 65108,
                          "name": "WTT Feeder Havirov 2026, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 65764,
                          "name": "WTT Feeder Havirov 2026, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 65765,
                          "name": "WTT Feeder Havirov, WD",
                          "importance": 0
                        },
                        {
                          "id": 65776,
                          "name": "WTT Feeder Havirov 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 65784,
                          "name": "WTT Contender Doha 2022, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67713,
                          "name": "WTT Feeder Senec 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67715,
                          "name": "WTT Feeder Senec 2026, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67716,
                          "name": "WTT Feeder Senec 2026, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67720,
                          "name": "WTT Feeder Senec 2026, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67819,
                          "name": "WTT Contender Novo Mesto 2021, MS",
                          "importance": 0
                        },
                        {
                          "id": 67823,
                          "name": "WTT Feeder Havirov 2026, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67824,
                          "name": "U21 European Championship, Mixed Doubles",
                          "importance": 0
                        },
                        {
                          "id": 67907,
                          "name": "WTT Feeder Varazdin, XD",
                          "importance": 0
                        },
                        {
                          "id": 67908,
                          "name": "WTT Feeder Varazdin, WD",
                          "importance": 0
                        },
                        {
                          "id": 67909,
                          "name": "WTT Feeder Varazdin, MD",
                          "importance": 0
                        },
                        {
                          "id": 67910,
                          "name": "WTT Feeder Varazdin, WS",
                          "importance": 0
                        },
                        {
                          "id": 67911,
                          "name": "ETTU U21 European Championship 2021, MD",
                          "importance": 0
                        },
                        {
                          "id": 67912,
                          "name": "WTT Feeder Varazdin 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 67913,
                          "name": "WTT Feeder Varazdin 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 67914,
                          "name": "WTT Feeder Varazdin 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 67915,
                          "name": "WTT Feeder Varazdin 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 67916,
                          "name": "WTT Feeder Varazdin, MS",
                          "importance": 0
                        },
                        {
                          "id": 67917,
                          "name": "WTT Feeder Varazdin 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 67918,
                          "name": "WTT Champions Chongqing 2026, MS",
                          "importance": 0
                        },
                        {
                          "id": 67919,
                          "name": "WTT Champions Chongqing 2026, WS",
                          "importance": 0
                        },
                        {
                          "id": 67921,
                          "name": "WTT Champions Chongqing 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 67922,
                          "name": "WTT Champions Chongqing 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 67923,
                          "name": "WTT Champions Chongqing 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 67924,
                          "name": "WTT Champions Chongqing 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 67926,
                          "name": "WTT Feeder Otocec 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67927,
                          "name": "WTT Feeder Otocec 2026, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67928,
                          "name": "WTT Feeder Otocec 2026, MS",
                          "importance": 0
                        },
                        {
                          "id": 67931,
                          "name": "WTT Feeder Otocec 2026, WS",
                          "importance": 0
                        },
                        {
                          "id": 67933,
                          "name": "WTT Feeder Otocec 2026, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67934,
                          "name": "WTT Feeder Otocec 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 67935,
                          "name": "WTT Feeder Otocec 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 67936,
                          "name": "WTT Feeder Otocec 2026, XD",
                          "importance": 0
                        },
                        {
                          "id": 67937,
                          "name": "WTT Feeder Otocec 2026, MD",
                          "importance": 0
                        },
                        {
                          "id": 67938,
                          "name": "WTT Feeder Otocec 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 67939,
                          "name": "WTT Feeder Otocec 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 67940,
                          "name": "WTT Feeder Otocec 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 67941,
                          "name": "ITTF Challenge, Thailand Open 2018",
                          "importance": 0
                        },
                        {
                          "id": 67942,
                          "name": "WTT Feeder Otocec 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 67944,
                          "name": "WTT Feeder Otocec 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 67945,
                          "name": "Star Contender Chennai 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67946,
                          "name": "Star Contender Chennai 2026, MS",
                          "importance": 0
                        },
                        {
                          "id": 67950,
                          "name": "Star Contender Chennai 2026, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67952,
                          "name": "WTT Feeder Otocec 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 67953,
                          "name": "Star Contender Chennai 2026, WS",
                          "importance": 0
                        },
                        {
                          "id": 67954,
                          "name": "Star Contender Chennai 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 67955,
                          "name": "Star Contender Chennai 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 67956,
                          "name": "Challenge Plus Oman Open 2020, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 67957,
                          "name": "Star Contender Chennai 2026, MD",
                          "importance": 0
                        },
                        {
                          "id": 67958,
                          "name": "Star Contender Chennai 2026, WD",
                          "importance": 0
                        },
                        {
                          "id": 67959,
                          "name": "Star Contender Chennai 2026, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67960,
                          "name": "Star Contender Chennai 2026, XD",
                          "importance": 0
                        },
                        {
                          "id": 67961,
                          "name": "Star Contender Chennai 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 67962,
                          "name": "ITTF Challenge, Spanish Open 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 67965,
                          "name": "WTT Feeder Otocec 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 67967,
                          "name": "WTT Contender Muscat 2026, MS",
                          "importance": 0
                        },
                        {
                          "id": 67970,
                          "name": "WTT Contender Muscat 2026, XD",
                          "importance": 0
                        },
                        {
                          "id": 67971,
                          "name": "WTT Contender Muscat 2026, WD",
                          "importance": 0
                        },
                        {
                          "id": 67972,
                          "name": "WTT Contender Muscat 2026, MD",
                          "importance": 0
                        },
                        {
                          "id": 67973,
                          "name": "WTT Star Contender Doha 2026, MS",
                          "importance": 0
                        },
                        {
                          "id": 67975,
                          "name": "WTT Star Contender Doha 2026, WS",
                          "importance": 0
                        },
                        {
                          "id": 67977,
                          "name": "WTT Star Contender Doha 2026, XD",
                          "importance": 0
                        },
                        {
                          "id": 67978,
                          "name": "WTT Star Contender Doha 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 67979,
                          "name": "WTT Star Contender Doha 2026, MD",
                          "importance": 0
                        },
                        {
                          "id": 67980,
                          "name": "WTT Star Contender Doha 2026, WD",
                          "importance": 0
                        },
                        {
                          "id": 67981,
                          "name": "WTT Star Contender Doha 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 67982,
                          "name": "WTT Star Contender Doha 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 67983,
                          "name": "WTT Star Contender Doha 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 67984,
                          "name": "WTT Star Contender Doha 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 67985,
                          "name": "WTT Star Contender Doha 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67986,
                          "name": "Challenge Plus Oman Open 2020, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 67987,
                          "name": "WTT Star Contender Doha 2026, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67989,
                          "name": "WTT Star Contender Doha 2026, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67991,
                          "name": "WTT Star Contender Doha 2026, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67992,
                          "name": "WTT Star Contender Doha 2026, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68010,
                          "name": "WTT Feeder Parma 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68011,
                          "name": "WTT Feeder Parma 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68012,
                          "name": "WTT Feeder Parma 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68013,
                          "name": "WTT Feeder Parma 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68023,
                          "name": "WTT Feeder Parma 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68028,
                          "name": "WTT Feeder Parma 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68029,
                          "name": "WTT Feeder Parma 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68030,
                          "name": "WTT Feeder Parma 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68044,
                          "name": "WTT Feeder Parma 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68046,
                          "name": "WTT Feeder Dusseldorf II 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68047,
                          "name": "WTT Feeder Dusseldorf II 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 68048,
                          "name": "WTT Feeder Dusseldorf II 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68049,
                          "name": "Feeder Dusseldorf II 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 68050,
                          "name": "WTT Feeder Dusseldorf II 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68051,
                          "name": "WTT Feeder Dusseldorf II 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68052,
                          "name": "Feeder Dusseldorf II 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 68053,
                          "name": "Feeder Dusseldorf II 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 68059,
                          "name": "Feeder Dusseldorf II 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 68065,
                          "name": "Feeder Dusseldorf II 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 68069,
                          "name": "WTT Feeder Dusseldorf II 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68072,
                          "name": "WTT Feeder Dusseldorf II 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68076,
                          "name": "WTT Star Contender Muscat 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68077,
                          "name": "WTT Star Contender Muscat 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68078,
                          "name": "WTT Star Contender Muscat 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 68079,
                          "name": "WTT Star Contender Muscat 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68080,
                          "name": "WTT Star Contender Muscat 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68082,
                          "name": "WTT Star Contender Muscat 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68084,
                          "name": "WTT Star Contender Muscat 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68085,
                          "name": "WTT Star Contender Muscat 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68087,
                          "name": "WTT Star Contender Muscat 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68090,
                          "name": "Feeder Gdansk 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68091,
                          "name": "Feeder Gdansk 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68092,
                          "name": "Feeder Gdansk 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68093,
                          "name": "Feeder Gdansk 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 68094,
                          "name": "Feeder Gdansk 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68095,
                          "name": "Masters League",
                          "importance": 0
                        },
                        {
                          "id": 68096,
                          "name": "Feeder Gdansk 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68097,
                          "name": "Feeder Gdansk 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68100,
                          "name": "WTT Champions Frankfurt 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68101,
                          "name": "WTT Champions Frankfurt 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68102,
                          "name": "Feeder Vila Nova de Gaia 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68103,
                          "name": "Feeder Vila Nova de Gaia 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68104,
                          "name": "Feeder Gdansk 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68106,
                          "name": "WTT Champions Frankfurt 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 68107,
                          "name": "WTT Champions Frankfurt 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 68108,
                          "name": "WTT Champions Frankfurt 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 68109,
                          "name": "WTT Champions Frankfurt 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 68110,
                          "name": "Feeder Vila Nova de Gaia 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68111,
                          "name": "Feeder Vila Nova de Gaia 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68112,
                          "name": "Feeder Vila Nova de Gaia 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68113,
                          "name": "Feeder Vila Nova de Gaia 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68114,
                          "name": "Feeder Vila Nova de Gaia 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68115,
                          "name": "WTT Champions Montpellier 2025",
                          "importance": 0
                        },
                        {
                          "id": 68116,
                          "name": "WTT Champions Montpellier 2025, Women",
                          "importance": 0
                        },
                        {
                          "id": 68117,
                          "name": "WTT Champions Montpellier 2024",
                          "importance": 0
                        },
                        {
                          "id": 68118,
                          "name": "WTT Champions Montpellier 2024, Women",
                          "importance": 0
                        },
                        {
                          "id": 68119,
                          "name": "Challenger Series 2021, Week 31, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 68120,
                          "name": "WTT Star Contender London 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68121,
                          "name": "WTT Star Contender London 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68122,
                          "name": "WTT Star Contender London 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68123,
                          "name": "WTT Star Contender London 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68124,
                          "name": "WTT Star Contender London 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 68125,
                          "name": "WTT Star Contender London 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68126,
                          "name": "WTT Star Contender London 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68127,
                          "name": "WTT Star Contender London 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68128,
                          "name": "WTT Star Contender London 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68129,
                          "name": "WTT Star Contender London 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68130,
                          "name": "China Smash 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 68131,
                          "name": "China Smash 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68132,
                          "name": "China Smash 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68133,
                          "name": "China Smash 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68134,
                          "name": "China Smash 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 68135,
                          "name": "ITTF World Cup 2025, Women, Group 16",
                          "importance": 0
                        },
                        {
                          "id": 68136,
                          "name": "WTT Feeder Cappadocia II 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68137,
                          "name": "WTT Feeder Cappadocia II 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68138,
                          "name": "WTT Feeder Cappadocia II 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 68139,
                          "name": "WTT Feeder Cappadocia II 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68140,
                          "name": "WTT Feeder Cappadocia II 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68141,
                          "name": "WTT Feeder Cappadocia II 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68142,
                          "name": "WTT Feeder Cappadocia II 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68143,
                          "name": "WTT Feeder Cappadocia II 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68144,
                          "name": "WTT Feeder Cappadocia II 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68145,
                          "name": "WTT Feeder Istanbul 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 68146,
                          "name": "WTT Feeder Istanbul 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68147,
                          "name": "WTT Feeder Istanbul 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68148,
                          "name": "WTT Feeder Istanbul 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68149,
                          "name": "Challenger Series 2021, Week 10, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 68150,
                          "name": "WTT Feeder Istanbul 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68151,
                          "name": "WTT Champions Macao 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68152,
                          "name": "WTT Champions Macao 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68153,
                          "name": "WTT Champions Macao 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 68154,
                          "name": "WTT Champions Macao 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 68155,
                          "name": "WTT Champions Macao 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 68156,
                          "name": "WTT Contender Almaty 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68157,
                          "name": "WTT Contender Almaty 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68158,
                          "name": "WTT Contender Almaty 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68159,
                          "name": "WTT Contender Almaty 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68160,
                          "name": "WTT Contender Almaty 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 68161,
                          "name": "WTT Contender Almaty 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 68162,
                          "name": "WTT Contender Almaty 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 68163,
                          "name": "WTT Contender Almaty 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 68164,
                          "name": "WTT Champions Macao 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 68165,
                          "name": "WTT Contender Almaty 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 68167,
                          "name": "Kazakhstan International Open 2021, XD",
                          "importance": 0
                        },
                        {
                          "id": 68168,
                          "name": "WTT Contender Almaty 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 68169,
                          "name": "WTT Contender Almaty 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 68170,
                          "name": "WTT Contender Almaty 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 68171,
                          "name": "WTT Contender Almaty 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68172,
                          "name": "WTT Contender Almaty 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68173,
                          "name": "WTT Contender Almaty 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68174,
                          "name": "WTT Contender Almaty 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68175,
                          "name": "WTT Contender Almaty 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68176,
                          "name": "WTT Feeder Budapest 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 68177,
                          "name": "WTT Feeder Olomouc 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 68178,
                          "name": "WTT Feeder Olomouc 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68179,
                          "name": "WTT Feeder Olomouc 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68180,
                          "name": "WTT Feeder Olomouc 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68181,
                          "name": "WTT Contender Almaty 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 68182,
                          "name": "WTT Feeder Olomouc 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 68183,
                          "name": "WTT Contender Almaty 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 68184,
                          "name": "ITTF Challenge, Spanish Open 2020, WD, Quali",
                          "importance": 0
                        },
                        {
                          "id": 68185,
                          "name": "WTT Feeder Olomouc 2025, MD, Qualifying",
                          "importance": 9
                        },
                        {
                          "id": 68186,
                          "name": "WTT Feeder Olomouc 2025, WD, Qualifying",
                          "importance": 12
                        },
                        {
                          "id": 68187,
                          "name": "WTT Feeder Olomouc 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68188,
                          "name": "WTT Feeder Olomouc 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68189,
                          "name": "WTT Feeder Olomouc 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68190,
                          "name": "WTT Feeder Olomouc 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 68191,
                          "name": "WTT Contender Almaty 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 68192,
                          "name": "WTT Feeder Olomouc 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 68193,
                          "name": "WTT Feeder Olomouc 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 68194,
                          "name": "WTT Champions Macao 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 68195,
                          "name": "WTT Champions Macao 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 68196,
                          "name": "WTT Feeder Panagyurishte 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68197,
                          "name": "WTT Feeder Panagyurishte 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68198,
                          "name": "WTT Feeder Panagyurishte 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 68199,
                          "name": "WTT Feeder Panagyurishte 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68200,
                          "name": "Europe Smash Sweden 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68201,
                          "name": "Europe Smash Sweden 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68202,
                          "name": "WTT Feeder Panagyurishte 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68203,
                          "name": "Europe Smash Sweden 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68204,
                          "name": "Europe Smash Sweden 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 68205,
                          "name": "WTT Feeder Panagyurishte 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 68206,
                          "name": "WTT Feeder Panagyurishte 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 68207,
                          "name": "WTT Feeder Panagyurishte 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 68208,
                          "name": "WTT Feeder Panagyurishte 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 68209,
                          "name": "Europe Smash Sweden 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68210,
                          "name": "EU Youth Championship 2019, Boys Doubles Cadet U15",
                          "importance": 0
                        },
                        {
                          "id": 68211,
                          "name": "WTT Feeder Panagyurishte 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68213,
                          "name": "WTT Feeder Panagyurishte 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68214,
                          "name": "Europe Smash Sweden 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68215,
                          "name": "Europe Smash Sweden 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68216,
                          "name": "WTT Feeder Vientiane 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68217,
                          "name": "WTT Feeder Vientiane 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68218,
                          "name": "WTT Feeder Vientiane 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68219,
                          "name": "WTT Feeder Vientiane 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 68220,
                          "name": "WTT Feeder Vientiane 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68221,
                          "name": "WTT Feeder Spokane II 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 68222,
                          "name": "WTT Feeder Spokane II 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 68223,
                          "name": "WTT Feeder Spokane II 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 68224,
                          "name": "WTT Feeder Spokane II 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68225,
                          "name": "WTT Feeder Spokane II 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 68226,
                          "name": "WTT Feeder Vientiane 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68227,
                          "name": "WTT Feeder Vientiane 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68228,
                          "name": "WTT Feeder Vientiane 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68229,
                          "name": "WTT Feeder Vientiane 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68230,
                          "name": "Southeast Asian Games, WS",
                          "importance": 0
                        },
                        {
                          "id": 68511,
                          "name": "German Open  2020, XD",
                          "importance": 0
                        },
                        {
                          "id": 68514,
                          "name": "German Open  2020, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 68574,
                          "name": "German Open (WTP) 2019, XD",
                          "importance": 0
                        },
                        {
                          "id": 68659,
                          "name": "ITTF Challenge, Spanish Open 2020, MD",
                          "importance": 0
                        },
                        {
                          "id": 68695,
                          "name": "ITTF Challenge, Spanish Open 2020, WD",
                          "importance": 0
                        },
                        {
                          "id": 68730,
                          "name": "Challenge Plus Portugal Open 2020, MS",
                          "importance": 0
                        },
                        {
                          "id": 68789,
                          "name": "Challenge Plus Portugal Open 2020, WS",
                          "importance": 0
                        },
                        {
                          "id": 68832,
                          "name": "Challenge Plus Portugal Open 2020, MD",
                          "importance": 0
                        },
                        {
                          "id": 68845,
                          "name": "Challenge Plus Portugal Open 2020, WD",
                          "importance": 0
                        },
                        {
                          "id": 68886,
                          "name": "WTT Contender Doha 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 68887,
                          "name": "WTT Contender Doha 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 68898,
                          "name": "WTT Contender Doha 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 68906,
                          "name": "WTT Contender Doha 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 68916,
                          "name": "Singapore Smash 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 68924,
                          "name": "WTT Singapore Smash 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 68932,
                          "name": "WTT Singapore Smash 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 68956,
                          "name": "WTT Contender Nova Gorica 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 68971,
                          "name": "WTT Contender Nova Gorica 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 68979,
                          "name": "WTT Contender Nova Gorica 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 68987,
                          "name": "WTT Contender Nova Gorica 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 68992,
                          "name": "WTT Contender Durban 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 68999,
                          "name": "WTT Contender Durban 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 69007,
                          "name": "WTT Contender Durban 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 69018,
                          "name": "WTT Contender Antalya 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 69027,
                          "name": "WTT Contender Antalya 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 69032,
                          "name": "Feeder Antalya 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 69049,
                          "name": "Feeder Antalya 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 69058,
                          "name": "Feeder Antalya 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 69068,
                          "name": "Feeder Antalya 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 69134,
                          "name": "WTT Feeder Dusseldorf 2026, MD",
                          "importance": 0
                        },
                        {
                          "id": 69157,
                          "name": "WTT Feeder Dusseldorf 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 69172,
                          "name": "WTT Feeder Dusseldorf III 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 69183,
                          "name": "WTT Feeder Dusseldorf 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 69185,
                          "name": "WTT Feeder Dusseldorf 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 69192,
                          "name": "WTT Feeder Dusseldorf III 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 69202,
                          "name": "WTT Feeder Dusseldorf 2026, WS",
                          "importance": 0
                        },
                        {
                          "id": 69223,
                          "name": "WTT Feeder Dusseldorf III 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 69233,
                          "name": "ITTF World Championships Finals 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 69258,
                          "name": "ITTF World Championships Finals 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 69276,
                          "name": "ITTF World Championships Finals 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 69297,
                          "name": "ITTF China Open 2019, WS, Quali",
                          "importance": 0
                        },
                        {
                          "id": 69304,
                          "name": "ITTF World Championships Finals 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 69329,
                          "name": "United States Smash 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 69335,
                          "name": "United States Smash 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 69351,
                          "name": "United States Smash 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 69358,
                          "name": "WTT Champions Doha 2026, MS",
                          "importance": 0
                        },
                        {
                          "id": 69373,
                          "name": "WTT Champions Doha 2026, WS",
                          "importance": 0
                        },
                        {
                          "id": 69387,
                          "name": "WTT Champions Incheon 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 69390,
                          "name": "WTT Champions Incheon 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 69397,
                          "name": "WTT Champions Incheon 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 69405,
                          "name": "WTT Champions Incheon 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 69411,
                          "name": "WTT Champions Xinxiang, MS",
                          "importance": 0
                        },
                        {
                          "id": 69421,
                          "name": "WTT Champions Yokohama, WS",
                          "importance": 0
                        },
                        {
                          "id": 69425,
                          "name": "WTT Contender Amman 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 69427,
                          "name": "WTT Contender Antalya 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 69429,
                          "name": "WTT Contender Antalya 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 69434,
                          "name": "WTT Contender Buenos Aires 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 69437,
                          "name": "WTT Contender Buenos Aires 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 69440,
                          "name": "WTT Contender Durban 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 69446,
                          "name": "WTT Contender Durban 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 69450,
                          "name": "WTT Contender Lagos 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 69452,
                          "name": "WTT Contender Lagos 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 69465,
                          "name": "WTT Contender Lagos 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 69468,
                          "name": "WTT Contender Lagos 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 69471,
                          "name": "WTT Contender Lagos 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 69477,
                          "name": "WTT Contender Lagos 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 69495,
                          "name": "WTT Contender Lagos 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 69502,
                          "name": "WTT Contender Lagos 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 69508,
                          "name": "WTT Contender Lima 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 69514,
                          "name": "WTT Contender Lima 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 69516,
                          "name": "Pan American Championships 2021, MD",
                          "importance": 0
                        },
                        {
                          "id": 69520,
                          "name": "WTT Contender Lima 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 69521,
                          "name": "WTT Contender Lima 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 69530,
                          "name": "WTT Contender Lima 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 69536,
                          "name": "Pan American Championships 2021, WS",
                          "importance": 0
                        },
                        {
                          "id": 69537,
                          "name": "Pan American Championships 2021, WD",
                          "importance": 0
                        },
                        {
                          "id": 69540,
                          "name": "WTT Contender Lima 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 69542,
                          "name": "WTT Contender Lima 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 69545,
                          "name": "WTT Contender Lima 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 69546,
                          "name": "WTT Contender Lima 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 69547,
                          "name": "WTT Contender Lima 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 69551,
                          "name": "WTT Contender Lima 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 69552,
                          "name": "WTT Contender Lima 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 69560,
                          "name": "WTT Star Contender Ljubljana 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 69561,
                          "name": "WTT Star Contender Ljubljana 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 69563,
                          "name": "WTT Contender Ljubljana 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 69566,
                          "name": "WTT Contender Mendoza 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 69569,
                          "name": "WTT Contender Mendoza 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 69575,
                          "name": "WTT Contender Mendoza 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 69582,
                          "name": "WTT Contender Mendoza 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 69585,
                          "name": "WTT Contender Rio de Janeiro 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 69587,
                          "name": "WTT Contender Rio de Janeiro 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 69591,
                          "name": "WTT Contender Rio de Janeiro 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 69596,
                          "name": "WTT Contender Rio de Janeiro 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 69599,
                          "name": "WTT Contender Rio de Janeiro 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 69601,
                          "name": "WTT Contender Rio de Janeiro 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 69602,
                          "name": "WTT Feeder Beirut II 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 69609,
                          "name": "WTT Feeder Beirut II 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 69616,
                          "name": "WTT Feeder Beirut 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 69620,
                          "name": "WTT Feeder Beirut 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 69624,
                          "name": "WTT Feeder Beirut 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 69628,
                          "name": "WTT Feeder Biella 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 69631,
                          "name": "WTT Feeder Biella 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 69633,
                          "name": "WTT Feeder Biella 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 69636,
                          "name": "WTT Feeder Biella 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 69638,
                          "name": "WTT Feeder Cagliari 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 69639,
                          "name": "WTT Feeder Cagliari 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 69641,
                          "name": "WTT Feeder Cagliari 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 69646,
                          "name": "WTT Feeder Cappadocia 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69649,
                          "name": "WTT Feeder Cappadocia 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 69652,
                          "name": "WTT Feeder Cappadocia 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 69653,
                          "name": "WTT Feeder Cappadocia 2026, MD",
                          "importance": 0
                        },
                        {
                          "id": 69659,
                          "name": "WTT Feeder Cappadocia 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 69667,
                          "name": "WTT Feeder Cappadocia 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 69669,
                          "name": "WTT Feeder Cappadocia 2026, WS",
                          "importance": 0
                        },
                        {
                          "id": 69675,
                          "name": "WTT Feeder Cappadocia 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 69679,
                          "name": "WTT Feeder Cappadocia 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 69683,
                          "name": "WTT Feeder Caracas, MS",
                          "importance": 0
                        },
                        {
                          "id": 69699,
                          "name": "WTT Feeder Caracas, WD",
                          "importance": 0
                        },
                        {
                          "id": 69708,
                          "name": "WTT Feeder Caracas, WS",
                          "importance": 0
                        },
                        {
                          "id": 69713,
                          "name": "WTT Feeder Corpus Christi 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 69716,
                          "name": "WTT Feeder Corpus Christi 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 69719,
                          "name": "WTT Feeder Corpus Christi 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 69723,
                          "name": "WTT Feeder Doha II 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 69729,
                          "name": "WTT Feeder Doha II 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 69731,
                          "name": "WTT Feeder Doha II 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 69733,
                          "name": "WTT Feeder Doha II 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 69735,
                          "name": "WTT Feeder Halmstad 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 69736,
                          "name": "Lat Am & Ctrl Am Championship 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 69739,
                          "name": "WTT Feeder Halmstad 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 69741,
                          "name": "WTT Feeder Halmstad 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 69743,
                          "name": "WTT Feeder Muscat 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 69748,
                          "name": "WTT Feeder Muscat 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 69749,
                          "name": "WTT Feeder Muscat 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 69752,
                          "name": "WTT Feeder Muscat 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 69755,
                          "name": "WTT Feeder Otocec II 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 69757,
                          "name": "WTT Feeder Otocec II 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 69761,
                          "name": "WTT Feeder Otocec II 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 69762,
                          "name": "WTT Feeder Otocec II 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 69764,
                          "name": "WTT Feeder Otocec 2026, WD",
                          "importance": 0
                        },
                        {
                          "id": 69766,
                          "name": "WTT Feeder Otocec 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 69767,
                          "name": "WTT Feeder Prishtina 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 69769,
                          "name": "WTT Feeder Prishtina 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 69771,
                          "name": "WTT Feeder Prishtina 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 69773,
                          "name": "WTT Feeder Prishtina 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 69776,
                          "name": "WTT Feeder Prishtina 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 69778,
                          "name": "WTT Feeder Prishtina 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 69780,
                          "name": "WTT Feeder Prishtina 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 69781,
                          "name": "WTT Feeder Prishtina 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 69788,
                          "name": "WTT Feeder Prishtina 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 69791,
                          "name": "WTT Feeder Prishtina 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 69793,
                          "name": "WTT Feeder Spokane, MD",
                          "importance": 0
                        },
                        {
                          "id": 69794,
                          "name": "WTT Feeder Spokane, MS",
                          "importance": 0
                        },
                        {
                          "id": 69797,
                          "name": "WTT Feeder Spokane, WD",
                          "importance": 0
                        },
                        {
                          "id": 69798,
                          "name": "WTT Feeder Stockholm 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 69802,
                          "name": "Bulgaria Open (WT) 2018, Doubles Qualification",
                          "importance": 0
                        },
                        {
                          "id": 69803,
                          "name": "WTT Feeder Stockholm 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 69808,
                          "name": "WTT Feeder Stockholm 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 69812,
                          "name": "WTT Feeder Vadodara 2026, MD",
                          "importance": 0
                        },
                        {
                          "id": 69815,
                          "name": "WTT Feeder Vadodara 2026, WD",
                          "importance": 0
                        },
                        {
                          "id": 69818,
                          "name": "WTT Feeder Vadodara 2026, XD",
                          "importance": 0
                        },
                        {
                          "id": 69822,
                          "name": "WTT Finals Hong Kong, MS",
                          "importance": 0
                        },
                        {
                          "id": 69825,
                          "name": "WTT Finals Hong Kong, XD",
                          "importance": 0
                        },
                        {
                          "id": 69826,
                          "name": "WTT Saudi Smash 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 69829,
                          "name": "WTT Star Contender Bangkok 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 69832,
                          "name": "WTT Contender Zagreb 2022, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69833,
                          "name": "WTT Star Contender Bangkok 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 69841,
                          "name": "WTT Star Contender Bangkok 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 69842,
                          "name": "WTT Star Contender Bangkok 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 69847,
                          "name": "WTT Star Contender Bangkok 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 69848,
                          "name": "WTT Star Contender Bangkok 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 69850,
                          "name": "WTT Contender Novo Mesto 2021, WD",
                          "importance": 0
                        },
                        {
                          "id": 69851,
                          "name": "WTT Star Contender Bangkok 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 69852,
                          "name": "WTT Star Contender Bangkok 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 69857,
                          "name": "WTT Star Contender Foz do Iguacu 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 69862,
                          "name": "WTT Star Contender Foz do Iguacu 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 69865,
                          "name": "WTT Star Contender Goa 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 69866,
                          "name": "WTT Star Contender Goa 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 69871,
                          "name": "WTT Star Contender Goa 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 69874,
                          "name": "WTT Star Contender Goa 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 69885,
                          "name": "WTT Star Contender Goa 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 69886,
                          "name": "WTT Star Contender Goa 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 69888,
                          "name": "WTT Star Contender Goa 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 69895,
                          "name": "WTT Star Contender Goa 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 69901,
                          "name": "WTT Star Contender Lanzhou 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 71187,
                          "name": "WTT Feeder Senec 2026, WD",
                          "importance": 0
                        },
                        {
                          "id": 71188,
                          "name": "WTT Feeder Senec 2026, WS",
                          "importance": 0
                        },
                        {
                          "id": 71189,
                          "name": "WTT Feeder Senec 2026, MS",
                          "importance": 0
                        },
                        {
                          "id": 71190,
                          "name": "WTT Feeder Senec 2026, MD",
                          "importance": 0
                        },
                        {
                          "id": 71191,
                          "name": "WTT Feeder Varazdin 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71192,
                          "name": "WTT Feeder Varazdin 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71193,
                          "name": "WTT Feeder Varazdin 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71194,
                          "name": "WTT Feeder Varazdin 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71195,
                          "name": "WTT Champions Yokohama, MS",
                          "importance": 0
                        },
                        {
                          "id": 71197,
                          "name": "WTT Feeder Varazdin 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71199,
                          "name": "WTT Contender Lagos 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71200,
                          "name": "WTT Singapore Smash 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 71201,
                          "name": "WTT Contender Lagos 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71202,
                          "name": "WTT Singapore Smash 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 71203,
                          "name": "WTT Contender Lagos 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71204,
                          "name": "WTT Contender Lagos 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 71205,
                          "name": "WTT Contender Lagos 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71206,
                          "name": "WTT Contender Lagos 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71208,
                          "name": "WTT Contender Buenos Aires 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71210,
                          "name": "WTT Contender Buenos Aires 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71211,
                          "name": "WTT Contender Buenos Aires 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71212,
                          "name": "WTT Contender Buenos Aires 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71213,
                          "name": "WTT Contender Buenos Aires 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 71214,
                          "name": "World Tour Finals 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 71215,
                          "name": "Feeder Vila Nova de Gaia 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71216,
                          "name": "World Tour Finals 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 71217,
                          "name": "World Tour Finals 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 71218,
                          "name": "Feeder Vila Nova de Gaia 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71219,
                          "name": "Feeder Vila Nova de Gaia 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71221,
                          "name": "WTT Contender Buenos Aires 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 71222,
                          "name": "WTT Singapore Smash 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71223,
                          "name": "WTT Singapore Smash 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71225,
                          "name": "WTT Contender Zagreb 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 71226,
                          "name": "WTT Contender Zagreb 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 71227,
                          "name": "WTT Contender Zagreb 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 71228,
                          "name": "WTT Contender Zagreb 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 71230,
                          "name": "ITTF South American Championships 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 71231,
                          "name": "ITTF South American Championships 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 71232,
                          "name": "WTT Contender Zagreb 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71233,
                          "name": "WTT Contender Zagreb 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71234,
                          "name": "WTT Contender Zagreb 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71235,
                          "name": "WTT Contender Zagreb 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71236,
                          "name": "WTT Contender Zagreb 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71237,
                          "name": "WTT Star Contender Doha 2021, XD",
                          "importance": 0
                        },
                        {
                          "id": 71238,
                          "name": "World Team Championships Finals 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 71239,
                          "name": "ITTF World Championships Finals 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 71240,
                          "name": "World Team Championships Finals 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 71242,
                          "name": "WTT Feeder Halmstad 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 71243,
                          "name": "WTT Feeder Halmstad 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 71244,
                          "name": "WTT Feeder Manchester 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71246,
                          "name": "WTT Feeder Manchester 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71248,
                          "name": "WTT Feeder Manchester 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 71249,
                          "name": "WTT Contender Almaty 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71250,
                          "name": "WTT Contender Almaty 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71251,
                          "name": "WTT Contender Almaty 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71252,
                          "name": "WTT Contender Almaty 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71253,
                          "name": "WTT Contender Almaty 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 71254,
                          "name": "WTT Contender Almaty 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 71255,
                          "name": "WTT Contender Almaty 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71256,
                          "name": "WTT Contender Almaty 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 71257,
                          "name": "WTT Contender Tunis 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71258,
                          "name": "WTT Contender Tunis 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71259,
                          "name": "ETTU Europe Top 16 Cup 2024, Women",
                          "importance": 0
                        },
                        {
                          "id": 71260,
                          "name": "WTT Contender Doha 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 71261,
                          "name": "ETTU Europe Top 16 Cup 2024",
                          "importance": 0
                        },
                        {
                          "id": 71262,
                          "name": "WTT Star Contender Doha 2021, MD",
                          "importance": 0
                        },
                        {
                          "id": 71263,
                          "name": "WTT Contender Taiyuan 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 71264,
                          "name": "WTT Contender Taiyuan 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 71265,
                          "name": "WTT Contender Taiyuan 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 71266,
                          "name": "WTT Contender Taiyuan 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 71267,
                          "name": "WTT Contender Taiyuan 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 71268,
                          "name": "WTT Feeder Havirov 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 71269,
                          "name": "WTT Feeder Havirov 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 71270,
                          "name": "WTT Feeder Havirov 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 71271,
                          "name": "WTT Feeder Olomouc 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 71272,
                          "name": "World Tour Finals 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 71273,
                          "name": "World Tour Finals 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 71274,
                          "name": "Olympic Tournament, Team, Doubles, Women",
                          "importance": 0
                        },
                        {
                          "id": 71275,
                          "name": "Olympic Tournament, Team, Singles, Women",
                          "importance": 0
                        },
                        {
                          "id": 71276,
                          "name": "WTT Feeder Otocec II 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 71278,
                          "name": "Olympic Tournament, Team, Singles",
                          "importance": 0
                        },
                        {
                          "id": 71279,
                          "name": "Olympic Tournament, Team, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71280,
                          "name": "World Tour Finals 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 71282,
                          "name": "WTT Feeder Biella 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 71283,
                          "name": "WTT Feeder Istanbul 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71286,
                          "name": "WTT Feeder Istanbul 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71287,
                          "name": "WTT Feeder Istanbul 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71288,
                          "name": "WTT Feeder Istanbul 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71289,
                          "name": "WTT Contender Tunis 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 71290,
                          "name": "WTT Contender Tunis 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71292,
                          "name": "WTT Contender Tunis 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 71293,
                          "name": "WTT Contender Tunis 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71295,
                          "name": "WTT Contender Zagreb, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71296,
                          "name": "WTT Contender Zagreb, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71297,
                          "name": "WTT Contender Zagreb, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71298,
                          "name": "WTT Contender Zagreb, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71300,
                          "name": "WTT Contender Zagreb, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71301,
                          "name": "WTT Feeder Dusseldorf 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 71304,
                          "name": "WTT Contender Zagreb 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 71305,
                          "name": "Singapore Smash 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 71306,
                          "name": "WTT Feeder Doha 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 71307,
                          "name": "WTT Contender Mendoza 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 71309,
                          "name": "WTT Feeder Doha 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 71310,
                          "name": "WTT Feeder Doha 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 71311,
                          "name": "WTT Feeder Doha 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 71312,
                          "name": "WTT Contender Rio de Janeiro 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 71313,
                          "name": "WTT Contender Taiyuan 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 71314,
                          "name": "WTT Contender Rio de Janeiro 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 71317,
                          "name": "WTT Contender Taiyuan 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 71318,
                          "name": "WTT Contender Taiyuan 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 71319,
                          "name": "WTT Contender Taiyuan 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 71320,
                          "name": "WTT Contender Taiyuan 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 71321,
                          "name": "WTT Contender Almaty 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 71323,
                          "name": "WTT Contender Almaty 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71324,
                          "name": "WTT Contender Almaty 2023, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71325,
                          "name": "WTT Contender Almaty 2023, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71326,
                          "name": "WTT Contender Almaty 2023, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71327,
                          "name": "WTT Contender Almaty 2023, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71328,
                          "name": "WTT Saudi Smash 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 71330,
                          "name": "WTT Saudi Smash 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71331,
                          "name": "WTT Saudi Smash 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71334,
                          "name": "WTT Contender Rio de Janeiro 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 71336,
                          "name": "WTT Contender Rio de Janeiro 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 71337,
                          "name": "ITTF World Cup 2024, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 71339,
                          "name": "WTT Contender Rio de Janeiro 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71340,
                          "name": "WTT Contender Rio de Janeiro 2023, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71341,
                          "name": "ITTF World Cup 2024, Group 14",
                          "importance": 0
                        },
                        {
                          "id": 71342,
                          "name": "WTT Contender Rio de Janeiro 2023, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71343,
                          "name": "WTT Contender Rio de Janeiro 2023, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71344,
                          "name": "ITTF World Cup 2024, Group 15",
                          "importance": 0
                        },
                        {
                          "id": 71345,
                          "name": "WTT Feeder Havirov 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 71346,
                          "name": "WTT Feeder Havirov 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 71348,
                          "name": "WTT Contender Rio de Janeiro 2023, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71350,
                          "name": "WTT Contender Lima 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 71351,
                          "name": "WTT Feeder Havirov 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71352,
                          "name": "WTT Contender Budapest 2021, MD Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71353,
                          "name": "WTT Contender Lima 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71354,
                          "name": "WTT Contender Lima 2023, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71355,
                          "name": "WTT Contender Lima 2023, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71356,
                          "name": "WTT Contender Lima 2023, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71357,
                          "name": "WTT Contender Lima 2023, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71358,
                          "name": "WTT Contender Lima 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 71359,
                          "name": "WTT Feeder Dusseldorf 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 71360,
                          "name": "WTT Contender Lima 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 71363,
                          "name": "WTT Feeder Dusseldorf 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71364,
                          "name": "WTT Feeder Dusseldorf 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71366,
                          "name": "WTT Feeder Dusseldorf 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71367,
                          "name": "WTT Feeder Dusseldorf 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71369,
                          "name": "WTT Feeder Dusseldorf 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71378,
                          "name": "WTT Singapore Smash 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 71379,
                          "name": "WTT Singapore Smash 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 71380,
                          "name": "Challenger Series 2022, Week 11, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71381,
                          "name": "Challenger Series 2021, Week 27, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 71384,
                          "name": "Hungarian Open 2020, MS",
                          "importance": 0
                        },
                        {
                          "id": 71385,
                          "name": "Hungarian Open 2020, XD",
                          "importance": 0
                        },
                        {
                          "id": 71386,
                          "name": "Hungarian Open 2020, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71387,
                          "name": "Hungarian Open 2020, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71388,
                          "name": "Hungarian Open 2020, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71390,
                          "name": "Challenge Plus Portugal Open 2020, WD, Quali",
                          "importance": 0
                        },
                        {
                          "id": 71392,
                          "name": "ITTF Challenge, Spanish Open 2020, WS",
                          "importance": 0
                        },
                        {
                          "id": 71393,
                          "name": "ITTF Challenge, Spanish Open 2020, Girls",
                          "importance": 0
                        },
                        {
                          "id": 71394,
                          "name": "ITTF Challenge, Spanish Open 2020, Boys",
                          "importance": 0
                        },
                        {
                          "id": 71398,
                          "name": "ETTU Europe Cup, Teams, Stage 2, Group A",
                          "importance": 0
                        },
                        {
                          "id": 71399,
                          "name": "ETTU Europe Cup, Teams, Stage 2, Group B",
                          "importance": 0
                        },
                        {
                          "id": 71400,
                          "name": "ETTU Europe Cup, Teams, Stage 2, Group C",
                          "importance": 0
                        },
                        {
                          "id": 71401,
                          "name": "ETTU Europe Cup, Teams, Stage 2, Group D",
                          "importance": 0
                        },
                        {
                          "id": 71402,
                          "name": "WTT Contender Tunis 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71406,
                          "name": "WTT Contender Tunis 2023, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71407,
                          "name": "WTT Contender Tunis 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 71408,
                          "name": "WTT Contender Tunis 2023, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71409,
                          "name": "WTT Contender Tunis 2023, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71413,
                          "name": "Challenger Series 2021, Week 26, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71414,
                          "name": "Challenger Series 2022, Week 4, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71415,
                          "name": "Challenger Series 2022, Week 4, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 71417,
                          "name": "Challenge Plus Canada Open 2019, Girls",
                          "importance": 0
                        },
                        {
                          "id": 71418,
                          "name": "Challenge Plus Canada Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 71419,
                          "name": "Southeast Asian Games, MD",
                          "importance": 0
                        },
                        {
                          "id": 71421,
                          "name": "Southeast Asian Games, WD",
                          "importance": 0
                        },
                        {
                          "id": 71427,
                          "name": "ITTF World Cup 2019, Women, Group C",
                          "importance": 0
                        },
                        {
                          "id": 71428,
                          "name": "ITTF World Cup 2019, Women, Group B",
                          "importance": 0
                        },
                        {
                          "id": 71431,
                          "name": "Challenger Series 2022, Week 28, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71432,
                          "name": "Challenger Series 2021, Week 23, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71433,
                          "name": "German Open (WTP) 2019, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71434,
                          "name": "Challenger Series 2021, Week 23, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 71435,
                          "name": "Challenger Series 2021, Week 48, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71436,
                          "name": "Challenger Series 2021, Week 48, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 71437,
                          "name": "WTT Contender Tunis 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 71438,
                          "name": "WTT Contender Tunis 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 71439,
                          "name": "WTT Contender Tunis 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 71440,
                          "name": "WTT Contender Tunis 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 71441,
                          "name": "WTT Contender Tunis 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 71442,
                          "name": "WTT Champions Xinxiang, WS",
                          "importance": 0
                        },
                        {
                          "id": 71444,
                          "name": "WTT Champions Budapest 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 71445,
                          "name": "WTT Champions Budapest 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 71446,
                          "name": "WTT Contender Budapest 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 71447,
                          "name": "WTT Contender Budapest 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 71449,
                          "name": "WTT Singapore Smash 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71450,
                          "name": "WTT Singapore Smash 2023, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71451,
                          "name": "Challenger Series 2022, Week 25, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71453,
                          "name": "Challenger Series 2022, Week 25, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 71454,
                          "name": "Challenger Series 2021, Week 42, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71455,
                          "name": "Challenger Series 2021, Week 22, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71456,
                          "name": "Challenger Series 2021, Week 6, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71457,
                          "name": "Challenger Series 2020, Week 22, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71460,
                          "name": "Challenger Series 2021, Week 37, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71466,
                          "name": "Challenger Series 2021, Week 17, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71467,
                          "name": "Challenger Series 2021, Week 17, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 71470,
                          "name": "WTT Contender Budapest 2021, WS",
                          "importance": 0
                        },
                        {
                          "id": 71471,
                          "name": "WTT Contender Budapest 2021, XD",
                          "importance": 0
                        },
                        {
                          "id": 71472,
                          "name": "WTT Contender Doha 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 71473,
                          "name": "WTT Contender Doha 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 71474,
                          "name": "Qatar Open 2020, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71475,
                          "name": "WTT Contender Doha 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 71476,
                          "name": "Challenger Series 2022, Week 12, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71477,
                          "name": "Challenger Series 2022, Week 11, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 71478,
                          "name": "Latin America Olympic Qualif., Women, Stage 2",
                          "importance": 0
                        },
                        {
                          "id": 71479,
                          "name": "Latin America Olympic Qualification, Stage 2",
                          "importance": 0
                        },
                        {
                          "id": 71480,
                          "name": "Challenger Series 2021, Week 28, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 71481,
                          "name": "Challenger Series 2021, Week 14, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71482,
                          "name": "Challenger Series 2021, Week 7, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71484,
                          "name": "Challenger Series 2021, Week 13, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71488,
                          "name": "Challenge Plus Oman Open 2020, WS",
                          "importance": 0
                        },
                        {
                          "id": 71489,
                          "name": "ITTF Challenge, Polish Open 2020, MD, Quali",
                          "importance": 0
                        },
                        {
                          "id": 71492,
                          "name": "Qatar Open 2020, WD",
                          "importance": 0
                        },
                        {
                          "id": 71493,
                          "name": "Qatar Open 2020, WS",
                          "importance": 0
                        },
                        {
                          "id": 71494,
                          "name": "Qatar Open 2020, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71495,
                          "name": "U21 European Championship",
                          "importance": 0
                        },
                        {
                          "id": 71497,
                          "name": "U21 European Championship, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71499,
                          "name": "Qatar Open 2020, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71500,
                          "name": "Japan Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 71501,
                          "name": "Japan Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 71502,
                          "name": "Japan Open 2019, MD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71503,
                          "name": "Japan Open 2019, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71505,
                          "name": "European Championships 2018, (WS)",
                          "importance": 0
                        },
                        {
                          "id": 71506,
                          "name": "Hong Kong Open (WT) 2019, Women Doubles, Qual.",
                          "importance": 0
                        },
                        {
                          "id": 71507,
                          "name": "European Championships 2018, (WD), Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71508,
                          "name": "Brazil Open (CH) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71511,
                          "name": "ITTF China Open 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 71512,
                          "name": "ITTF China Open 2019, MD",
                          "importance": 0
                        },
                        {
                          "id": 71514,
                          "name": "ITTF China Open 2019, MD, Quali",
                          "importance": 0
                        },
                        {
                          "id": 71515,
                          "name": "ITTF China Open 2019, MS, Quali",
                          "importance": 0
                        },
                        {
                          "id": 71517,
                          "name": "ITTF China Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 71519,
                          "name": "ITTF China Open 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 71520,
                          "name": "WTT Star Contender Doha 2021, MS",
                          "importance": 0
                        },
                        {
                          "id": 71521,
                          "name": "WTT Star Contender Doha 2021, XD",
                          "importance": 0
                        },
                        {
                          "id": 71522,
                          "name": "WTT Star Contender Doha 2021, WS",
                          "importance": 0
                        },
                        {
                          "id": 71523,
                          "name": "Chile Open (CH) 2017, Girls",
                          "importance": 0
                        },
                        {
                          "id": 71525,
                          "name": "Czech Open (WT) 2018, Boys",
                          "importance": 0
                        },
                        {
                          "id": 71528,
                          "name": "Bulgaria Open (WT) 2018, U21",
                          "importance": 0
                        },
                        {
                          "id": 71530,
                          "name": "Bulgaria Open (WT) 2018, U21 Women",
                          "importance": 0
                        },
                        {
                          "id": 71531,
                          "name": "ITTF World Junior Championships 2017, Girls Qual",
                          "importance": 0
                        },
                        {
                          "id": 71532,
                          "name": "ITTF World Junior Championships 2017, Singles Qual",
                          "importance": 0
                        },
                        {
                          "id": 71533,
                          "name": "ITTF Challenge, Thailand Open 2018, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71536,
                          "name": "ITTF Challenge, Spanish Open 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71538,
                          "name": "U15 European Youth Championship, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71539,
                          "name": "World Championship 2019, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71540,
                          "name": "Swedish Open (WT) 2017, U21 Women",
                          "importance": 0
                        },
                        {
                          "id": 71541,
                          "name": "Campeonato Centroamericano, XD",
                          "importance": 0
                        },
                        {
                          "id": 71544,
                          "name": "India Open (WT) 2017, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71545,
                          "name": "India Open (WT) 2017, Women",
                          "importance": 0
                        },
                        {
                          "id": 71546,
                          "name": "India Open (WT) 2017, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71547,
                          "name": "India Open (WT) 2017",
                          "importance": 0
                        },
                        {
                          "id": 71548,
                          "name": "ITTF World Cup 2017, Group A",
                          "importance": 0
                        },
                        {
                          "id": 71549,
                          "name": "ITTF World Cup 2017, Group B",
                          "importance": 0
                        },
                        {
                          "id": 71550,
                          "name": "Korea Open (WTP) 2018, Girls",
                          "importance": 0
                        },
                        {
                          "id": 71551,
                          "name": "Challenge Plus Oman Open 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 71552,
                          "name": "ITTF Challenge, Spanish Open 2019, Boys",
                          "importance": 0
                        },
                        {
                          "id": 71553,
                          "name": "ITTF Europe Top 16 2017, Women, Placement 5-8",
                          "importance": 0
                        },
                        {
                          "id": 71554,
                          "name": "Challenger Series 2021, Week 10, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 71555,
                          "name": "WTT Star Contender Doha 2021, MD",
                          "importance": 0
                        },
                        {
                          "id": 71556,
                          "name": "Hong Kong Open (WT) 2018, Women Doubles, Qual.",
                          "importance": 0
                        },
                        {
                          "id": 71557,
                          "name": "Hungarian Open 2019, WS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71558,
                          "name": "Japan Open (WTP) 2017, U21",
                          "importance": 0
                        },
                        {
                          "id": 71559,
                          "name": "Japan Open (WTP) 2017, Doubles Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71560,
                          "name": "Austrian Open (MS) 2016, WD, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 71561,
                          "name": "Challenger Series 2021, Week 3, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71562,
                          "name": "ITTF World Cup 2016, Women, Group 3",
                          "importance": 0
                        },
                        {
                          "id": 71563,
                          "name": "World Tour, Japan Open (SS) 2015, WD Quali.",
                          "importance": 0
                        },
                        {
                          "id": 71564,
                          "name": "World Tour, Swedish Open (MS) 2015, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71565,
                          "name": "World Tour, Polish Open (MS) 2015, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71566,
                          "name": "World Tour, Polish Open (MS) 2015, WD, Quali",
                          "importance": 0
                        },
                        {
                          "id": 71567,
                          "name": "World Tour, Polish Open (MS) 2015, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 71579,
                          "name": "Asian Championships 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71580,
                          "name": "Asian Championships 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 71584,
                          "name": "European Championships, Women, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71586,
                          "name": "Asian Championships 2015, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71590,
                          "name": "World Tour, Chile Open (CS) 2015",
                          "importance": 0
                        },
                        {
                          "id": 71604,
                          "name": "World Tour, Chile Open (CS) 2015, Women Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71606,
                          "name": "World Tour, Chile Open (CS) 2015, Women",
                          "importance": 0
                        },
                        {
                          "id": 71613,
                          "name": "Challenger Series 2020, Week 51, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 71630,
                          "name": "World Tour, Czech Open (MS) 2015, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 71680,
                          "name": "World Tour, Korea Open (SS) 2015, Women Quali.",
                          "importance": 0
                        },
                        {
                          "id": 71895,
                          "name": "WTT Feeder Senec 2026, XD",
                          "importance": 0
                        },
                        {
                          "id": 71896,
                          "name": "WTT Feeder Spokane, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71897,
                          "name": "WTT Star Contender Foz do Iguacu 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 71898,
                          "name": "WTT Feeder Otocec 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 71899,
                          "name": "WTT Feeder Otocec 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 71900,
                          "name": "European Championships 2021, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71901,
                          "name": "WTT Feeder Otocec 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71902,
                          "name": "WTT Feeder Otocec 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71903,
                          "name": "WTT Feeder Otocec 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71904,
                          "name": "WTT Feeder Otocec 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71905,
                          "name": "Feeder Vila Nova de Gaia 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 71906,
                          "name": "WTT Star Contender Foz do Iguacu 2025, MS, Qual.",
                          "importance": 0
                        },
                        {
                          "id": 71907,
                          "name": "WTT Star Contender Foz do Iguacu 2025, MD, Qual.",
                          "importance": 0
                        },
                        {
                          "id": 71908,
                          "name": "WTT Star Contender Foz do Iguacu 2025, WD, Qual.",
                          "importance": 0
                        },
                        {
                          "id": 71909,
                          "name": "Feeder Vila Nova de Gaia 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71910,
                          "name": "Feeder Vila Nova de Gaia 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71911,
                          "name": "WTT Contender Buenos Aires 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 71913,
                          "name": "WTT Feeder Beirut 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71914,
                          "name": "WTT Feeder Senec 2026, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71916,
                          "name": "WTT Contender Muscat 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 71917,
                          "name": "WTT Feeder Caracas, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71918,
                          "name": "WTT Feeder Caracas, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71919,
                          "name": "WTT Feeder Caracas, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71920,
                          "name": "WTT Feeder Caracas, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71921,
                          "name": "United States Smash 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 71922,
                          "name": "United States Smash 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 71923,
                          "name": "WTT Feeder Caracas, MD",
                          "importance": 0
                        },
                        {
                          "id": 71924,
                          "name": "WTT Feeder Caracas, XD",
                          "importance": 0
                        },
                        {
                          "id": 71925,
                          "name": "WTT Contender Muscat 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71926,
                          "name": "WTT Contender Muscat 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71927,
                          "name": "WTT Feeder Cagliari 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 71928,
                          "name": "World Team Ch. Finals 2024, Women, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 71929,
                          "name": "WTT Feeder Spokane, WS",
                          "importance": 0
                        },
                        {
                          "id": 71930,
                          "name": "WTT Feeder Spokane, XD",
                          "importance": 0
                        },
                        {
                          "id": 71931,
                          "name": "Feeder Dusseldorf II 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71932,
                          "name": "Feeder Dusseldorf II 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71933,
                          "name": "Feeder Dusseldorf II 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71934,
                          "name": "Feeder Dusseldorf II 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71935,
                          "name": "Feeder Dusseldorf II 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71936,
                          "name": "WTT Star Contender Foz do Iguacu 2025, XD, Qual.",
                          "importance": 0
                        },
                        {
                          "id": 71937,
                          "name": "WTT Contender Buenos Aires 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71938,
                          "name": "WTT Feeder Cagliari 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 71939,
                          "name": "United States Smash 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71940,
                          "name": "United States Smash 2025, MS, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 71941,
                          "name": "WTT Feeder Cagliari 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71942,
                          "name": "WTT Feeder Cagliari 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71943,
                          "name": "ETTU European Championships 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 71944,
                          "name": "ETTU European Championships 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 71945,
                          "name": "ITTF South American Championships 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 71946,
                          "name": "ITTF South American Championships 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 71947,
                          "name": "ETTU European Championships 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 71953,
                          "name": "WTT Star Contender Ljubljana 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 71958,
                          "name": "WTT Star Contender Ljubljana 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 71959,
                          "name": "WTT Star Contender Ljubljana 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 71960,
                          "name": "WTT Star Contender Ljubljana 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71962,
                          "name": "WTT Star Contender Ljubljana 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71963,
                          "name": "WTT Star Contender Ljubljana 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71964,
                          "name": "WTT Star Contender Ljubljana 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71965,
                          "name": "WTT Star Contender Ljubljana 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71966,
                          "name": "WTT Feeder Otocec 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71967,
                          "name": "WTT Feeder Beirut 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71968,
                          "name": "WTT Feeder Cappadocia II 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71969,
                          "name": "WTT Contender Skopje 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71970,
                          "name": "WTT Contender Skopje 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71973,
                          "name": "WTT Contender Skopje 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71974,
                          "name": "WTT Contender Skopje 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71975,
                          "name": "WTT Contender Skopje 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71977,
                          "name": "WTT Contender Ljubljana 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 71978,
                          "name": "WTT Contender Ljubljana 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 71979,
                          "name": "China Smash 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71981,
                          "name": "China Smash 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71983,
                          "name": "China Smash 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 71984,
                          "name": "WTT Contender Ljubljana 2023, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71986,
                          "name": "WTT Contender Ljubljana 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71988,
                          "name": "WTT Contender Ljubljana 2023, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71989,
                          "name": "WTT Contender Ljubljana 2023, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71990,
                          "name": "WTT Contender Ljubljana 2023, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71991,
                          "name": "WTT Contender Zagreb, XD",
                          "importance": 0
                        },
                        {
                          "id": 71992,
                          "name": "WTT Feeder Prishtina 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71993,
                          "name": "WTT Feeder Prishtina 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71995,
                          "name": "WTT Feeder Prishtina 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71997,
                          "name": "WTT Feeder Prishtina 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71998,
                          "name": "WTT Contender Taiyuan 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72001,
                          "name": "WTT Contender Taiyuan 2026, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72002,
                          "name": "WTT Feeder Halmstad 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72004,
                          "name": "ITTF World Cup 2026, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 72005,
                          "name": "WTT Feeder Halmstad 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72006,
                          "name": "ITTF World Cup 2026, Women, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 72007,
                          "name": "WTT Feeder Halmstad 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72008,
                          "name": "WTT Feeder Halmstad 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72009,
                          "name": "WTT Feeder Halmstad 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72010,
                          "name": "WTT Contender Tunis 2023, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72011,
                          "name": "WTT Feeder Manchester 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 72012,
                          "name": "WTT Feeder Manchester 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 72013,
                          "name": "WTT Feeder Panagyurishte 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 72015,
                          "name": "ITTF World Junior Championships 2017, XD Quali",
                          "importance": 0
                        },
                        {
                          "id": 72016,
                          "name": "WTT Feeder Panagyurishte 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72018,
                          "name": "WTT Feeder Panagyurishte 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72019,
                          "name": "WTT Contender Lagos 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72021,
                          "name": "WTT Contender Lagos 2023, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72022,
                          "name": "WTT Star Contender Goa 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 72024,
                          "name": "WTT Star Contender Goa 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72025,
                          "name": "WTT Star Contender Goa 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72026,
                          "name": "WTT Star Contender Goa 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72027,
                          "name": "WTT Star Contender Goa 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72030,
                          "name": "WTT Star Contender Goa 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72031,
                          "name": "Qatar Open 2020, XD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 72032,
                          "name": "Challenger Series 2021, Week 27, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72034,
                          "name": "WTT Feeder Corpus Christi 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 72035,
                          "name": "WTT Feeder Corpus Christi 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 72038,
                          "name": "Challenger Series 2022, Week 10, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 72039,
                          "name": "WTT Contender Doha 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72040,
                          "name": "WTT Contender Doha 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72041,
                          "name": "WTT Contender Doha 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72042,
                          "name": "WTT Contender Doha 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72043,
                          "name": "WTT Contender Doha 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72044,
                          "name": "WTT Feeder Muscat 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 72045,
                          "name": "WTT Star Contender Doha 2024, WS",
                          "importance": 0
                        },
                        {
                          "id": 72046,
                          "name": "WTT Feeder Muscat 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72048,
                          "name": "WTT Star Contender Doha 2024, MD",
                          "importance": 0
                        },
                        {
                          "id": 72049,
                          "name": "WTT Star Contender Doha 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 72051,
                          "name": "WTT Singapore Smash 2022, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72052,
                          "name": "WTT Star Contender Doha 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72053,
                          "name": "WTT Star Contender Doha 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72054,
                          "name": "WTT Star Contender Doha 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72055,
                          "name": "WTT Star Contender Doha 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72056,
                          "name": "WTT Feeder Budapest 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 72057,
                          "name": "WTT Contender Lima 2024, MS",
                          "importance": 0
                        },
                        {
                          "id": 72058,
                          "name": "WTT Star Contender Doha 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72059,
                          "name": "WTT Contender Lima 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72061,
                          "name": "WTT Feeder Olomouc 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72062,
                          "name": "WTT Feeder Olomouc 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72064,
                          "name": "Challenger Series 2022, Week 7, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72065,
                          "name": "ITTF World Cup 2025, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 72066,
                          "name": "ITTF World Cup 2025, Women, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 72067,
                          "name": "ITTF World Cup 2025, Group 1",
                          "importance": 0
                        },
                        {
                          "id": 72069,
                          "name": "ITTF World Cup 2025, Group 11",
                          "importance": 0
                        },
                        {
                          "id": 72070,
                          "name": "ITTF World Cup 2025, Women, Group 13",
                          "importance": 0
                        },
                        {
                          "id": 72071,
                          "name": "ITTF World Cup 2025, Women, Group 12",
                          "importance": 0
                        },
                        {
                          "id": 72072,
                          "name": "ITTF World Cup 2025, Women, Group 11",
                          "importance": 0
                        },
                        {
                          "id": 72073,
                          "name": "ITTF World Cup 2025, Group 8",
                          "importance": 0
                        },
                        {
                          "id": 72074,
                          "name": "WTT Feeder Biella 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72075,
                          "name": "WTT Feeder Biella 2023, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72077,
                          "name": "WTT Feeder Biella 2023, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72078,
                          "name": "WTT Feeder Biella 2023, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72079,
                          "name": "ITTF World Cup 2025, Women, Group 4",
                          "importance": 0
                        },
                        {
                          "id": 72080,
                          "name": "ITTF World Cup 2025, Group 14",
                          "importance": 0
                        },
                        {
                          "id": 72081,
                          "name": "ETTU Top 16 Cup 2022",
                          "importance": 0
                        },
                        {
                          "id": 72082,
                          "name": "ETTU Top 16 Cup 2022, Women",
                          "importance": 0
                        },
                        {
                          "id": 72084,
                          "name": "WTT Feeder Havirov 2025, MS",
                          "importance": 0
                        },
                        {
                          "id": 72085,
                          "name": "Challenger Series 2022, Week 8, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 72086,
                          "name": "WTT Contender Taiyuan 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72087,
                          "name": "WTT Contender Taiyuan 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72088,
                          "name": "WTT Feeder Havirov 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72090,
                          "name": "WTT Feeder Havirov 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72092,
                          "name": "WTT Feeder Havirov 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72093,
                          "name": "WTT Feeder Havirov 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72094,
                          "name": "WTT Feeder Dusseldorf III 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 72097,
                          "name": "WTT Feeder Dusseldorf III 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 72098,
                          "name": "WTT Feeder Dusseldorf III 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 72099,
                          "name": "WTT Feeder Dusseldorf III 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 72100,
                          "name": "WTT Feeder Havirov 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72101,
                          "name": "Challenger Series 2022, Week 8, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72104,
                          "name": "Feeder Vila Nova de Gaia, MS",
                          "importance": 0
                        },
                        {
                          "id": 72105,
                          "name": "Feeder Vila Nova de Gaia, XD",
                          "importance": 0
                        },
                        {
                          "id": 72106,
                          "name": "Feeder Vila Nova de Gaia, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72108,
                          "name": "Feeder Vila Nova de Gaia, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72109,
                          "name": "Feeder Vila Nova de Gaia, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72110,
                          "name": "Feeder Vila Nova de Gaia, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72111,
                          "name": "Feeder Vila Nova de Gaia, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72113,
                          "name": "WTT Feeder Otocec II 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72114,
                          "name": "WTT Feeder Otocec II 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72116,
                          "name": "WTT Feeder Otocec II 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72117,
                          "name": "WTT Feeder Otocec II 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72118,
                          "name": "WTT Feeder Otocec II 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72120,
                          "name": "ITTF World Cup 2026, Group 2",
                          "importance": 0
                        },
                        {
                          "id": 72121,
                          "name": "ITTF World Cup 2026, Group 8",
                          "importance": 0
                        },
                        {
                          "id": 72122,
                          "name": "Star Contender Chennai 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 72123,
                          "name": "WTT Feeder Otocec 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 72124,
                          "name": "Star Contender Chennai 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 72125,
                          "name": "WTT Contender Nova Gorica 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 72126,
                          "name": "WTT Feeder Otocec 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72128,
                          "name": "WTT Feeder Otocec 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72129,
                          "name": "WTT Feeder Otocec 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72130,
                          "name": "WTT Feeder Otocec 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72131,
                          "name": "WTT Feeder Otocec 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72134,
                          "name": "Star Contender Chennai 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72135,
                          "name": "Star Contender Chennai 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72137,
                          "name": "Star Contender Chennai 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72138,
                          "name": "Star Contender Chennai 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72139,
                          "name": "Star Contender Chennai 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72140,
                          "name": "WTT Contender Taiyuan 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 72141,
                          "name": "WTT Contender Taiyuan 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 72142,
                          "name": "WTT Contender Taiyuan 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 72143,
                          "name": "WTT Contender Taiyuan 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 72144,
                          "name": "WTT Contender Taiyuan 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 72145,
                          "name": "WTT Star Contender Bangkok 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 72146,
                          "name": "WTT Star Contender Bangkok 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72147,
                          "name": "WTT Star Contender Bangkok 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72149,
                          "name": "WTT Contender Taiyuan 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72151,
                          "name": "ITTF World Cup 2026, Women, Group 12",
                          "importance": 0
                        },
                        {
                          "id": 72153,
                          "name": "WTT Star Contender Bangkok 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72154,
                          "name": "WTT Star Contender Bangkok 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72155,
                          "name": "Challenger Series 2022, Week 7, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 72156,
                          "name": "WTT Feeder Otocec 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 72157,
                          "name": "WTT Star Contender Bangkok 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72158,
                          "name": "WTT Feeder Otocec 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 72159,
                          "name": "WTT Feeder Otocec 2023, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72160,
                          "name": "WTT Feeder Otocec 2023, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72161,
                          "name": "WTT Feeder Otocec 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72162,
                          "name": "WTT Feeder Otocec 2023, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72163,
                          "name": "WTT Feeder Otocec 2023, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72165,
                          "name": "WTT Contender Lagos 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 72166,
                          "name": "WTT Contender Lagos 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72167,
                          "name": "WTT Contender Lagos 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72169,
                          "name": "WTT Contender Lagos 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72170,
                          "name": "WTT Contender Lagos 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72172,
                          "name": "WTT Contender Antalya 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 72173,
                          "name": "WTT Star Contender Ljubljana 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72174,
                          "name": "WTT Star Contender Ljubljana 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72175,
                          "name": "WTT Feeder Doha II 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 72176,
                          "name": "WTT Star Contender Ljubljana 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72177,
                          "name": "WTT Star Contender Ljubljana 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72179,
                          "name": "Contender Antalya 2023, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72180,
                          "name": "Contender Antalya 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72182,
                          "name": "WTT Star Contender Ljubljana 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72183,
                          "name": "ETTU Europe Top 16 Cup 2025, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72185,
                          "name": "ETTU Europe Top 16 Cup 2025, Women, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72186,
                          "name": "WTT Feeder Cappadocia 2025, XD",
                          "importance": 0
                        },
                        {
                          "id": 72187,
                          "name": "WTT Feeder Cappadocia 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 72188,
                          "name": "WTT Feeder Cappadocia 2026, XD",
                          "importance": 0
                        },
                        {
                          "id": 72189,
                          "name": "WTT Feeder Cappadocia 2024, XD",
                          "importance": 0
                        },
                        {
                          "id": 72190,
                          "name": "WTT Contender Muscat 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 72191,
                          "name": "WTT Contender Muscat 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 72192,
                          "name": "WTT Feeder Cappadocia 2024, WD",
                          "importance": 0
                        },
                        {
                          "id": 72193,
                          "name": "WTT Feeder Cappadocia 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72194,
                          "name": "WTT Feeder Cappadocia 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72196,
                          "name": "WTT Feeder Cappadocia 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72197,
                          "name": "WTT Feeder Cappadocia 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72198,
                          "name": "WTT Feeder Cappadocia 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72199,
                          "name": "WTT Contender Muscat 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 72200,
                          "name": "World Tour Cup Finals 2022, MS",
                          "importance": 14
                        },
                        {
                          "id": 72201,
                          "name": "World Tour Cup Finals 2022, WS",
                          "importance": 13
                        },
                        {
                          "id": 72207,
                          "name": "WTT Contender Muscat 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72208,
                          "name": "WTT Contender Muscat 2023, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72209,
                          "name": "WTT Contender Muscat 2023, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72210,
                          "name": "WTT Star Contender Lanzhou 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 72211,
                          "name": "WTT Feeder Stockholm 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 72212,
                          "name": "WTT Star Contender Lanzhou 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 72213,
                          "name": "WTT Feeder Stockholm 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 72214,
                          "name": "WTT Star Contender Lanzhou 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 72215,
                          "name": "WTT Star Contender Lanzhou 2023, WD",
                          "importance": 0
                        },
                        {
                          "id": 72216,
                          "name": "WTT Feeder Dusseldorf 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72218,
                          "name": "WTT Feeder Dusseldorf 2025, MS Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72219,
                          "name": "WTT Feeder Dusseldorf 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72220,
                          "name": "WTT Feeder Dusseldorf 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72221,
                          "name": "WTT Contender Mendoza 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72222,
                          "name": "WTT Contender Mendoza 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72224,
                          "name": "WTT Feeder Stockholm 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72225,
                          "name": "WTT Feeder Stockholm 2023, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72227,
                          "name": "WTT Feeder Stockholm 2023, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72228,
                          "name": "WTT Feeder Stockholm 2023, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72229,
                          "name": "Challenger Series 2022, Week 6, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 72230,
                          "name": "WTT Feeder Stockholm 2023, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72231,
                          "name": "WTT Feeder Doha 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72233,
                          "name": "WTT Contender Rio de Janeiro 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72235,
                          "name": "WTT Contender Rio de Janeiro 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72236,
                          "name": "WTT Contender Rio de Janeiro 2024, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72237,
                          "name": "WTT Contender Rio de Janeiro 2024, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72238,
                          "name": "Challenger Series 2021, Week 24, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 72240,
                          "name": "WTT Feeder Doha 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72242,
                          "name": "WTT Contender Rio de Janeiro 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72243,
                          "name": "WTT Contender Taiyuan 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72244,
                          "name": "WTT Contender Taiyuan 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72245,
                          "name": "Singapore Smash 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72246,
                          "name": "Singapore Smash 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72247,
                          "name": "WTT Feeder Cappadocia 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72248,
                          "name": "Challenger Series 2022, Week 6, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72249,
                          "name": "Challenger Series 2021, Week 24, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72250,
                          "name": "WTT Contender Muscat 2025, WD",
                          "importance": 0
                        },
                        {
                          "id": 72251,
                          "name": "WTT Contender Muscat 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72252,
                          "name": "WTT Contender Muscat 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72253,
                          "name": "WTT Contender Muscat 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72255,
                          "name": "WTT Contender Muscat 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72257,
                          "name": "WTT Star Contender Doha 2025, WS",
                          "importance": 0
                        },
                        {
                          "id": 72258,
                          "name": "WTT Star Contender Doha 2025, MD",
                          "importance": 0
                        },
                        {
                          "id": 72259,
                          "name": "WTT Star Contender Doha 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72260,
                          "name": "WTT Star Contender Doha 2025, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72261,
                          "name": "WTT Star Contender Doha 2025, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72263,
                          "name": "WTT Star Contender Doha 2025, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72265,
                          "name": "WTT Star Contender Doha 2025, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72267,
                          "name": "WTT Contender Tunis 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72268,
                          "name": "WTT Contender Tunis 2026, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72270,
                          "name": "Challenger Series 2022, Week 5, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 72278,
                          "name": "WTT Contender Tunis 2026, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72279,
                          "name": "Challenger Series 2022, Week 5, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72281,
                          "name": "Challenger Series 2021, Week 22, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 72289,
                          "name": "WTT Contender Muscat 2 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 72290,
                          "name": "WTT Contender Muscat 2 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 72291,
                          "name": "WTT Contender Muscat 2 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 72292,
                          "name": "WTT Contender Muscat 2 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 72293,
                          "name": "WTT Contender Muscat 2 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 72298,
                          "name": "WTT Star Contender Bangkok 2023, XD",
                          "importance": 0
                        },
                        {
                          "id": 72299,
                          "name": "Challenger Series 2022, Week 3, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 72300,
                          "name": "Challenger Series 2021, Week 21, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72301,
                          "name": "WTT Star Contender Bangkok 2023, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72302,
                          "name": "WTT Star Contender Bangkok 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72304,
                          "name": "WTT Star Contender Bangkok 2023, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72305,
                          "name": "WTT Star Contender Bangkok 2023, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72306,
                          "name": "WTT Star Contender Bangkok 2023, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72307,
                          "name": "WTT Feeder Varazdin 2026, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72308,
                          "name": "WTT Feeder Varazdin 2026, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72309,
                          "name": "WTT Feeder Varazdin 2026, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72310,
                          "name": "WTT Feeder Varazdin 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72312,
                          "name": "Feeder Dusseldorf 2022, MD",
                          "importance": 0
                        },
                        {
                          "id": 72313,
                          "name": "Feeder Dusseldorf 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 72314,
                          "name": "Feeder Dusseldorf 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 72315,
                          "name": "WTT Feeder Budapest 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 72316,
                          "name": "Challenger Series 2022, Week 2, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 72318,
                          "name": "Feeder Dusseldorf 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 72319,
                          "name": "WTT Feeder Varazdin 2026, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72320,
                          "name": "Feeder Dusseldorf 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 72322,
                          "name": "Lat Am & Ctrl Am Championship 2019, WD",
                          "importance": 0
                        },
                        {
                          "id": 72323,
                          "name": "WTT Feeder Dusseldorf 2026, WD",
                          "importance": 0
                        },
                        {
                          "id": 72324,
                          "name": "WTT Feeder Dusseldorf 2026, XD",
                          "importance": 0
                        },
                        {
                          "id": 72325,
                          "name": "WTT Feeder Dusseldorf 2026, MS",
                          "importance": 0
                        },
                        {
                          "id": 72326,
                          "name": "Challenger Series 2022, Week 1, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 72327,
                          "name": "Challenger Series 2022, Week 1, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72328,
                          "name": "WTT Contender Budapest 2022, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72329,
                          "name": "WTT Contender Budapest 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 72330,
                          "name": "WTT Contender Budapest 2022, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72331,
                          "name": "WTT Contender Budapest 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 72332,
                          "name": "ETTU Europe Cup, Women, Knockout stage",
                          "importance": 0
                        },
                        {
                          "id": 72333,
                          "name": "Singapore Smash 2026, MS",
                          "importance": 0
                        },
                        {
                          "id": 72334,
                          "name": "WTT Feeder Dusseldorf 2026, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72335,
                          "name": "Singapore Smash 2026, WS",
                          "importance": 0
                        },
                        {
                          "id": 72336,
                          "name": "WTT Feeder Dusseldorf 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72339,
                          "name": "WTT Feeder Dusseldorf 2026, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72340,
                          "name": "WTT Feeder Dusseldorf 2026, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72341,
                          "name": "WTT Feeder Dusseldorf 2026, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72342,
                          "name": "ETTU Europe Cup, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 72344,
                          "name": "Challenger Series 2022, Week 27, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72345,
                          "name": "Feeder Antalya 2023, MS",
                          "importance": 0
                        },
                        {
                          "id": 72346,
                          "name": "Japan Open 2019, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 72347,
                          "name": "ITTF Pan America Cup, WS",
                          "importance": 0
                        },
                        {
                          "id": 72348,
                          "name": "ITTF Pan America Cup, MS",
                          "importance": 0
                        },
                        {
                          "id": 72350,
                          "name": "ITTF Challenge, Spanish Open 2020, MS",
                          "importance": 0
                        },
                        {
                          "id": 72351,
                          "name": "ITTF Challenge, Spanish Open 2020, WS, Quali",
                          "importance": 0
                        },
                        {
                          "id": 72352,
                          "name": "German Open  2020, WS",
                          "importance": 0
                        },
                        {
                          "id": 72359,
                          "name": "ITTF World Cup 2019, Women, Group A",
                          "importance": 0
                        },
                        {
                          "id": 72360,
                          "name": "ITTF World Cup 2019, Women, Group D",
                          "importance": 0
                        },
                        {
                          "id": 72361,
                          "name": "Singapore Smash 2026, XD",
                          "importance": 0
                        },
                        {
                          "id": 72362,
                          "name": "German Open (WTP) 2019, WS",
                          "importance": 0
                        },
                        {
                          "id": 72363,
                          "name": "German Open (WTP) 2019, MS",
                          "importance": 0
                        },
                        {
                          "id": 72364,
                          "name": "Czech Open 2019, WD, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 72365,
                          "name": "Balkan Championships, XD",
                          "importance": 0
                        },
                        {
                          "id": 72368,
                          "name": "ITTF World Junior Championships 2017, Doubles Qual",
                          "importance": 0
                        },
                        {
                          "id": 72369,
                          "name": "World Tour, China Open (SS) 2016, Women Quali.",
                          "importance": 0
                        },
                        {
                          "id": 72371,
                          "name": "Korean Open (WT) 2017",
                          "importance": 0
                        },
                        {
                          "id": 72372,
                          "name": "Challenger Series 2021, Week 16, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72373,
                          "name": "ETTU Europe Cup, Teams, 2nd Stage, Group D",
                          "importance": 0
                        },
                        {
                          "id": 72374,
                          "name": "Feeder Antalya 2023, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72375,
                          "name": "Feeder Antalya 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72377,
                          "name": "Feeder Antalya 2023, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72378,
                          "name": "Feeder Antalya 2023, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72380,
                          "name": "World Tour, Spanish Open (MS) 2015, Qualification",
                          "importance": 0
                        },
                        {
                          "id": 72383,
                          "name": "World Tour, German Open (SS) 2015, WD Qualif.",
                          "importance": 0
                        },
                        {
                          "id": 72384,
                          "name": "Challenger Series 2022, Week 26, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72388,
                          "name": "World Tour, Qatar Open (SS) 2015, Women, Quali.",
                          "importance": 0
                        },
                        {
                          "id": 72394,
                          "name": "Feeder Antalya 2023, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72395,
                          "name": "Latin America Olympic Qualification, XD",
                          "importance": 0
                        },
                        {
                          "id": 72396,
                          "name": "WTT Feeder Otocec 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 72397,
                          "name": "WTT Feeder Otocec 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 72398,
                          "name": "WTT Feeder Otocec 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 72399,
                          "name": "Challenger Series 2021, Week 49, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 72401,
                          "name": "Challenger Series 2021, Week 15, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72403,
                          "name": "Singapore Smash 2026, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72405,
                          "name": "Singapore Smash 2026, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72407,
                          "name": "Challenger Series 2021, Week 49, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72408,
                          "name": "World Tour Cup Finals 2021, MS",
                          "importance": 0
                        },
                        {
                          "id": 72409,
                          "name": "World Tour Cup Finals 2021, WS",
                          "importance": 0
                        },
                        {
                          "id": 72410,
                          "name": "ETTU Europe Trophy, Women, Grand Final, KO stage",
                          "importance": 0
                        },
                        {
                          "id": 72411,
                          "name": "WTT Contender Lima 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 72412,
                          "name": "WTT Contender Zagreb 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 72413,
                          "name": "WTT Contender Zagreb 2022, WS",
                          "importance": 0
                        },
                        {
                          "id": 72414,
                          "name": "WTT Contender Zagreb 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 72462,
                          "name": "Challenger Series 2022, Week 24, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 72557,
                          "name": "Challenger Series 2021, Week 14, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 72673,
                          "name": "World Championships 2021, MS",
                          "importance": 0
                        },
                        {
                          "id": 72674,
                          "name": "World Championships 2021, WS",
                          "importance": 0
                        },
                        {
                          "id": 72675,
                          "name": "World Championships 2021, MD",
                          "importance": 0
                        },
                        {
                          "id": 72856,
                          "name": "Challenger Series 2022, Week 23, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 72878,
                          "name": "Czech Open 2021, WD",
                          "importance": 0
                        },
                        {
                          "id": 73772,
                          "name": "Challenger Series 2021, Week 46, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 73820,
                          "name": "WTT Star Contender Goa 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 74100,
                          "name": "ETTU U21 European Championship 2021, MS",
                          "importance": 0
                        },
                        {
                          "id": 74102,
                          "name": "ETTU U21 European Championship 2021, WS",
                          "importance": 0
                        },
                        {
                          "id": 74103,
                          "name": "WTT Contender Novo Mesto 2021, XD",
                          "importance": 0
                        },
                        {
                          "id": 74107,
                          "name": "WTT Contender Lasko 2021, MD Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74237,
                          "name": "Challenger Series 2022, Week 21, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 74240,
                          "name": "Challenger Series 2022, Week 20, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 74259,
                          "name": "Challenger Series 2021, Week 45, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 74352,
                          "name": "WTT Star Contender Goa 2023, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74353,
                          "name": "WTT Star Contender Goa 2023, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74377,
                          "name": "Challenger Series 2021, Week 12, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 74396,
                          "name": "Challenger Series 2022, Week 21, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 74454,
                          "name": "WTT Star Contender Goa 2023, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74734,
                          "name": "Challenger Series 2021, Week 45, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 74990,
                          "name": "Challenger Series 2021, Week 44, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 75258,
                          "name": "Challenger Series 2021, Week 44, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 75617,
                          "name": "WTT Contender Amman 2023, WS",
                          "importance": 0
                        },
                        {
                          "id": 75629,
                          "name": "Challenger Series 2022, Week 19, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 76546,
                          "name": "Challenger Series 2021, Week 41, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 76901,
                          "name": "Challenger Series 2021, Week 41, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 77886,
                          "name": "Challenger Series 2021, Week 40, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 78263,
                          "name": "Challenger Series 2021, Week 39, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 78351,
                          "name": "WTT Star Contender Doha 2022, MS",
                          "importance": 0
                        },
                        {
                          "id": 78352,
                          "name": "WTT Star Contender Doha 2022, XD",
                          "importance": 0
                        },
                        {
                          "id": 78443,
                          "name": "WTT Star Contender Doha 2022, WD",
                          "importance": 0
                        },
                        {
                          "id": 78649,
                          "name": "WTT Star Contender Doha 2022, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78651,
                          "name": "WTT Star Contender Doha 2022, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78654,
                          "name": "WTT Star Contender Doha 2022, WD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78765,
                          "name": "Challenger Series 2022, Week 12, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 78784,
                          "name": "Challenger Series 2021, Week 38, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 78785,
                          "name": "WTT Star Contender Doha 2021, MS",
                          "importance": 0
                        },
                        {
                          "id": 78787,
                          "name": "WTT Star Contender Doha 2021, WS",
                          "importance": 0
                        },
                        {
                          "id": 79172,
                          "name": "ETTU Top 16 Cup 2021",
                          "importance": 0
                        },
                        {
                          "id": 79245,
                          "name": "ETTU Top 16 Cup 2021, Women",
                          "importance": 0
                        },
                        {
                          "id": 79645,
                          "name": "Challenger Series 2021, Week 35, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 79731,
                          "name": "Czech Open 2021, WS",
                          "importance": 0
                        },
                        {
                          "id": 79768,
                          "name": "Challenger Series 2021, Week 34, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 79770,
                          "name": "Czech Open 2021, MS",
                          "importance": 0
                        },
                        {
                          "id": 79827,
                          "name": "WTT Contender Budapest 2021, MS",
                          "importance": 0
                        },
                        {
                          "id": 79849,
                          "name": "Challenger Series 2021, Week 33, Session 1",
                          "importance": 0
                        },
                        {
                          "id": 79942,
                          "name": "Challenger Series 2021, Week 31, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 79944,
                          "name": "Challenger Series 2021, Week 30, Session 2",
                          "importance": 0
                        },
                        {
                          "id": 91071,
                          "name": "ETTU Europe Trophy, Gr Final, Placement 7-10",
                          "importance": 0
                        },
                        {
                          "id": 98173,
                          "name": "ETTU Europe Trophy, Women, Gr Final, Pl. 5-8",
                          "importance": 0
                        },
                        {
                          "id": 101602,
                          "name": "WTT Contender Taiyuan 2026, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101821,
                          "name": "WTT Feeder Corpus Christi 2024, MS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101823,
                          "name": "WTT Feeder Corpus Christi 2024, WS, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101865,
                          "name": "WTT Feeder Corpus Christi 2024, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101875,
                          "name": "WTT Feeder Prishtina 2025, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101970,
                          "name": "WTT Feeder Lille 2026, MD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 102074,
                          "name": "WTT Feeder Dusseldorf III 2023, MD",
                          "importance": 0
                        },
                        {
                          "id": 102174,
                          "name": "WTT Feeder Doha 2026, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 102202,
                          "name": "WTT Feeder Lille 2026, XD, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103909,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 13",
                          "importance": 0
                        },
                        {
                          "id": 103910,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 10",
                          "importance": 0
                        },
                        {
                          "id": 103911,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 12",
                          "importance": 0
                        },
                        {
                          "id": 103912,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 11",
                          "importance": 0
                        },
                        {
                          "id": 103913,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 14",
                          "importance": 0
                        },
                        {
                          "id": 103914,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 16",
                          "importance": 0
                        },
                        {
                          "id": 103916,
                          "name": "World Team Championships Finals 2026, Group 4",
                          "importance": 0
                        },
                        {
                          "id": 103917,
                          "name": "World Team Championships Finals 2026, Group 11",
                          "importance": 0
                        },
                        {
                          "id": 103918,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 9",
                          "importance": 0
                        },
                        {
                          "id": 103919,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 15",
                          "importance": 0
                        },
                        {
                          "id": 103920,
                          "name": "World Team Championships Finals 2026, Group 10",
                          "importance": 0
                        },
                        {
                          "id": 103921,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 4",
                          "importance": 0
                        },
                        {
                          "id": 103922,
                          "name": "World Team Championships Finals 2026, Group 9",
                          "importance": 0
                        },
                        {
                          "id": 103923,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 3",
                          "importance": 0
                        },
                        {
                          "id": 103924,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 8",
                          "importance": 0
                        },
                        {
                          "id": 103925,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 5",
                          "importance": 0
                        },
                        {
                          "id": 103926,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 7",
                          "importance": 0
                        },
                        {
                          "id": 103927,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 6",
                          "importance": 0
                        },
                        {
                          "id": 103928,
                          "name": "World Team Championships Finals 2026, Group 14",
                          "importance": 0
                        },
                        {
                          "id": 103929,
                          "name": "World Team Championships Finals 2026, Group 15",
                          "importance": 0
                        },
                        {
                          "id": 103930,
                          "name": "World Team Championships Finals 2026, Group 12",
                          "importance": 0
                        },
                        {
                          "id": 103931,
                          "name": "World Team Championships Finals 2026, Group 3",
                          "importance": 0
                        },
                        {
                          "id": 103932,
                          "name": "World Team Championships Finals 2026, Group 7",
                          "importance": 0
                        },
                        {
                          "id": 103933,
                          "name": "World Team Championships Finals 2026, Group 8",
                          "importance": 0
                        },
                        {
                          "id": 103934,
                          "name": "World Team Championships Finals 2026, Group 6",
                          "importance": 0
                        },
                        {
                          "id": 103935,
                          "name": "World Team Championships Finals 2026, Group 5",
                          "importance": 0
                        },
                        {
                          "id": 103936,
                          "name": "World Team Championships Finals 2026, Group 16",
                          "importance": 0
                        },
                        {
                          "id": 103937,
                          "name": "World Team Championships Finals 2026, Group 13",
                          "importance": 0
                        },
                        {
                          "id": 103946,
                          "name": "World Team Championships Finals 2026, WS",
                          "importance": 0
                        },
                        {
                          "id": 103947,
                          "name": "World Team Championships Finals 2026, MS",
                          "importance": 0
                        },
                        {
                          "id": 104043,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 1",
                          "importance": 0
                        },
                        {
                          "id": 104044,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 2",
                          "importance": 0
                        },
                        {
                          "id": 104107,
                          "name": "World Team Championships Finals 2026, Group 1",
                          "importance": 0
                        },
                        {
                          "id": 104108,
                          "name": "World Team Championships Finals 2026, Group 2",
                          "importance": 0
                        },
                        {
                          "id": 104298,
                          "name": "World Team Championships Finals 2026, Knockout Stage",
                          "importance": 10
                        },
                        {
                          "id": 104302,
                          "name": "World Team Championships Finals, Women 2026, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 104405,
                          "name": "World Team Championships Finals 2026, Group 1",
                          "importance": 0
                        },
                        {
                          "id": 104406,
                          "name": "World Team Championships Finals 2026, Group 2",
                          "importance": 0
                        },
                        {
                          "id": 104553,
                          "name": "World Team Championsh. Finals 2026, Women, Gr. 2",
                          "importance": 0
                        },
                        {
                          "id": 104621,
                          "name": "World Team Ch. Finals 2026, Women, Knockout Stage",
                          "importance": 0
                        },
                        {
                          "id": 104622,
                          "name": "World Team Champ. Finals 2026, Knockout Stage",
                          "importance": 0
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Tournaments By Class"
      }
    },
    "/matches-by-date": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches By Date",
        "description": "This endpoint allows you to retrieve the matches from a specific date. The date has a format of YYYY-DD-MM.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet matches from a specific **date**<br />`https://table-tennis.sportmicro.com/matches-by-date?date=eq.{date}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-by-date.date"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-by-date"
                  },
                  "type": "array",
                  "example": [
                    {
                      "date": "2012-07-28",
                      "matches": [
                        {
                          "id": 244866,
                          "name": "Adam Pattantyus vs William Henzell",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:00:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 136334,
                          "home_team_id": 124236,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "William Henzell",
                          "home_team_name": "Adam Pattantyus",
                          "away_team_score": 4,
                          "home_team_score": 1,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "2b8abb13f69c5f62ca997231cc420e57d742747008103f0da60398ffffbaa83d",
                          "home_team_hash_image": "96a047bc4c9587a207979816a77706b70434f46c76d83db63468cd5088445985",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244867,
                          "name": "Gustavo Tsuboi vs Soumyajit Ghosh",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:00:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 118140,
                          "home_team_id": 119093,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Soumyajit Ghosh",
                          "home_team_name": "Gustavo Tsuboi",
                          "away_team_score": 4,
                          "home_team_score": 2,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "6d12bf560f2b458b61839447697e55da4be106c60d8d44063a018478672117be",
                          "home_team_hash_image": "1df2e15768cf9614d54bcd7e6952a06c0bf932a0c1b4d06ee91507eded6d0f89",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244878,
                          "name": "Alamiyan N. vs Justin Han",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:00:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 137393,
                          "home_team_id": 119095,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Justin Han",
                          "home_team_name": "Alamiyan N.",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "60bc85ce833dd6ce32be7e252997d64154174132184b226e68b98f15acbd91e1",
                          "home_team_hash_image": "03f8628800a6ccfdcf4b9c9622f7f9f543e083a78f73bd2834522cbe15d2d247",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244879,
                          "name": "Carlos Machado vs Quadri Aruna",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:00:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 117657,
                          "home_team_id": 123726,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Quadri Aruna",
                          "home_team_name": "Carlos Machado",
                          "away_team_score": 4,
                          "home_team_score": 2,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "d2e315b0de3ef9ea8f86043730db6dd4d32bed5ec5644210f3cb8f8f9a080f30",
                          "home_team_hash_image": "c75c9b51a415f42bbdb9a4d31c92147c9a2a7df12b3006884d2cfedbc9487aa3",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244880,
                          "name": "Allan Bentsen vs Daniel Zwickl",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:00:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 137831,
                          "home_team_id": 273875,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Daniel Zwickl",
                          "home_team_name": "Allan Bentsen",
                          "away_team_score": 4,
                          "home_team_score": 1,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "2b24e4bbcc6354771c1b01c2b498790808f085ab21e2c7759307449ef2ae1e77",
                          "home_team_hash_image": "9f75944b2bd1fa71e05ac3e4f5b8bdb8156796253849466e1c6ec97254c1f3c3",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244882,
                          "name": "Tetyana Bilenko vs Paula Medina",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T10:15:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 137411,
                          "home_team_id": 122505,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Paula Medina",
                          "home_team_name": "Tetyana Bilenko",
                          "away_team_score": 1,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "872d0b215cf3585e6d5f57f8b2263fb0033163cfaa293d73a3f0eafb8db3487b",
                          "home_team_hash_image": "a7ce1c7e968d0989ab211adcd81aa9460a8a23a1b668b0e44f6128e1c1b35f26",
                          "tournament_importance": 8
                        },
                        {
                          "id": 244891,
                          "name": "Oleksandr Didukh vs Marcelo Aguirre",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:45:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 123146,
                          "home_team_id": 127458,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Marcelo Aguirre",
                          "home_team_name": "Oleksandr Didukh",
                          "away_team_score": 3,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "08f07ba78fd61da8e8b8c6db955edc32e184887ac1c2d5f21b26ef8d49390d61",
                          "home_team_hash_image": "80aaf272c604a2bab3eb6872a41db0f614076afe66daa834cd122617a6a02e80",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244902,
                          "name": "Alexandra Privalova vs Xing Han",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T11:00:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 275513,
                          "home_team_id": 136287,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Xing Han",
                          "home_team_name": "Alexandra Privalova",
                          "away_team_score": 2,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "8d906b94059581f7df06b44a98188732ff72a90dd2a79d2ed787aa902256584d",
                          "home_team_hash_image": "3d8d1879e8e4b99dcbc4903ef4aa43f76d2d6c3e6c7516442fb6454ec18428bf",
                          "tournament_importance": 8
                        },
                        {
                          "id": 244904,
                          "name": "Jean-Michel Saive vs Marko Jevtovic",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:45:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 121498,
                          "home_team_id": 136909,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Marko Jevtovic",
                          "home_team_name": "Jean-Michel Saive",
                          "away_team_score": 1,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "a0ed9f4615dab5508841be774dabf8351e75cdfad5086e8f471681b3c73ee8ac",
                          "home_team_hash_image": "61756a1e6db5c1497d9735ac1f4ce5fbd4df69c0203d44e2d96c07fb232dc9c8",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244905,
                          "name": "Yana Noskova vs Dina Meshref",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T14:15:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 118655,
                          "home_team_id": 120657,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Dina Meshref",
                          "home_team_name": "Yana Noskova",
                          "away_team_score": 4,
                          "home_team_score": 3,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "3042018e4ae4ea00a7836092917fd8c427b0b9793783435b2efd495d5bd90a1e",
                          "home_team_hash_image": "a186ed7d0d20e95ba15ec64fd90e36d980c64d54fa05be00b3171348e0c49b65",
                          "tournament_importance": 8
                        },
                        {
                          "id": 244918,
                          "name": "Mihai Bobocica vs Andy Pereira",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:45:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 123232,
                          "home_team_id": 121492,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Andy Pereira",
                          "home_team_name": "Mihai Bobocica",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "6352123a785c37e6e23d54f0db1b28f39886c1c73ef6b92b490097eb84b37b15",
                          "home_team_hash_image": "334f404fed4ee2f47e2ea906849b64710a6cc300db837ceda1e4573c619b8058",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244926,
                          "name": "Melek Hu vs Mo Zhang",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T13:30:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 116447,
                          "home_team_id": 117768,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Mo Zhang",
                          "home_team_name": "Melek Hu",
                          "away_team_score": 4,
                          "home_team_score": 3,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "f89912f6795b7a616280bba069e6f6e8220ef18225305aa611788699e2437672",
                          "home_team_hash_image": "46c44d96b8ff88323049fcf36a9c851f38a3e4fc18ea6bc005ac3421a5832620",
                          "tournament_importance": 8
                        },
                        {
                          "id": 244927,
                          "name": "Yifang Xian vs Sarah Hanffou",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T14:15:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 119884,
                          "home_team_id": 275980,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Sarah Hanffou",
                          "home_team_name": "Yifang Xian",
                          "away_team_score": 1,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "1e8765c5bbface2f5f0a638e42142b5cf86ef857c6ce6a645d08336a19592a81",
                          "home_team_hash_image": "eb3b90c97f2252689643206a49aecf2fbbfbd57c6942c71e45a60e60c798e842",
                          "tournament_importance": 8
                        },
                        {
                          "id": 244941,
                          "name": "Iveta Vacenovska vs Nanthana Komwong",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T19:30:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 122417,
                          "home_team_id": 122137,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Nanthana Komwong",
                          "home_team_name": "Iveta Vacenovska",
                          "away_team_score": 1,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "3d1d3166552dc620020e75db5d614fdca3c4314d37a128a773bcbd18f93c6ed5",
                          "home_team_hash_image": "70c1f2a0a96a55226a6ec4fbf778bfff602d50daac701008556f94cd15597430",
                          "tournament_importance": 8
                        },
                        {
                          "id": 244944,
                          "name": "Margaryta Pesotska vs Sara Ramirez",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T20:15:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 136473,
                          "home_team_id": 116215,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Sara Ramirez",
                          "home_team_name": "Margaryta Pesotska",
                          "away_team_score": 1,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "748ae028ac141ed39c2a2b89297212af85c12f2771f71aa6020581b637f19ada",
                          "home_team_hash_image": "ac889d2d2d5eba27b5457f86e574afa5cabfe6de7cb4dac02d0998a45da69de2",
                          "tournament_importance": 8
                        },
                        {
                          "id": 244946,
                          "name": "Andy Pereira vs Yoshua Shing",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T09:30:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 133190,
                          "home_team_id": 123232,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Yoshua Shing",
                          "home_team_name": "Andy Pereira",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "2e4ed07f7ffa74cdecacfdd1e7c570059cf55df21ed672129645ac725b1eea1a",
                          "home_team_hash_image": "6352123a785c37e6e23d54f0db1b28f39886c1c73ef6b92b490097eb84b37b15",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244953,
                          "name": "Par Gerell vs El-Sayed Lashin",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:45:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 123942,
                          "home_team_id": 122331,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "El-Sayed Lashin",
                          "home_team_name": "Par Gerell",
                          "away_team_score": 4,
                          "home_team_score": 3,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "ad117d0d4518f5287bbf883ff7f365019436dffeb59af82dc54819f501ecf272",
                          "home_team_hash_image": "a53a1160206aa77e13c3402d05563f9fb507664be4319910e9298e8316e27455",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244983,
                          "name": "Cornelia Molnar vs Zhang L.",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T10:15:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 118392,
                          "home_team_id": 275992,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Zhang L.",
                          "home_team_name": "Cornelia Molnar",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "f7c8203a0d93e770c7740c7d1d5c563e4519729c9c23243bdfdea1c39dcf1c9b",
                          "home_team_hash_image": "c68014ba9db475c35d3707f94374733b1506c9ca8e269ffb7454260f09eed25f",
                          "tournament_importance": 8
                        },
                        {
                          "id": 244984,
                          "name": "Mo Zhang vs Aia Mohamed",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T08:00:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 117839,
                          "home_team_id": 116447,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Aia Mohamed",
                          "home_team_name": "Mo Zhang",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "a43ac011eb1637083e32b76152ed8a1048f1ad7c5f75fbd2e30a0d91f3a6a9d0",
                          "home_team_hash_image": "f89912f6795b7a616280bba069e6f6e8220ef18225305aa611788699e2437672",
                          "tournament_importance": 8
                        },
                        {
                          "id": 244985,
                          "name": "Dana Hadacova vs Miao Miao",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T11:00:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 275994,
                          "home_team_id": 275995,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Miao Miao",
                          "home_team_name": "Dana Hadacova",
                          "away_team_score": 4,
                          "home_team_score": 2,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "8a3c773406f0dff3094bf364fac0320aecffc244ee55f0a9c4fb05b6435e0f7e",
                          "home_team_hash_image": "5b5af2f7aba450117daf181e0594ef7de4b9aed9e5cb43af984763474a689017",
                          "tournament_importance": 8
                        },
                        {
                          "id": 244989,
                          "name": "Yaroslav Zhmudenko vs Omar Assar",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:45:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 118372,
                          "home_team_id": 119820,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Omar Assar",
                          "home_team_name": "Yaroslav Zhmudenko",
                          "away_team_score": 4,
                          "home_team_score": 1,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "f8bee2c063ba8107928bcdf117ea42147c67c740680a9fd5b101591b28bcd0fc",
                          "home_team_hash_image": "d57b33e4eff243a343a87f92b450a8bd8480d4e20420e0280ba487a2cfc1256f",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244994,
                          "name": "Song Liu vs Suraju Saka",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:45:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 136910,
                          "home_team_id": 275984,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Suraju Saka",
                          "home_team_name": "Song Liu",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "8436b8b151bc9c7a8a6c102f4b1bde34830494aed4af5832b3477dd83f84159f",
                          "home_team_hash_image": "6bd8f8b1a1f1db1195457955a403213199fd5a08f2528341418d87376cc4e833",
                          "tournament_importance": 11
                        },
                        {
                          "id": 244999,
                          "name": "Yuan Tian vs Berta Rodriguez",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T14:15:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 275998,
                          "home_team_id": 137342,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Berta Rodriguez",
                          "home_team_name": "Yuan Tian",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "90deb71c463a0e24fb7112a709629a6a87e7e73b4bf6e784fbeb59b7b6739a19",
                          "home_team_hash_image": "0231de7268e41cc00f518fda5e67b6592365f9d111b73a9d788175f79dfecfdc",
                          "tournament_importance": 8
                        },
                        {
                          "id": 245000,
                          "name": "Jong Kim vs Cornelia Molnar",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T19:30:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 275992,
                          "home_team_id": 275983,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Cornelia Molnar",
                          "home_team_name": "Jong Kim",
                          "away_team_score": 1,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "c68014ba9db475c35d3707f94374733b1506c9ca8e269ffb7454260f09eed25f",
                          "home_team_hash_image": "0dff46aab0609e75ad32ac19c3b15b3748f3ff8866107ce8fde81129ad56bcf2",
                          "tournament_importance": 8
                        },
                        {
                          "id": 245001,
                          "name": "Yi Hua Huang vs Miao Miao",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T20:15:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 275994,
                          "home_team_id": 117346,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Miao Miao",
                          "home_team_name": "Yi Hua Huang",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "8a3c773406f0dff3094bf364fac0320aecffc244ee55f0a9c4fb05b6435e0f7e",
                          "home_team_hash_image": "b269273da0d4c34395dc7a774c3dcd2485bb868f4a0b8416c545b7f1e286f083",
                          "tournament_importance": 8
                        },
                        {
                          "id": 245004,
                          "name": "Nanthana Komwong vs Lei Huang Mendes",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T11:00:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 275991,
                          "home_team_id": 122417,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Lei Huang Mendes",
                          "home_team_name": "Nanthana Komwong",
                          "away_team_score": 3,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "ca92d7ce8d9a1c1749279fcee640011b76696901ec4d76a1b714595bf939acbb",
                          "home_team_hash_image": "3d1d3166552dc620020e75db5d614fdca3c4314d37a128a773bcbd18f93c6ed5",
                          "tournament_importance": 8
                        },
                        {
                          "id": 245020,
                          "name": "Natalia Partyka vs Mie Skov Petersen",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T20:15:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 129861,
                          "home_team_id": 120711,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Mie Skov Petersen",
                          "home_team_name": "Natalia Partyka",
                          "away_team_score": 3,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "d46b0a6e058506efd0d0a058a6e07b997a0758e39ffd6046d942c2e278dce0c1",
                          "home_team_hash_image": "e6ef2998910c578db007a3878bdc650f5dbcd66a9478a48009324eeb30c162d5",
                          "tournament_importance": 8
                        },
                        {
                          "id": 245021,
                          "name": "Sara Ramirez vs Ankita Das",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T11:00:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 275989,
                          "home_team_id": 136473,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Ankita Das",
                          "home_team_name": "Sara Ramirez",
                          "away_team_score": 1,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "383075fd7f983d52edb30a333ac5e160783ca1cb13f5cf6f8d683712122313ec",
                          "home_team_hash_image": "748ae028ac141ed39c2a2b89297212af85c12f2771f71aa6020581b637f19ada",
                          "tournament_importance": 8
                        },
                        {
                          "id": 245060,
                          "name": "Justin Han vs Mawussi Agbetoglo",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T08:45:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 276000,
                          "home_team_id": 137393,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Mawussi Agbetoglo",
                          "home_team_name": "Justin Han",
                          "away_team_score": 2,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "7d8ec28e3f9d942a7055198c4d871b3b9082ff1d8aca275079c497a6a8521eaf",
                          "home_team_hash_image": "60bc85ce833dd6ce32be7e252997d64154174132184b226e68b98f15acbd91e1",
                          "tournament_importance": 11
                        },
                        {
                          "id": 245067,
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T08:45:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 136156,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Saheed Idowu",
                          "away_team_score": 2,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "a423922383d1ba05aa4f236186e674e0d956b41e9956506e70afa76b309917a7",
                          "tournament_importance": 11
                        },
                        {
                          "id": 245068,
                          "name": "Mie Skov Petersen vs Nadeen El-Dawlatly",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T10:15:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 276005,
                          "home_team_id": 129861,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Nadeen El-Dawlatly",
                          "home_team_name": "Mie Skov Petersen",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "d254efd528257aef343409f49b287b90b3cb4e31279cf33951bd6a0a11acbf49",
                          "home_team_hash_image": "d46b0a6e058506efd0d0a058a6e07b997a0758e39ffd6046d942c2e278dce0c1",
                          "tournament_importance": 8
                        },
                        {
                          "id": 245069,
                          "name": "Ligia Silva vs Anolyn Lulu",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T08:00:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 276010,
                          "home_team_id": 136872,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Anolyn Lulu",
                          "home_team_name": "Ligia Silva",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "ef63711587f21d361405626f6e7a10449a5a492cd839aba7ea51136eeb8da5e2",
                          "home_team_hash_image": "44dea579e1d27592fac9492ded9b81b4b3deea1ffb1a4bff4a8d7fb34e4bc191",
                          "tournament_importance": 8
                        },
                        {
                          "id": 245070,
                          "name": "Matiss Burgis vs Pierre-Luc Hinse",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T15:00:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 276004,
                          "home_team_id": 275982,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Pierre-Luc Hinse",
                          "home_team_name": "Matiss Burgis",
                          "away_team_score": 3,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "1c2edd2646d960a56bdca7cd0b0ea4be659ea4644bc1606b753d216a9414feb5",
                          "home_team_hash_image": "b45349c21eb11425a67b5b1f41def2cf0a6e5fa7ec3597f7c8ec61cea53cea8c",
                          "tournament_importance": 11
                        },
                        {
                          "id": 245074,
                          "name": "Segun Toriola vs Andre Ho",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T09:30:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 276011,
                          "home_team_id": 123949,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Andre Ho",
                          "home_team_name": "Segun Toriola",
                          "away_team_score": 1,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "864f856190eb0559d2d48a902cbd270bb75b823e72b21aacb373a7af2ebf5bee",
                          "home_team_hash_image": "d546085f9313e7db455aa52c4bd02f2e8646cbf3dcd395ea00c1c21c80326fe4",
                          "tournament_importance": 11
                        },
                        {
                          "id": 245075,
                          "name": "Zengyi Wang vs Hugo Hoyama",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:00:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 276002,
                          "home_team_id": 122206,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Hugo Hoyama",
                          "home_team_name": "Zengyi Wang",
                          "away_team_score": 3,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "e2437dc83fbfab2ee5264b26e87d0ffdb3dc8d661d5204ae47d6783228b1e751",
                          "home_team_hash_image": "2828ed19886c50919120788370c2f5214c4e5b448771a10028563b6218b2c199",
                          "tournament_importance": 11
                        },
                        {
                          "id": 245077,
                          "name": "Jörgen Persson vs Segun Toriola",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T18:00:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 123949,
                          "home_team_id": 275987,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Segun Toriola",
                          "home_team_name": "Jörgen Persson",
                          "away_team_score": 1,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "d546085f9313e7db455aa52c4bd02f2e8646cbf3dcd395ea00c1c21c80326fe4",
                          "home_team_hash_image": "e7d720872ce1faa9c4548749ba5bef43b871bc743ece4cf77d7349e63a8d1e16",
                          "tournament_importance": 11
                        },
                        {
                          "id": 245078,
                          "name": "Joanna Parker vs Luca Kumahara",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T13:30:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 117565,
                          "home_team_id": 276007,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Luca Kumahara",
                          "home_team_name": "Joanna Parker",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "26f1046d885fd1aa7dab1a7afb5ea6199d7df9e3a1811f40ffb33b2694c8ec84",
                          "home_team_hash_image": "11d1054f228902acb415dcde6c03b9c2877909cdc8f06ab634af08ec65ca930d",
                          "tournament_importance": 8
                        },
                        {
                          "id": 245081,
                          "name": "Sarah Hanffou vs Tvin Carole Moumjoghlian",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T08:00:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 276013,
                          "home_team_id": 119884,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Tvin Carole Moumjoghlian",
                          "home_team_name": "Sarah Hanffou",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "d35bd55752186813a7b9ab85ca93d1d40bd54916ab0455bde434419fc144e92d",
                          "home_team_hash_image": "1e8765c5bbface2f5f0a638e42142b5cf86ef857c6ce6a645d08336a19592a81",
                          "tournament_importance": 8
                        },
                        {
                          "id": 245083,
                          "name": "Krisztina Toth vs Fabiola Ramos",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T10:15:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 276018,
                          "home_team_id": 275996,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Fabiola Ramos",
                          "home_team_name": "Krisztina Toth",
                          "away_team_score": 3,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "3bf5b76862a887758cf5304409a8d9b0dfd5dfdfab545b16ce9cd2f714717461",
                          "home_team_hash_image": "72cff7d79206c8bf2165d62dcac8e0bf8f7ec9efcf7d7dade29c321884f3f57a",
                          "tournament_importance": 8
                        },
                        {
                          "id": 245091,
                          "name": "Luca Kumahara vs Yasmin Farah Hassan",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 11813,
                          "season_id": 38130,
                          "start_time": "2012-07-28T08:45:00+00:00",
                          "league_name": "Olympic Games Women - Singles",
                          "season_name": "Olympic Games Women 2012",
                          "away_team_id": 276019,
                          "home_team_id": 117565,
                          "status_reason": "Ended",
                          "tournament_id": 35136,
                          "away_team_name": "Yasmin Farah Hassan",
                          "home_team_name": "Luca Kumahara",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games Women, Singles",
                          "away_team_hash_image": "5a129ce8eaa1e2c649b55968902acd295967cec62af234d5199f0117d87a6ee8",
                          "home_team_hash_image": "26f1046d885fd1aa7dab1a7afb5ea6199d7df9e3a1811f40ffb33b2694c8ec84",
                          "tournament_importance": 8
                        },
                        {
                          "id": 245111,
                          "name": "Song Nam Kim vs Timothy Wang",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1749,
                          "season_id": 64091,
                          "start_time": "2012-07-28T09:30:00+00:00",
                          "league_name": "Olympic Games - Singles",
                          "season_name": "Olympic Games 2012",
                          "away_team_id": 276023,
                          "home_team_id": 276006,
                          "status_reason": "Ended",
                          "tournament_id": 3894,
                          "away_team_name": "Timothy Wang",
                          "home_team_name": "Song Nam Kim",
                          "away_team_score": 0,
                          "home_team_score": 4,
                          "tournament_name": "Olympic Games, Singles",
                          "league_hash_image": "041ecb0e6ab37a039344ba1c7a7735ae811ebeb8f253eba9f6ef509f73f103fe",
                          "away_team_hash_image": "d2b462757a601ddac304a696f67b27bfee90c9e195ebb620ce42cd0d1d1b9497",
                          "home_team_hash_image": "f18aae42d7f06396889a6dcfc955f8af388a207cfa7cc68b74be79f8833150a4",
                          "tournament_importance": 11
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches By Date"
      }
    },
    "/teams-seasons": {
      "get": {
        "tags": [
          "Teams"
        ],
        "summary": "Teams Seasons",
        "description": "This endpoint allows you to retrieve the seasons from teams.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons from a specific **team_id**<br />`https://table-tennis.sportmicro.com/teams-seasons?team_id=eq.{team_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.teams-seasons.team_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/teams-seasons"
                  },
                  "type": "array",
                  "example": [
                    {
                      "team_id": 8418,
                      "team_name": "Andrej Gacina",
                      "team_hash_image": "cffd5627cb890461539b82c7a35d1cb7dcb70eb7e7c0c92246cf8fead799dd71",
                      "tournaments": [
                        {
                          "seasons": [
                            {
                              "season_id": 11722,
                              "start_time": "2025-10-18",
                              "season_name": "25/26"
                            }
                          ],
                          "tournament_id": 3895,
                          "tournament_name": "Japan Open (SS) 2014"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams Seasons"
      }
    },
    "/matches": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches",
        "description": "This endpoint allows you to retrieve the matches.\nYou can use `id` from the `seasons`, `tournaments`, `rounds`, `arenas`, `referees` and `teams` endpoint to get the matches.\nMatches status codes:\n\n`type` | `description`\n--- | ---\ncanceled | Abandoned\ncanceled | Canceled\ndelayed | Start delayed\nfinished | Walkover\nfinished | Removed\nfinished | 3rd set\nfinished | Retired\nfinished | 4th set\nfinished | Ended\nfinished | Coverage canceled\ninterrupted | Interrupted\nlive | 3rd set\nlive | 1st set\nlive | 4th set\nlive | 2nd set\nlive | Pause\nlive | 5th set\npostponed | Postponed\nupcoming | Not started\nlive | 6th set\nlive | 7th set\n\nFor **scores** we have fields for covering that: `current`, `display`, `period1`, `period2`, `period3`, `period4`, `period5`, `period6`, `period7`, `normaltime`, `point`, `extra1`, `team`, `match_id`.\n\nFor **time extras or injuries** we have fields for covering that: **current**, **current_period_start_timestamp**, **match_id**, **time**, **period_count**.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 10 seconds.<br />**Recommended Calls**: Limit calls to 1 every 10 seconds.\n\n### Use Cases\nGet matches<br />`https://table-tennis.sportmicro.com/matches`<br /><br />Get match based on the **id**<br />`https://table-tennis.sportmicro.com/matches?id=eq.{id}`<br /><br />Get matches based on the **start_time** (gte = greater than or equal to, lt = lower than)<br />`https://table-tennis.sportmicro.com/matches?start_time=gte.2023-04-27&start_time=lt.2023-04-28`<br /><br />Get matches based on the **status_type**<br />`https://table-tennis.sportmicro.com/matches?status_type=eq.{status_type}`<br /><br />Get matches based on the **season_id**<br />`https://table-tennis.sportmicro.com/matches?season_id=eq.{season_id}`<br /><br />Get matches based on the **tournament_id**<br />`https://table-tennis.sportmicro.com/matches?tournament_id=eq.{tournament_id}`<br /><br />Get matches based on the **round_id**<br />`https://table-tennis.sportmicro.com/matches?round_id=eq.{round_id}`<br /><br />Get matches based on the **arena_id**<br />`https://table-tennis.sportmicro.com/matches?arena_id=eq.{arena_id}`<br /><br />Get matches based on the **referee_id**<br />`https://table-tennis.sportmicro.com/matches?referee_id=eq.{referee_id}`<br /><br />**H2H** - Get head to head matches with teams ex.(home_team_id, away_team_id)<br />`https://table-tennis.sportmicro.com/matches?or=(home_team_id.eq.{home_team_id}, away_team_id.eq.{home_team_id}, home_team_id.eq.{away_team_id}, away_team_id.eq.{away_team_id})`<br /><br />Get home team matches based on the **home_team_id**<br />`https://table-tennis.sportmicro.com/matches?home_team_id=eq.{home_team_id}`<br /><br />Get away team matches based on the **away_team_id**<br />`https://table-tennis.sportmicro.com/matches?away_team_id=eq.{away_team_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.tournament_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.season_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.round_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.arena_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.referee_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.home_team_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.away_team_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "tournament_id": 34433,
                      "tournament_name": "Czech Liga Pro",
                      "tournament_importance": 0,
                      "status": {
                        "type": "finished",
                        "reason": "Ended"
                      },
                      "status_type": "finished",
                      "away_team_id": 115811,
                      "away_team_name": "Matyas Navedla",
                      "away_team_hash_image": "3fb6015c3f3e82b6fc7f4336658cf25bf9dc6f05dcdf720d3be9f48eaae42f44",
                      "home_team_score": {
                        "current": 1,
                        "display": 1,
                        "period_1": 5,
                        "period_2": 11,
                        "period_3": 8,
                        "period_4": 12
                      },
                      "away_team_score": {
                        "current": 3,
                        "display": 3,
                        "period_1": 11,
                        "period_2": 6,
                        "period_3": 11,
                        "period_4": 14
                      },
                      "times": {
                        "specific_start_time": "2026-04-10T10:48:17+00:00"
                      },
                      "specific_start_time": "2026-04-10T10:48:17+00:00",
                      "start_time": "2026-04-10T10:30:00+00:00",
                      "duration": 9000,
                      "class_id": 331,
                      "class_name": "Czech Republic",
                      "class_hash_image": "febb706cf5431e9a92963c09b7ed15fe4fdc6fe51e0db2b716d60201784d682e",
                      "league_id": 1785,
                      "league_name": "Czech Liga Pro",
                      "league_hash_image": "3e8076be217da29b1699e89d7983abd0c3cd898abefad31a6f2e43c1ae6f9724"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches"
      }
    },
    "/matches-weather": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches Weather",
        "description": "This endpoint allows you to retrieve the weather from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every hour.\n**Recommended Calls**: Limit calls to 1 every hour.\n\n### Use Cases\nGet weather based on the **id**<br />`https://table-tennis.sportmicro.com/matches-weather?id=eq.{id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-weather.id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-weather"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "dt": "2023-11-02T16:00:00+00:00",
                      "temp": 288.73,
                      "feels_like": 288.22,
                      "pressure": 996,
                      "humidity": 72,
                      "dew_point": 282.74,
                      "uvi": 0,
                      "clouds": 100,
                      "wind_speed": 5.24,
                      "wind_deg": 188,
                      "wind_gust": 15.56,
                      "weather_id": 804,
                      "weather_main": "Clouds",
                      "weather_description": "overcast clouds",
                      "weather_icon": "04n",
                      "pop": 0.52
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Weather"
      }
    },
    "/odds/bookmakers": {
      "get": {
        "tags": [
          "Bookmakers"
        ],
        "summary": "Bookmakers",
        "description": "This endpoint allows you to retrieve information about all bookmakers.\n\nWith the help of the `popularity_order` parameter you can see which bookmaker is more popular and more used.\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can retrieve the image of a bookmaker by calling the following URL: https://images.sportmicro.com/{hash_image}.png\n\n### Use Cases\nGet all bookmakers<br />`https://table-tennis.sportmicro.com/odds/bookmakers`<br /><br />Get information about a specific bookmaker based on the **id**<br />`https://table-tennis.sportmicro.com/odds/bookmakers?id=eq.{id}`<br /><br />Get the most popular bookmakers<br />`https://table-tennis.sportmicro.com/odds/bookmakers?order=popularity_order`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.bookmakers.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.bookmakers.name"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/bookmakers"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "name": "Stake.com",
                      "popularity_order": "1",
                      "hash_image": "b7df61bb0380f1918a136da4a70b9d19bc740163bd9dbea2c58de3cc13fc0ff0"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Bookmakers"
      }
    },
    "/odds/coverage-live": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Coverage Live",
        "description": "This endpoint allows you to retrieve information about all matches coverages.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet all live coverages<br />`https://table-tennis.sportmicro.com/odds/coverage-live`<br /><br />Get live odds coverage a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/coverage-live?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.coverage-live.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/coverage-live"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 44143,
                      "full_time_results": true,
                      "over_under": false,
                      "asian_handicaps": false,
                      "correct_score": true,
                      "odd_even": false
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Coverage Live"
      }
    },
    "/odds/coverage": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Coverage",
        "description": "This endpoint allows you to retrieve information about all matches coverages.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet all coverages<br />`https://table-tennis.sportmicro.com/odds/coverage`<br /><br />Get odds coverages from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/coverage?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.coverage.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/coverage"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 44143,
                      "full_time_results": false,
                      "over_under": false,
                      "asian_handicaps": false,
                      "correct_score": false,
                      "odd_even": false
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Coverage"
      }
    },
    "/odds/full-time-results": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Full Time Results",
        "description": "This endpoint allows you to retrieve the odds from full time results market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/full-time-results?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/full-time-results?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/full-time-results?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.full-time-results.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.full-time-results.is_live"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/full-time-results"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 44143,
                      "is_live": true,
                      "periods": [
                        {
                          "period_type": "Full Time",
                          "odds": [
                            {
                              "id": 21062,
                              "bookmaker_id": 2,
                              "bookmaker_name": "1xBet",
                              "bookmaker_order": 3,
                              "bookmaker_hash_image": "a8ce79a50ae18cfa15b3a11e1a166d1d9018fe5ce31c54038808feedc9c4e989",
                              "home": 1.304,
                              "home_movement": -1,
                              "away": 3.365,
                              "away_movement": 1,
                              "payout": 93.98
                            },
                            {
                              "id": 21063,
                              "bookmaker_id": 3,
                              "bookmaker_name": "22Bet",
                              "bookmaker_order": 4,
                              "bookmaker_hash_image": "d585401d20b3d081f9862a9f11133f6d32b6208f3b3de0bd704e392ba679a3bb",
                              "home": 1.304,
                              "home_movement": -1,
                              "away": 3.365,
                              "away_movement": 1,
                              "payout": 93.98
                            },
                            {
                              "id": 21064,
                              "bookmaker_id": 9,
                              "bookmaker_name": "Marathonbet",
                              "bookmaker_order": 16,
                              "bookmaker_hash_image": "5cdb85f84c139920abb014112cee3c97015e5614504e64c0fd2dfb14be5cbb4f",
                              "home": 1.26,
                              "home_movement": -1,
                              "away": 3.28,
                              "away_movement": 1,
                              "payout": 91.03
                            },
                            {
                              "id": 21065,
                              "bookmaker_id": 10,
                              "bookmaker_name": "Interwetten",
                              "bookmaker_order": 18,
                              "bookmaker_hash_image": "6d5b1f3cca0595892ca3939c3344c37e872a60ec85f69f0d61c9cfd7fe9e1150",
                              "home": 1.4,
                              "home_movement": -1,
                              "away": 2.7,
                              "away_movement": 1,
                              "payout": 92.2
                            },
                            {
                              "id": 21086,
                              "bookmaker_id": 11,
                              "bookmaker_name": "20Bet",
                              "bookmaker_order": 19,
                              "bookmaker_hash_image": "e9e50f933b6e343befdef7ca709882351d9d2bcea46806c02b362376e4cb0b21",
                              "home": 1.13,
                              "home_movement": -1,
                              "away": 5,
                              "away_movement": 1,
                              "payout": 92.17
                            },
                            {
                              "id": 21066,
                              "bookmaker_id": 12,
                              "bookmaker_name": "Megapari",
                              "bookmaker_order": 21,
                              "bookmaker_hash_image": "7c948d96f7cbcdc11d8b380e1b0c77089afa2f360a3a6e887232e21b8e1b37f1",
                              "home": 1.304,
                              "home_movement": -1,
                              "away": 3.365,
                              "away_movement": 1,
                              "payout": 93.98
                            },
                            {
                              "id": 21067,
                              "bookmaker_id": 17,
                              "bookmaker_name": "Betway",
                              "bookmaker_order": 32,
                              "bookmaker_hash_image": "a94e8c70778324588bbba05fdf6d94ef4a97d83c21e809bef083f12fe4872d06",
                              "home": 1.8,
                              "home_movement": 1,
                              "away": 1.85,
                              "away_movement": -1,
                              "payout": 91.23
                            },
                            {
                              "id": 21138,
                              "bookmaker_id": 20,
                              "bookmaker_name": "DraftKings",
                              "bookmaker_order": 61,
                              "bookmaker_hash_image": "96a23dd49fb0e856a2c71d4a1a87b30377152f44510b274cac82fcf7877903df",
                              "home": 1.8064517,
                              "home_movement": -1,
                              "away": 1.9090909,
                              "away_movement": -1,
                              "payout": 92.82
                            },
                            {
                              "id": 21068,
                              "bookmaker_id": 21,
                              "bookmaker_name": "TonyBet",
                              "bookmaker_order": 66,
                              "bookmaker_hash_image": "7a2176f326e66e230abd1b007bc04385d9eb81cc3c10bad1a3f8af8ba8ac8211",
                              "home": 1.3,
                              "home_movement": -1,
                              "away": 3.2,
                              "away_movement": 1,
                              "payout": 92.44
                            },
                            {
                              "id": 22126,
                              "bookmaker_id": 34,
                              "bookmaker_name": "Vbet Sport",
                              "bookmaker_order": 83,
                              "bookmaker_hash_image": "170428aa6e0eec2fda96c3880f1171775deed351466c0bb3b25699cebaa0eae6",
                              "home": 1.85,
                              "home_movement": -1,
                              "away": 1.85,
                              "away_movement": 1,
                              "payout": 92.5
                            },
                            {
                              "id": 21192,
                              "bookmaker_id": 36,
                              "bookmaker_name": "GG.BET",
                              "bookmaker_order": 91,
                              "bookmaker_hash_image": "ce4ec4f4bb30803f36a4e4d55e014de7f919ea5458abb6747a19f8c37282933f",
                              "home": 2.13,
                              "home_movement": 1,
                              "away": 1.63,
                              "away_movement": -1,
                              "payout": 92.34
                            },
                            {
                              "id": 21090,
                              "bookmaker_id": 37,
                              "bookmaker_name": "Ivibet",
                              "bookmaker_order": 92,
                              "bookmaker_hash_image": "46106177868fcca89630ef59d357db7fa93a1340d2f88821b64ed1d5196ead58",
                              "home": 1.4,
                              "home_movement": 1,
                              "away": 2.7,
                              "away_movement": -1,
                              "payout": 92.2
                            },
                            {
                              "id": 21069,
                              "bookmaker_id": 46,
                              "bookmaker_name": "Ladbrokes",
                              "bookmaker_order": 141,
                              "bookmaker_hash_image": "3d48535fc714d276c041f4ca8ca47338b571da739ab69764859d448d9c3c8dcb",
                              "home": 1.7,
                              "home_movement": -1,
                              "away": 2,
                              "away_movement": 1,
                              "payout": 91.89
                            },
                            {
                              "id": 21070,
                              "bookmaker_id": 47,
                              "bookmaker_name": "Coral",
                              "bookmaker_order": 142,
                              "bookmaker_hash_image": "56ac628a2f10b3b0ac611cc5adc8d9b497c78d6f771a343d1d6d5407bb1e92dd",
                              "home": 1.7,
                              "home_movement": -1,
                              "away": 2,
                              "away_movement": 1,
                              "payout": 91.89
                            }
                          ]
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Full Time Results"
      }
    },
    "/odds/correct-score": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Correct Score",
        "description": "This endpoint allows you to retrieve the odds from correct score market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/correct-score?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/correct-score?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/correct-score?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.correct-score.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.correct-score.is_live"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/correct-score"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 44143,
                      "is_live": true,
                      "periods": [
                        {
                          "odds": [
                            {
                              "odds": [
                                {
                                  "id": 17329,
                                  "score": 8,
                                  "bookmaker_id": 47,
                                  "bookmaker_name": "Coral",
                                  "score_movement": -1,
                                  "bookmaker_order": 142,
                                  "bookmaker_hash_image": "56ac628a2f10b3b0ac611cc5adc8d9b497c78d6f771a343d1d6d5407bb1e92dd"
                                },
                                {
                                  "id": 17330,
                                  "score": 6.75,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": -1,
                                  "bookmaker_order": 16,
                                  "bookmaker_hash_image": "5cdb85f84c139920abb014112cee3c97015e5614504e64c0fd2dfb14be5cbb4f"
                                },
                                {
                                  "id": 17346,
                                  "score": 8,
                                  "bookmaker_id": 46,
                                  "bookmaker_name": "Ladbrokes",
                                  "score_movement": -1,
                                  "bookmaker_order": 141,
                                  "bookmaker_hash_image": "3d48535fc714d276c041f4ca8ca47338b571da739ab69764859d448d9c3c8dcb"
                                }
                              ],
                              "type": "1 : 3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 17334,
                                  "score": 2.29,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 1,
                                  "bookmaker_order": 16,
                                  "bookmaker_hash_image": "5cdb85f84c139920abb014112cee3c97015e5614504e64c0fd2dfb14be5cbb4f"
                                },
                                {
                                  "id": 17333,
                                  "score": 2,
                                  "bookmaker_id": 46,
                                  "bookmaker_name": "Ladbrokes",
                                  "score_movement": 1,
                                  "bookmaker_order": 141,
                                  "bookmaker_hash_image": "3d48535fc714d276c041f4ca8ca47338b571da739ab69764859d448d9c3c8dcb"
                                },
                                {
                                  "id": 17394,
                                  "score": 2,
                                  "bookmaker_id": 47,
                                  "bookmaker_name": "Coral",
                                  "score_movement": 1,
                                  "bookmaker_order": 142,
                                  "bookmaker_hash_image": "56ac628a2f10b3b0ac611cc5adc8d9b497c78d6f771a343d1d6d5407bb1e92dd"
                                }
                              ],
                              "type": "2 : 3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 17336,
                                  "score": 5.3,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": -1,
                                  "bookmaker_order": 16,
                                  "bookmaker_hash_image": "5cdb85f84c139920abb014112cee3c97015e5614504e64c0fd2dfb14be5cbb4f"
                                },
                                {
                                  "id": 17358,
                                  "score": 6.5,
                                  "bookmaker_id": 47,
                                  "bookmaker_name": "Coral",
                                  "score_movement": 1,
                                  "bookmaker_order": 142,
                                  "bookmaker_hash_image": "56ac628a2f10b3b0ac611cc5adc8d9b497c78d6f771a343d1d6d5407bb1e92dd"
                                },
                                {
                                  "id": 17449,
                                  "score": 1.95,
                                  "bookmaker_id": 46,
                                  "bookmaker_name": "Ladbrokes",
                                  "score_movement": 1,
                                  "bookmaker_order": 141,
                                  "bookmaker_hash_image": "3d48535fc714d276c041f4ca8ca47338b571da739ab69764859d448d9c3c8dcb"
                                }
                              ],
                              "type": "3 : 1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 17338,
                                  "score": 1.7,
                                  "bookmaker_id": 46,
                                  "bookmaker_name": "Ladbrokes",
                                  "score_movement": -1,
                                  "bookmaker_order": 141,
                                  "bookmaker_hash_image": "3d48535fc714d276c041f4ca8ca47338b571da739ab69764859d448d9c3c8dcb"
                                },
                                {
                                  "id": 17339,
                                  "score": 2.04,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 1,
                                  "bookmaker_order": 16,
                                  "bookmaker_hash_image": "5cdb85f84c139920abb014112cee3c97015e5614504e64c0fd2dfb14be5cbb4f"
                                },
                                {
                                  "id": 17516,
                                  "score": 1.7,
                                  "bookmaker_id": 47,
                                  "bookmaker_name": "Coral",
                                  "score_movement": 1,
                                  "bookmaker_order": 142,
                                  "bookmaker_hash_image": "56ac628a2f10b3b0ac611cc5adc8d9b497c78d6f771a343d1d6d5407bb1e92dd"
                                }
                              ],
                              "type": "3 : 2"
                            }
                          ],
                          "period_type": "Full Time"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Correct Score"
      }
    }
  },
  "externalDocs": {
    "description": "Sportmicro API Documentation",
    "url": "https://docs.sportmicro.com/docs"
  },
  "tags": [
    {
      "name": "Countries",
      "description": "API Endpoints of Countries"
    },
    {
      "name": "Classes",
      "description": "API Endpoints of Classes"
    },
    {
      "name": "Leagues",
      "description": "API Endpoints of Leagues"
    },
    {
      "name": "Tournaments",
      "description": "API Endpoints of Tournaments"
    },
    {
      "name": "Seasons",
      "description": "API Endpoints of Seasons"
    },
    {
      "name": "Cup bracket",
      "description": "API Endpoints of Cup bracket"
    },
    {
      "name": "Standings",
      "description": "API Endpoints of Standings"
    },
    {
      "name": "Teams",
      "description": "API Endpoints of Teams"
    },
    {
      "name": "Players",
      "description": "API Endpoints of Players"
    },
    {
      "name": "Injuries",
      "description": "API Endpoints of Injuries"
    },
    {
      "name": "Matches",
      "description": "API Endpoints of Matches"
    },
    {
      "name": "Odds",
      "description": "API Endpoints of Odds"
    },
    {
      "name": "Bookmakers",
      "description": "API Endpoints of Bookmakers"
    },
    {
      "name": "Tv channels",
      "description": "API Endpoints of Tv channels"
    },
    {
      "name": "Coaches",
      "description": "API Endpoints of coaches"
    },
    {
      "name": "Referees",
      "description": "API Endpoints of Referees"
    },
    {
      "name": "Arenas",
      "description": "API Endpoints of arenas"
    },
    {
      "name": "News",
      "description": "API Endpoints of News"
    },
    {
      "name": "Media",
      "description": "API Endpoints of Media"
    },
    {
      "name": "v1-Odds",
      "description": "API Endpoints of Odds from Bet365"
    }
  ],
  "x-tagGroups": [
    {
      "name": "Endpoints",
      "tags": [
        "Countries",
        "Classes",
        "Leagues",
        "Tournaments",
        "Seasons",
        "Cup bracket",
        "Standings",
        "Teams",
        "Players",
        "Injuries",
        "Matches",
        "Odds",
        "Bookmakers",
        "Tv channels",
        "Coaches",
        "Referees",
        "Arenas",
        "News",
        "Media",
        "v1-Odds"
      ]
    }
  ],
  "servers": [
    {
      "url": "https://table-tennis.sportmicro.com"
    }
  ],
  "components": {
    "parameters": {
      "preferParams": {
        "name": "Prefer",
        "description": "Preference",
        "required": false,
        "in": "header",
        "schema": {
          "type": "string",
          "enum": [
            "params=single-object"
          ]
        }
      },
      "preferReturn": {
        "name": "Prefer",
        "description": "Preference",
        "required": false,
        "in": "header",
        "schema": {
          "type": "string",
          "enum": [
            "return=representation",
            "return=minimal",
            "return=none"
          ]
        }
      },
      "preferCount": {
        "name": "Prefer",
        "description": "Preference",
        "required": false,
        "in": "header",
        "schema": {
          "type": "string",
          "enum": [
            "count=none"
          ]
        }
      },
      "preferPost": {
        "name": "Prefer",
        "description": "Preference",
        "required": false,
        "in": "header",
        "schema": {
          "type": "string",
          "enum": [
            "return=representation",
            "return=minimal",
            "return=none",
            "resolution=ignore-duplicates",
            "resolution=merge-duplicates"
          ]
        }
      },
      "select": {
        "name": "select",
        "description": "Filtering Columns",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string"
        }
      },
      "on_conflict": {
        "name": "on_conflict",
        "description": "On Conflict",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string"
        }
      },
      "order": {
        "name": "order",
        "description": "Ordering",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string"
        }
      },
      "range": {
        "name": "Range",
        "description": "Limiting and Pagination",
        "required": false,
        "in": "header",
        "schema": {
          "type": "string"
        }
      },
      "rangeUnit": {
        "name": "Range-Unit",
        "description": "Limiting and Pagination",
        "required": false,
        "in": "header",
        "schema": {
          "type": "string",
          "default": "items",
          "example": "items"
        },
        "example": "items"
      },
      "offset": {
        "name": "offset",
        "description": "Limiting and Pagination",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "default": "0",
          "example": "0"
        },
        "example": "0"
      },
      "limit": {
        "name": "limit",
        "description": "Limiting and Pagination",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "default": "50",
          "example": "50"
        },
        "example": "50"
      },
      "rowFilter.referees-by-country.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees-by-country.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.referees-by-country.country_hash_image": {
        "name": "country_hash_image",
        "description": "The hash image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.referees-by-country.referees": {
        "name": "referees",
        "description": "The referees",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.seasons-by-tournament.tournament_id": {
        "name": "tournament_id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.3894"
        },
        "example": "eq.3894"
      },
      "rowFilter.seasons-by-tournament.tournament_name": {
        "name": "tournament_name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-by-tournament.seasons": {
        "name": "seasons",
        "description": "The seasons",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues.id": {
        "name": "id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1749"
        },
        "example": "eq.1749"
      },
      "rowFilter.leagues.name": {
        "name": "name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues.importance": {
        "name": "importance",
        "description": "The importance level of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.level": {
        "name": "level",
        "description": "The level of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.current_champion_team_id": {
        "name": "current_champion_team_id",
        "description": "The id of the team that hold the title",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.current_champion_team_name": {
        "name": "current_champion_team_name",
        "description": "The name of the team that hold the title",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues.current_champion_team_hash_image": {
        "name": "current_champion_team_hash_image",
        "description": "The name image of the team that hold the title",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.leagues.current_champion_team_num_titles": {
        "name": "current_champion_team_num_titles",
        "description": "The number of the title that the team is holding",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.teams_most_titles": {
        "name": "teams_most_titles",
        "description": "The ids of the teams with the most titles",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues.most_titles": {
        "name": "most_titles",
        "description": "The number of the most titles accomplished by one team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.ground": {
        "name": "ground",
        "description": "The default ground type of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues.number_of_sets": {
        "name": "number_of_sets",
        "description": "The default number of sets in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.max_points": {
        "name": "max_points",
        "description": "The max number of points in one game",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.primary_color": {
        "name": "primary_color",
        "description": "The primary color of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.leagues.secondary_color": {
        "name": "secondary_color",
        "description": "The secondary color of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.leagues.connected_leagues": {
        "name": "connected_leagues",
        "description": "The ids of connected leagues",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues.higher_leagues": {
        "name": "higher_leagues",
        "description": "The ids of higher leagues",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues.lower_leagues": {
        "name": "lower_leagues",
        "description": "The ids of lower leagues",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues.start_league": {
        "name": "start_league",
        "description": "The date of starting the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.leagues.end_league": {
        "name": "end_league",
        "description": "The date of ending the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.leagues.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.leagues.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.306"
        },
        "example": "eq.306"
      },
      "rowFilter.leagues.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues.class_hash_image": {
        "name": "class_hash_image",
        "description": "The name image of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.leagues-by-date.date": {
        "name": "date",
        "description": "The date",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.2012-07-28"
        },
        "example": "eq.2012-07-28"
      },
      "rowFilter.leagues-by-date.leagues": {
        "name": "leagues",
        "description": "The leagues",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.arenas-by-country.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.4"
        },
        "example": "eq.4"
      },
      "rowFilter.arenas-by-country.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas-by-country.country_hash_image": {
        "name": "country_hash_image",
        "description": "The hash image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.arenas-by-country.arenas": {
        "name": "arenas",
        "description": "The arenas",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.media-teams.id": {
        "name": "id",
        "description": "The id of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.media-teams.team_id": {
        "name": "team_id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.media-teams.title": {
        "name": "title",
        "description": "The title of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-teams.subtitle": {
        "name": "subtitle",
        "description": "The subtitle of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-teams.url": {
        "name": "url",
        "description": "The url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-teams.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-teams.date_published": {
        "name": "date_published",
        "description": "The date of publishing the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.media-teams.channel_url": {
        "name": "channel_url",
        "description": "The source url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.id": {
        "name": "id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1111971"
        },
        "example": "eq.1111971"
      },
      "rowFilter.matches-live.name": {
        "name": "name",
        "description": "Home team name vs away team name",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.tournament_id": {
        "name": "tournament_id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.17083"
        },
        "example": "eq.17083"
      },
      "rowFilter.matches-live.tournament_name": {
        "name": "tournament_name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.tournament_importance": {
        "name": "tournament_importance",
        "description": "The importance of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.round_id": {
        "name": "round_id",
        "description": "The id of the round",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.round": {
        "name": "round",
        "description": "The round",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-live.status": {
        "name": "status",
        "description": "The status of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-live.status_type": {
        "name": "status_type",
        "description": "The type of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.attendance": {
        "name": "attendance",
        "description": "The number of people watching the match at the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.arena_id": {
        "name": "arena_id",
        "description": "The id of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.arena_name": {
        "name": "arena_name",
        "description": "The name of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.arena_hash_image": {
        "name": "arena_hash_image",
        "description": "The name image of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.referee_id": {
        "name": "referee_id",
        "description": "The id of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.referee_name": {
        "name": "referee_name",
        "description": "The name of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.referee_hash_image": {
        "name": "referee_hash_image",
        "description": "The name image of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.home_team_id": {
        "name": "home_team_id",
        "description": "The id of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.home_team_name": {
        "name": "home_team_name",
        "description": "The name of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.home_team_hash_image": {
        "name": "home_team_hash_image",
        "description": "The name image of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.away_team_id": {
        "name": "away_team_id",
        "description": "The id of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.away_team_name": {
        "name": "away_team_name",
        "description": "The name of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.away_team_hash_image": {
        "name": "away_team_hash_image",
        "description": "The name image of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.home_team_score": {
        "name": "home_team_score",
        "description": "The score of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-live.away_team_score": {
        "name": "away_team_score",
        "description": "The score of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-live.times": {
        "name": "times",
        "description": "The time of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-live.specific_start_time": {
        "name": "specific_start_time",
        "description": "The real start time of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches-live.start_time": {
        "name": "start_time",
        "description": "The official start time of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches-live.end_time": {
        "name": "end_time",
        "description": "The end of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches-live.last_period": {
        "name": "last_period",
        "description": "The last period of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.season_statistics_type": {
        "name": "season_statistics_type",
        "description": "The type of the season's statistics",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.class_hash_image": {
        "name": "class_hash_image",
        "description": "The name of the class image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.league_hash_image": {
        "name": "league_hash_image",
        "description": "The name of the league image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.previous_leg_match_id": {
        "name": "previous_leg_match_id",
        "description": "The id of the previous leg match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.weather_id": {
        "name": "weather_id",
        "description": "The id of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.weather_main": {
        "name": "weather_main",
        "description": "The main weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.weather_icon": {
        "name": "weather_icon",
        "description": "The name icon of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-tv-channels.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.52828"
        },
        "example": "eq.52828"
      },
      "rowFilter.matches-tv-channels.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-tv-channels.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-tv-channels.country_hash_image": {
        "name": "country_hash_image",
        "description": "The name image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-tv-channels.alpha": {
        "name": "alpha",
        "description": "The alpha2 of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying",
          "example": "eq.BR"
        },
        "example": "eq.BR"
      },
      "rowFilter.matches-tv-channels.tv_channels": {
        "name": "tv_channels",
        "description": "The tv channels",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.media-leagues.id": {
        "name": "id",
        "description": "The id of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.media-leagues.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1755"
        },
        "example": "eq.1755"
      },
      "rowFilter.media-leagues.title": {
        "name": "title",
        "description": "The title of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-leagues.subtitle": {
        "name": "subtitle",
        "description": "The subtitle of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-leagues.url": {
        "name": "url",
        "description": "The url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-leagues.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-leagues.date_published": {
        "name": "date_published",
        "description": "The date of publishing the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.media-leagues.channel_url": {
        "name": "channel_url",
        "description": "The source url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.standings.id": {
        "name": "id",
        "description": "The id of the standing",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.7499"
        },
        "example": "eq.7499"
      },
      "rowFilter.standings.tournament_id": {
        "name": "tournament_id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.standings.tournament_name": {
        "name": "tournament_name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.standings.type": {
        "name": "type",
        "description": "The type of the standing",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.home"
        },
        "example": "eq.home"
      },
      "rowFilter.standings.name": {
        "name": "name",
        "description": "The name of the standing",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.standings.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.4228"
        },
        "example": "eq.4228"
      },
      "rowFilter.standings.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.standings.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1755"
        },
        "example": "eq.1755"
      },
      "rowFilter.standings.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.standings.league_hash_image": {
        "name": "league_hash_image",
        "description": "The name image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.standings.competitors": {
        "name": "competitors",
        "description": "The competitors of the standing",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.seasons-rounds.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.4177"
        },
        "example": "eq.4177"
      },
      "rowFilter.seasons-rounds.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-rounds.rounds": {
        "name": "rounds",
        "description": "The rounds of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.tournaments-by-league.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1749"
        },
        "example": "eq.1749"
      },
      "rowFilter.tournaments-by-league.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tournaments-by-league.league_hash_image": {
        "name": "league_hash_image",
        "description": "The hash image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.tournaments-by-league.tournaments": {
        "name": "tournaments",
        "description": "The tournaments",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.seasons-by-league.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1749"
        },
        "example": "eq.1749"
      },
      "rowFilter.seasons-by-league.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-by-league.league_hash_image": {
        "name": "league_hash_image",
        "description": "The hash image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-by-league.seasons": {
        "name": "seasons",
        "description": "The seasons",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.seasons-groups.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.4193"
        },
        "example": "eq.4193"
      },
      "rowFilter.seasons-groups.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-groups.groups": {
        "name": "groups",
        "description": "The groups of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.teams-by-tournament.tournament_id": {
        "name": "tournament_id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.3894"
        },
        "example": "eq.3894"
      },
      "rowFilter.teams-by-tournament.tournament_name": {
        "name": "tournament_name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams-by-tournament.teams": {
        "name": "teams",
        "description": "The teams",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.coaches-career.coach_id": {
        "name": "coach_id",
        "description": "The id of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches-career.careers": {
        "name": "careers",
        "description": "The career of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-by-date-league.date": {
        "name": "date",
        "description": "The date",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.2012-07-28"
        },
        "example": "eq.2012-07-28"
      },
      "rowFilter.matches-by-date-league.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1749"
        },
        "example": "eq.1749"
      },
      "rowFilter.matches-by-date-league.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-by-date-league.league_hash_image": {
        "name": "league_hash_image",
        "description": "The hash image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-by-date-league.matches": {
        "name": "matches",
        "description": "The matches",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.media-players.id": {
        "name": "id",
        "description": "The id of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.media-players.player_id": {
        "name": "player_id",
        "description": "The id of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.498097"
        },
        "example": "eq.498097"
      },
      "rowFilter.media-players.title": {
        "name": "title",
        "description": "The title of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-players.subtitle": {
        "name": "subtitle",
        "description": "The subtitle of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-players.url": {
        "name": "url",
        "description": "The url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-players.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-players.date_published": {
        "name": "date_published",
        "description": "The date of publishing the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.media-players.channel_url": {
        "name": "channel_url",
        "description": "The source url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-incidents.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.3"
        },
        "example": "eq.3"
      },
      "rowFilter.matches-incidents.incidents": {
        "name": "incidents",
        "description": "The incidents of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.cup-bracket.id": {
        "name": "id",
        "description": "The id of the cup bracket",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1049"
        },
        "example": "eq.1049"
      },
      "rowFilter.cup-bracket.name": {
        "name": "name",
        "description": "The name of the cup bracket",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.cup-bracket.current_round": {
        "name": "current_round",
        "description": "The last or the current round in the cup bracket",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.cup-bracket.type": {
        "name": "type",
        "description": "The type of the cup bracket",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.cup-bracket.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.4182"
        },
        "example": "eq.4182"
      },
      "rowFilter.cup-bracket.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.cup-bracket.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1749"
        },
        "example": "eq.1749"
      },
      "rowFilter.cup-bracket.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.cup-bracket.league_hash_image": {
        "name": "league_hash_image",
        "description": "The name image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.cup-bracket.rounds": {
        "name": "rounds",
        "description": "The rounds of the cup bracket",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.referees-by-league.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1749"
        },
        "example": "eq.1749"
      },
      "rowFilter.referees-by-league.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.referees-by-league.league_hash_image": {
        "name": "league_hash_image",
        "description": "The hash image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.referees-by-league.referees": {
        "name": "referees",
        "description": "The referees",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.agg-news-matches.id": {
        "name": "id",
        "description": "The id of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-matches.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.793965"
        },
        "example": "eq.793965"
      },
      "rowFilter.agg-news-matches.title": {
        "name": "title",
        "description": "The title of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-matches.link": {
        "name": "link",
        "description": "The link of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-matches.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-matches.description": {
        "name": "description",
        "description": "The description of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-matches.published_date": {
        "name": "published_date",
        "description": "The published date of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.agg-news-matches.source_url": {
        "name": "source_url",
        "description": "The source url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-matches.source": {
        "name": "source",
        "description": "The source of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.referees.id": {
        "name": "id",
        "description": "The id of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees.name": {
        "name": "name",
        "description": "The name of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.referees.yellow_cards": {
        "name": "yellow_cards",
        "description": "The number of yellow cards given by the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees.red_cards": {
        "name": "red_cards",
        "description": "The number of red cards given by the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees.yellow_red_cards": {
        "name": "yellow_red_cards",
        "description": "The number of yellow-red cards given by the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees.matches_count": {
        "name": "matches_count",
        "description": "The number of games played by the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees.date_of_birth": {
        "name": "date_of_birth",
        "description": "The date of the referee's birth",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.referees.first_debut_timestamp": {
        "name": "first_debut_timestamp",
        "description": "The id of the first tournament played by the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.referees.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.referees.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.referees.country_hash_image": {
        "name": "country_hash_image",
        "description": "The name image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.seasons.id": {
        "name": "id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.66699"
        },
        "example": "eq.66699"
      },
      "rowFilter.seasons.name": {
        "name": "name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons.year": {
        "name": "year",
        "description": "The year of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons.start_time": {
        "name": "start_time",
        "description": "The start time of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons.end_time": {
        "name": "end_time",
        "description": "The end time of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.11648"
        },
        "example": "eq.11648"
      },
      "rowFilter.seasons.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons.league_hash_image": {
        "name": "league_hash_image",
        "description": "The name image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tournaments.id": {
        "name": "id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.35861"
        },
        "example": "eq.35861"
      },
      "rowFilter.tournaments.name": {
        "name": "name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tournaments.importance": {
        "name": "importance",
        "description": "The importance level of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.tournaments.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.11827"
        },
        "example": "eq.11827"
      },
      "rowFilter.tournaments.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tournaments.league_hash_image": {
        "name": "league_hash_image",
        "description": "The name image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.tournaments.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.306"
        },
        "example": "eq.306"
      },
      "rowFilter.tournaments.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tournaments.class_hash_image": {
        "name": "class_hash_image",
        "description": "The name image of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.arenas.id": {
        "name": "id",
        "description": "The id of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.9881"
        },
        "example": "eq.9881"
      },
      "rowFilter.arenas.name": {
        "name": "name",
        "description": "The name of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.city": {
        "name": "city",
        "description": "The city of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.stadium_capacity": {
        "name": "stadium_capacity",
        "description": "The capacity of the stadium",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.arenas.coordinates": {
        "name": "coordinates",
        "description": "The coordinates of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.built": {
        "name": "built",
        "description": "The built date of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.opened": {
        "name": "opened",
        "description": "The date when the arena opened",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.owner": {
        "name": "owner",
        "description": "The owner of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.operator": {
        "name": "operator",
        "description": "The operator of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.surface": {
        "name": "surface",
        "description": "The surface of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.cost": {
        "name": "cost",
        "description": "The cost of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.dimensions": {
        "name": "dimensions",
        "description": "The dimensions of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.arenas.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.72"
        },
        "example": "eq.72"
      },
      "rowFilter.arenas.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.country_hash_image": {
        "name": "country_hash_image",
        "description": "The name image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.arenas.geolocation": {
        "name": "geolocation",
        "description": "The geolocation",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.classes.id": {
        "name": "id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.944"
        },
        "example": "eq.944"
      },
      "rowFilter.classes.name": {
        "name": "name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.classes.flag": {
        "name": "flag",
        "description": "The flag of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.classes.alpha": {
        "name": "alpha",
        "description": "The alpha name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying",
          "example": "eq.UA"
        },
        "example": "eq.UA"
      },
      "rowFilter.classes.importance": {
        "name": "importance",
        "description": "The importance of the class specified with a number",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.classes.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.coaches.id": {
        "name": "id",
        "description": "The id of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.name": {
        "name": "name",
        "description": "The name of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.nickname": {
        "name": "nickname",
        "description": "The short name of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.default_formation": {
        "name": "default_formation",
        "description": "The default formation by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.nationality": {
        "name": "nationality",
        "description": "The nationality of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.nationality_iso2": {
        "name": "nationality_iso2",
        "description": "The alpha2 of the nationality",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.coaches.total_matches": {
        "name": "total_matches",
        "description": "The number of total matches by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.wins_matches": {
        "name": "wins_matches",
        "description": "The number of wins by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.draws_matches": {
        "name": "draws_matches",
        "description": "The number of draws by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.losses_matches": {
        "name": "losses_matches",
        "description": "The number of losses by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.goals_scored_matches": {
        "name": "goals_scored_matches",
        "description": "The number of goals scored in matches managed by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.goals_conceded_matches": {
        "name": "goals_conceded_matches",
        "description": "The number of goals conceded in matches managed by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.total_points_matches": {
        "name": "total_points_matches",
        "description": "The number of total points gained by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.date_of_birth": {
        "name": "date_of_birth",
        "description": "The date of the coach's birth",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.coaches.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.coaches.former_player_id": {
        "name": "former_player_id",
        "description": "The id of the coach as a former player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.country_hash_image": {
        "name": "country_hash_image",
        "description": "The name image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.coaches.team_id": {
        "name": "team_id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.team_name": {
        "name": "team_name",
        "description": "The name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.team_hash_image": {
        "name": "team_hash_image",
        "description": "The name image of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.coaches.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.class_hash_image": {
        "name": "class_hash_image",
        "description": "The hash image of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-highlights.id": {
        "name": "id",
        "description": "The id of the highlight",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-highlights.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.4373"
        },
        "example": "eq.4373"
      },
      "rowFilter.matches-highlights.title": {
        "name": "title",
        "description": "The title of the highlight",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-highlights.subtitle": {
        "name": "subtitle",
        "description": "The subtitle of the highlight",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-highlights.url": {
        "name": "url",
        "description": "The url of the highlight",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-highlights.created_at": {
        "name": "created_at",
        "description": "The publishing date of the highlight",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches-highlights.source_url": {
        "name": "source_url",
        "description": "The source url of the highlight",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-by-class.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.306"
        },
        "example": "eq.306"
      },
      "rowFilter.leagues-by-class.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-by-class.class_hash_image": {
        "name": "class_hash_image",
        "description": "The hash image of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.leagues-by-class.leagues": {
        "name": "leagues",
        "description": "The leagues",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.agg-news-teams.id": {
        "name": "id",
        "description": "The id of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-teams.team_id": {
        "name": "team_id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-teams.title": {
        "name": "title",
        "description": "The title of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-teams.link": {
        "name": "link",
        "description": "The link of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-teams.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-teams.description": {
        "name": "description",
        "description": "The description of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-teams.published_date": {
        "name": "published_date",
        "description": "The published date of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.agg-news-teams.source_url": {
        "name": "source_url",
        "description": "The source url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-teams.source": {
        "name": "source",
        "description": "The source of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.news-matches.id": {
        "name": "id",
        "description": "The id of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.news-matches.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.935453"
        },
        "example": "eq.935453"
      },
      "rowFilter.news-matches.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.news-matches.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.news-matches.league_hash_image": {
        "name": "league_hash_image",
        "description": "The hash image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.news-matches.date": {
        "name": "date",
        "description": "The date of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.news-matches.title": {
        "name": "title",
        "description": "The title of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.news-matches.name": {
        "name": "name",
        "description": "The name of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.news-matches.subtitles": {
        "name": "subtitles",
        "description": "The subtitles",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.teams-by-league.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1755"
        },
        "example": "eq.1755"
      },
      "rowFilter.teams-by-league.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams-by-league.league_hash_image": {
        "name": "league_hash_image",
        "description": "The hash image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams-by-league.teams": {
        "name": "teams",
        "description": "The teams",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.competition_name": {
        "name": "competition_name",
        "description": "The name of the competition",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.city_name": {
        "name": "city_name",
        "description": "The city of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.playing_months": {
        "name": "playing_months",
        "description": "The months playing in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer[]"
        }
      },
      "rowFilter.leagues-info.surface_type": {
        "name": "surface_type",
        "description": "The surface",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.qualification_rounds_played": {
        "name": "qualification_rounds_played",
        "description": "The rounds played in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.main_rounds_played": {
        "name": "main_rounds_played",
        "description": "The main rounds played in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.prize_money": {
        "name": "prize_money",
        "description": "The amount of the prize money for winning the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.match_type": {
        "name": "match_type",
        "description": "The match type",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.promoted_teams": {
        "name": "promoted_teams",
        "description": "The promoted teams",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.most_title_names": {
        "name": "most_title_names",
        "description": "The teams with most titles",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.number_of_teams": {
        "name": "number_of_teams",
        "description": "The number of the teams in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.number_of_groups": {
        "name": "number_of_groups",
        "description": "The number of the groups in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.league_grade": {
        "name": "league_grade",
        "description": "The grade of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.age_category": {
        "name": "age_category",
        "description": "The age class of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.category": {
        "name": "category",
        "description": "The class of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.first_season_winner": {
        "name": "first_season_winner",
        "description": "The first season winner of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.total_teams_count": {
        "name": "total_teams_count",
        "description": "The count of the teams in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.total_tables_count": {
        "name": "total_tables_count",
        "description": "The count of the tables in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.promoting_teams_count": {
        "name": "promoting_teams_count",
        "description": "The count of the promoting teams in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.relegating_teams_count": {
        "name": "relegating_teams_count",
        "description": "The count of the relegating teams in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.total_games_count": {
        "name": "total_games_count",
        "description": "The count of the games in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.game_frequency": {
        "name": "game_frequency",
        "description": "The frequency of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.total_rounds_count": {
        "name": "total_rounds_count",
        "description": "The count of the rounds in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.competition_type": {
        "name": "competition_type",
        "description": "The type of the competition",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.league_gender": {
        "name": "league_gender",
        "description": "The gender people playing in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.first_season_start_year": {
        "name": "first_season_start_year",
        "description": "First season start year",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.most_popular_teams": {
        "name": "most_popular_teams",
        "description": "The name of the most popular teams in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.playoff_teams_count": {
        "name": "playoff_teams_count",
        "description": "The number of the teams playing in the playoffs",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.main_competition": {
        "name": "main_competition",
        "description": "The main competition",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.games_per_group": {
        "name": "games_per_group",
        "description": "The number of the games per group",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.playoff_qualifying_teams_count": {
        "name": "playoff_qualifying_teams_count",
        "description": "The count of the teams that are qualified to play in the playoffs",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.number_of_promoted_teams": {
        "name": "number_of_promoted_teams",
        "description": "The number of promoted teams",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.total_number_of_rounds": {
        "name": "total_number_of_rounds",
        "description": "The number of rounds",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.largest_stadium": {
        "name": "largest_stadium",
        "description": "The largest stadium",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.last_season_magnitude": {
        "name": "last_season_magnitude",
        "description": "The last season magnitude",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.tv_partners": {
        "name": "tv_partners",
        "description": "The tv partners of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.official_organization": {
        "name": "official_organization",
        "description": "The official organisation of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.promotions": {
        "name": "promotions",
        "description": "The promotions",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.last_season_top_scorers": {
        "name": "last_season_top_scorers",
        "description": "The last season top scorers in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.countries.id": {
        "name": "id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.countries.name": {
        "name": "name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.countries.alpha": {
        "name": "alpha",
        "description": "The alpha name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying",
          "example": "eq.CF"
        },
        "example": "eq.CF"
      },
      "rowFilter.countries.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.agg-news-leagues.id": {
        "name": "id",
        "description": "The id of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-leagues.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-leagues.title": {
        "name": "title",
        "description": "The title of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-leagues.link": {
        "name": "link",
        "description": "The link of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-leagues.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-leagues.description": {
        "name": "description",
        "description": "The description of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-leagues.published_date": {
        "name": "published_date",
        "description": "The published date of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.agg-news-leagues.source_url": {
        "name": "source_url",
        "description": "The source url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-leagues.source": {
        "name": "source",
        "description": "The source of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tv-channels.id": {
        "name": "id",
        "description": "The id of the tv channel",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.tv-channels.name": {
        "name": "name",
        "description": "The name of the tv channel",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-statistics.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.matches-statistics.statistics": {
        "name": "statistics",
        "description": "The statistics of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.teams-by-season.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.4193"
        },
        "example": "eq.4193"
      },
      "rowFilter.teams-by-season.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams-by-season.teams": {
        "name": "teams",
        "description": "The teams",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.teams.id": {
        "name": "id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.279135"
        },
        "example": "eq.279135"
      },
      "rowFilter.teams.name": {
        "name": "name",
        "description": "The name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.short_name": {
        "name": "short_name",
        "description": "The short name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.full_name": {
        "name": "full_name",
        "description": "The full name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.gender": {
        "name": "gender",
        "description": "The gender of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character"
        }
      },
      "rowFilter.teams.team_player_info_id": {
        "name": "team_player_info_id",
        "description": "The id of the player (_team_)",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.name_code": {
        "name": "name_code",
        "description": "The name code of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.national": {
        "name": "national",
        "description": "If the team is national",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.teams.type": {
        "name": "type",
        "description": "The type of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.flag": {
        "name": "flag",
        "description": "The flag of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.color_primary": {
        "name": "color_primary",
        "description": "The primary color of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.color_secondary": {
        "name": "color_secondary",
        "description": "The secondary color of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.color_text": {
        "name": "color_text",
        "description": "The text color of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.foundation_date": {
        "name": "foundation_date",
        "description": "The foundation date of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.teams.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.country_hash_image": {
        "name": "country_hash_image",
        "description": "The name image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.sub_teams": {
        "name": "sub_teams",
        "description": "The sub teams of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer[]"
        }
      },
      "rowFilter.teams.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.306"
        },
        "example": "eq.306"
      },
      "rowFilter.teams.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.class_hash_image": {
        "name": "class_hash_image",
        "description": "The name image of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.tournament_id": {
        "name": "tournament_id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.tournament_name": {
        "name": "tournament_name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.primary_league_id": {
        "name": "primary_league_id",
        "description": "The id of the primary league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.primary_league_name": {
        "name": "primary_league_name",
        "description": "The name of the primary league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.primary_league_hash_image": {
        "name": "primary_league_hash_image",
        "description": "The name image of the primary league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.arena_id": {
        "name": "arena_id",
        "description": "The id of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.arena_name": {
        "name": "arena_name",
        "description": "The name of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.arena_hash_image": {
        "name": "arena_hash_image",
        "description": "The name image of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.coach_id": {
        "name": "coach_id",
        "description": "The id of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.coach_name": {
        "name": "coach_name",
        "description": "The name of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.coach_hash_image": {
        "name": "coach_hash_image",
        "description": "The name image of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.parent_team_id": {
        "name": "parent_team_id",
        "description": "The id of the parent team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.parent_team_name": {
        "name": "parent_team_name",
        "description": "The name of the parent team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.parent_team_hash_image": {
        "name": "parent_team_hash_image",
        "description": "The name image of the parent team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.seasons-info.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.4272"
        },
        "example": "eq.4272"
      },
      "rowFilter.seasons-info.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-info.goals": {
        "name": "goals",
        "description": "The number of goals by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.home_wins": {
        "name": "home_wins",
        "description": "The number of home team wins by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.away_wins": {
        "name": "away_wins",
        "description": "The number of away team wins by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.draws": {
        "name": "draws",
        "description": "The number of draws by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.yellow_cards": {
        "name": "yellow_cards",
        "description": "The number of yellow cards by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.red_cards": {
        "name": "red_cards",
        "description": "The number of red cards by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.rounds": {
        "name": "rounds",
        "description": "The number of rounds by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.competitors": {
        "name": "competitors",
        "description": "The number of competitors by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.total_prize_money": {
        "name": "total_prize_money",
        "description": "The number of total prize money by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.total_prize_money_currency": {
        "name": "total_prize_money_currency",
        "description": "The currency of the total prize money by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-info.city": {
        "name": "city",
        "description": "The host city of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-info.level": {
        "name": "level",
        "description": "The level of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-info.countries": {
        "name": "countries",
        "description": "The host countries of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text[]"
        }
      },
      "rowFilter.seasons-info.higher_tournament_teams": {
        "name": "higher_tournament_teams",
        "description": "The number of newcomers higher tournaments by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.seasons-info.lower_tournament_teams": {
        "name": "lower_tournament_teams",
        "description": "The number of newcomers lower tournaments by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.seasons-info.tournament_other_teams": {
        "name": "tournament_other_teams",
        "description": "The number of newcomers other tournaments by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.agg-news-players.id": {
        "name": "id",
        "description": "The id of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-players.player_id": {
        "name": "player_id",
        "description": "The id of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-players.title": {
        "name": "title",
        "description": "The title of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-players.link": {
        "name": "link",
        "description": "The link of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-players.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-players.description": {
        "name": "description",
        "description": "The description of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-players.published_date": {
        "name": "published_date",
        "description": "The published date of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.agg-news-players.source_url": {
        "name": "source_url",
        "description": "The source url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-players.source": {
        "name": "source",
        "description": "The source of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tournaments-by-class.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.306"
        },
        "example": "eq.306"
      },
      "rowFilter.tournaments-by-class.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tournaments-by-class.class_hash_image": {
        "name": "class_hash_image",
        "description": "The hash image of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.tournaments-by-class.tournaments": {
        "name": "tournaments",
        "description": "The tournaments",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-by-date.date": {
        "name": "date",
        "description": "The date",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.2012-07-28"
        },
        "example": "eq.2012-07-28"
      },
      "rowFilter.matches-by-date.matches": {
        "name": "matches",
        "description": "The matches",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.teams-seasons.team_id": {
        "name": "team_id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.8418"
        },
        "example": "eq.8418"
      },
      "rowFilter.teams-seasons.team_name": {
        "name": "team_name",
        "description": "The name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams-seasons.team_hash_image": {
        "name": "team_hash_image",
        "description": "The hash image of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams-seasons.tournaments": {
        "name": "tournaments",
        "description": "The tournaments of the team playing",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches.id": {
        "name": "id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.matches.name": {
        "name": "name",
        "description": "Home team name vs away team name",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.tournament_id": {
        "name": "tournament_id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.34433"
        },
        "example": "eq.34433"
      },
      "rowFilter.matches.tournament_name": {
        "name": "tournament_name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.tournament_importance": {
        "name": "tournament_importance",
        "description": "The importance of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.round_id": {
        "name": "round_id",
        "description": "The id of the round",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.round": {
        "name": "round",
        "description": "The round",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches.status": {
        "name": "status",
        "description": "The status of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches.status_type": {
        "name": "status_type",
        "description": "The type of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.attendance": {
        "name": "attendance",
        "description": "The number of people watching the match at the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.arena_id": {
        "name": "arena_id",
        "description": "The id of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.arena_name": {
        "name": "arena_name",
        "description": "The name of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.arena_hash_image": {
        "name": "arena_hash_image",
        "description": "The name image of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.referee_id": {
        "name": "referee_id",
        "description": "The id of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.referee_name": {
        "name": "referee_name",
        "description": "The name of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.referee_hash_image": {
        "name": "referee_hash_image",
        "description": "The name image of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.home_team_id": {
        "name": "home_team_id",
        "description": "The id of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.home_team_name": {
        "name": "home_team_name",
        "description": "The name of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.home_team_hash_image": {
        "name": "home_team_hash_image",
        "description": "The name image of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.away_team_id": {
        "name": "away_team_id",
        "description": "The id of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.115811"
        },
        "example": "eq.115811"
      },
      "rowFilter.matches.away_team_name": {
        "name": "away_team_name",
        "description": "The name of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.away_team_hash_image": {
        "name": "away_team_hash_image",
        "description": "The name image of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.home_team_score": {
        "name": "home_team_score",
        "description": "The score of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches.away_team_score": {
        "name": "away_team_score",
        "description": "The score of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches.times": {
        "name": "times",
        "description": "The time of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches.specific_start_time": {
        "name": "specific_start_time",
        "description": "The real start time of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches.start_time": {
        "name": "start_time",
        "description": "The official start time of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches.end_time": {
        "name": "end_time",
        "description": "The end of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches.duration": {
        "name": "duration",
        "description": "The duration of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.last_period": {
        "name": "last_period",
        "description": "The last period of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.season_statistics_type": {
        "name": "season_statistics_type",
        "description": "The type of the season's statistics",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.class_hash_image": {
        "name": "class_hash_image",
        "description": "The name of the class image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.league_hash_image": {
        "name": "league_hash_image",
        "description": "The name of the league image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.previous_leg_match_id": {
        "name": "previous_leg_match_id",
        "description": "The id of the previous leg match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.weather_id": {
        "name": "weather_id",
        "description": "The id of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.weather_main": {
        "name": "weather_main",
        "description": "The main weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.weather_icon": {
        "name": "weather_icon",
        "description": "The name icon of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-weather.id": {
        "name": "id",
        "description": "The id of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.matches-weather.dt": {
        "name": "dt",
        "description": "The date of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches-weather.temp": {
        "name": "temp",
        "description": "The temperature of the weather `Kelvin`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.feels_like": {
        "name": "feels_like",
        "description": "The human perception of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.pressure": {
        "name": "pressure",
        "description": "The pressure of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.humidity": {
        "name": "humidity",
        "description": "The humidity of the weather in `%`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.dew_point": {
        "name": "dew_point",
        "description": "The minimum temperature of the weather `Kelvin`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.uvi": {
        "name": "uvi",
        "description": "The maximum value of UV index for the day",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.clouds": {
        "name": "clouds",
        "description": "The cloudiness of the weather in `%`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.wind_speed": {
        "name": "wind_speed",
        "description": "The wind speed `Metre/Sec`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.wind_deg": {
        "name": "wind_deg",
        "description": "The wind direction `Degrees`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.wind_gust": {
        "name": "wind_gust",
        "description": "The wind gust `Metre/Sec`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.weather_id": {
        "name": "weather_id",
        "description": "The random id of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-weather.weather_main": {
        "name": "weather_main",
        "description": "The title of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-weather.weather_description": {
        "name": "weather_description",
        "description": "The description of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-weather.weather_icon": {
        "name": "weather_icon",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-weather.pop": {
        "name": "pop",
        "description": "The probability of precipitation in `%`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.coaches-by-country.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches-by-country.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches-by-country.country_hash_image": {
        "name": "country_hash_image",
        "description": "The hash image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.coaches-by-country.coaches": {
        "name": "coaches",
        "description": "The coaches",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.asian-handicaps.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.asian-handicaps.is_live": {
        "name": "is_live",
        "description": "If the match is live. example:`eq.{is_live}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.asian-handicaps.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.bookmakers.id": {
        "name": "id",
        "description": "The id of the bookmaker. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.bookmakers.name": {
        "name": "name",
        "description": "The name of the bookmaker",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.Stake.com"
        },
        "example": "eq.Stake.com"
      },
      "rowFilter.bookmakers.popularity_order": {
        "name": "popularity_order",
        "description": "The popularity score of the bookmaker",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.bookmakers.hash_image": {
        "name": "hash_image",
        "description": "The hash image of the bookmaker",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.odd-even.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.odd-even.is_live": {
        "name": "is_live",
        "description": "If the match is live. example:`eq.{is_live}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.odd-even.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.coverage-live.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.44143"
        },
        "example": "eq.44143"
      },
      "rowFilter.coverage-live.full_time_results": {
        "name": "full_time_results",
        "description": "Coverage of full_time_results",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage-live.over_under": {
        "name": "over_under",
        "description": "Coverage of over_under",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage-live.asian_handicaps": {
        "name": "asian_handicaps",
        "description": "Coverage of asian_handicaps",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage-live.correct_score": {
        "name": "correct_score",
        "description": "Coverage of correct_score",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage-live.odd_even": {
        "name": "odd_even",
        "description": "Coverage of odd_even",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.full-time-results-movements.full_time_result_id": {
        "name": "full_time_result_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.full-time-results-movements.movements": {
        "name": "movements",
        "description": "The movements",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.over-under.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.over-under.is_live": {
        "name": "is_live",
        "description": "If the match is live. example:`eq.{is_live}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.over-under.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.coverage.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.44143"
        },
        "example": "eq.44143"
      },
      "rowFilter.coverage.full_time_results": {
        "name": "full_time_results",
        "description": "Coverage of full_time_results",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage.over_under": {
        "name": "over_under",
        "description": "Coverage of over_under",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage.asian_handicaps": {
        "name": "asian_handicaps",
        "description": "Coverage of asian_handicaps",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage.correct_score": {
        "name": "correct_score",
        "description": "Coverage of correct_score",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage.odd_even": {
        "name": "odd_even",
        "description": "Coverage of odd_even",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.odd-even-movements.odd_even_id": {
        "name": "odd_even_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.odd-even-movements.movements": {
        "name": "movements",
        "description": "The movements",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.correct-score-movements.correct_score_id": {
        "name": "correct_score_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.correct-score-movements.movements": {
        "name": "movements",
        "description": "The movements",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.asian-handicaps-movements.asian_handicap_id": {
        "name": "asian_handicap_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.asian-handicaps-movements.movements": {
        "name": "movements",
        "description": "The movements",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.over-under-movements.over_under_id": {
        "name": "over_under_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.over-under-movements.movements": {
        "name": "movements",
        "description": "The movements",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.full-time-results.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.44143"
        },
        "example": "eq.44143"
      },
      "rowFilter.full-time-results.is_live": {
        "name": "is_live",
        "description": "If the match is live. example:`eq.{is_live}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean",
          "example": "eq.true"
        },
        "example": "eq.true"
      },
      "rowFilter.full-time-results.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.correct-score.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.44143"
        },
        "example": "eq.44143"
      },
      "rowFilter.correct-score.is_live": {
        "name": "is_live",
        "description": "If the match is live. example:`eq.{is_live}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean",
          "example": "eq.true"
        },
        "example": "eq.true"
      },
      "rowFilter.correct-score.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "lang": {
        "name": "lang",
        "description": "Multi-language",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "default": "en",
          "example": "en"
        },
        "example": "en"
      }
    },
    "schemas": {
      "referees-by-country": {
        "description": "Referees by country\nThis endpoint allows you to retrieve the referees from a specific country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet referees from a specific **country_id**<br />`https://table-tennis.sportmicro.com/referees-by-country?country_id=eq.{country_id}`",
        "properties": {},
        "type": "object"
      },
      "seasons-by-tournament": {
        "description": "Seasons by tournament\nThis endpoint allows you to retrieve the seasons from a specific tournament.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons from a specific **tournament_id**<br />`https://table-tennis.sportmicro.com/seasons-by-tournament?tournament_id=eq.{tournament_id}`",
        "properties": {
          "tournament_id": {
            "description": "The id of the tournament\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "tournament_name": {
            "description": "The name of the tournament",
            "format": "text",
            "type": "string"
          },
          "seasons": {
            "description": "The seasons",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "leagues": {
        "description": "Leagues\nThis endpoint allows you to retrieve the leagues and the cups.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 every day.\n\nYou can get the image of the league by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet leagues<br />`https://table-tennis.sportmicro.com/leagues`<br /><br />Search the leagues by the `name`<br />`https://table-tennis.sportmicro.com/leagues?name=like.*Championship*`<br /><br />Get leagues based on the **id**<br />`https://table-tennis.sportmicro.com/leagues?id=eq.{id}`<br /><br />Get leagues from a specific **class_id**<br />`https://table-tennis.sportmicro.com/leagues?class_id=eq.{class_id}`",
        "properties": {
          "id": {
            "description": "The id of the league\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "importance": {
            "description": "The importance level of the league",
            "format": "integer",
            "type": "integer"
          },
          "level": {
            "description": "The level of the league",
            "format": "integer",
            "type": "integer"
          },
          "current_champion_team_id": {
            "description": "The id of the team that hold the title",
            "format": "integer",
            "type": "integer"
          },
          "current_champion_team_name": {
            "description": "The name of the team that hold the title",
            "format": "text",
            "type": "string"
          },
          "current_champion_team_hash_image": {
            "description": "The name image of the team that hold the title",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "current_champion_team_num_titles": {
            "description": "The number of the title that the team is holding",
            "format": "integer",
            "type": "integer"
          },
          "teams_most_titles": {
            "description": "The ids of the teams with the most titles",
            "format": "jsonb"
          },
          "most_titles": {
            "description": "The number of the most titles accomplished by one team",
            "format": "integer",
            "type": "integer"
          },
          "primary_color": {
            "description": "The primary color of the league",
            "format": "character varying",
            "maxLength": 7,
            "type": "string"
          },
          "secondary_color": {
            "description": "The secondary color of the league",
            "format": "character varying",
            "maxLength": 7,
            "type": "string"
          },
          "start_league": {
            "description": "The date of starting the league",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "end_league": {
            "description": "The date of ending the league",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "hash_image": {
            "description": "The name of the image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "class_id": {
            "description": "The id of the class\n\nNote:\nThis is a Foreign Key to `classes.id`.<fk table='classes' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "class_name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "class_hash_image": {
            "description": "The name image of the class",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "leagues-by-date": {
        "description": "Leagues by date\nThis endpoint allows you to retrieve the leagues from a specific date. The date has a format of YYYY-DD-MM.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet leagues from a specific **date**<br />`https://table-tennis.sportmicro.com/leagues-by-date?date=eq.{date}`",
        "properties": {
          "date": {
            "description": "The date",
            "format": "text",
            "type": "string"
          },
          "leagues": {
            "description": "The leagues",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "arenas-by-country": {
        "description": "Arenas by country\nThis endpoint allows you to retrieve the arenas from a specific country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet arenas from a specific **country_id**<br />`https://table-tennis.sportmicro.com/arenas-by-country?country_id=eq.{country_id}`",
        "properties": {
          "country_id": {
            "description": "The id of the country\n\nNote:\nThis is a Foreign Key to `countries.id`.<fk table='countries' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "country_name": {
            "description": "The name of the country",
            "format": "text",
            "type": "string"
          },
          "country_hash_image": {
            "description": "The hash image of the country",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "arenas": {
            "description": "The arenas",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "media-teams": {
        "description": "Teams media\nThis endpoint allows you to retrieve the media from teams.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet media from a specific **team_id**<br />`https://table-tennis.sportmicro.com/media-teams?team_id=eq.{team_id}`",
        "properties": {},
        "type": "object"
      },
      "matches-live": {
        "description": "Live matches\nThis endpoint allows you to retrieve the live matches.\n\nIt has the same results as the /matches endpoint.",
        "properties": {},
        "type": "object"
      },
      "matches-tv-channels": {
        "description": "Tv channels\nThis endpoint allows you to retrieve the tv channels for matches from all countries.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet tv channels from a specific **match_id**<br />`https://table-tennis.sportmicro.com/matches-tv-channels?match_id=eq.{match_id}`<br /><br />Get tv channels from a specific **match_id** and **alpha**<br />`https://table-tennis.sportmicro.com/matches-tv-channels?match_id=eq.{match_id}&alpha=eq.{alpha}`",
        "properties": {
          "match_id": {
            "description": "The id of the match",
            "format": "integer",
            "type": "integer"
          },
          "country_id": {
            "description": "The id of the country\n\nNote:\nThis is a Foreign Key to `countries.id`.<fk table='countries' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "country_name": {
            "description": "The name of the country",
            "format": "text",
            "type": "string"
          },
          "country_hash_image": {
            "description": "The name image of the country",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "alpha": {
            "description": "The alpha2 of the country",
            "format": "character varying",
            "maxLength": 2,
            "type": "string"
          },
          "tv_channels": {
            "description": "The tv channels",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "media-leagues": {
        "description": "Leagues media\nThis endpoint allows you to retrieve the media from leagues.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet media from a specific **league_id**<br />`https://table-tennis.sportmicro.com/media-leagues?league_id=eq.{league_id}`",
        "properties": {
          "id": {
            "description": "The id of the media\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "league_id": {
            "description": "The id of the league",
            "format": "integer",
            "type": "integer"
          },
          "title": {
            "description": "The title of the media",
            "format": "text",
            "type": "string"
          },
          "subtitle": {
            "description": "The subtitle of the media",
            "format": "text",
            "type": "string"
          },
          "url": {
            "description": "The url of the media",
            "format": "text",
            "type": "string"
          },
          "thumbnail_url": {
            "description": "The thumbnail url of the media",
            "format": "text",
            "type": "string"
          },
          "date_published": {
            "description": "The date of publishing the media",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "channel_url": {
            "description": "The source url of the media",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "standings": {
        "description": "Standings\nThis endpoint allows you to retrieve the standings.\nFor the type argument you can search by: **home**, **away** and **total**.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated after every finished match.<br />**Recommended Calls**: Limit calls to 1 per finished match.\n\n### Use Cases\nGet standings<br />`https://table-tennis.sportmicro.com/standings`<br /><br />Get standing based on the **id**<br />`https://table-tennis.sportmicro.com/standings?id=eq.{id}`<br /><br />Get standing from a specific **league_id**<br />`https://table-tennis.sportmicro.com/standings?league_id=eq.{league_id}`<br /><br />Get standing from a specific **league_id** and **season_id**<br />`https://table-tennis.sportmicro.com/standings?league_id=eq.{league_id}&season_id=eq.{season_id}`<br /><br />Get standing from a specific **league_id**, **season_id** and **type**<br />`https://table-tennis.sportmicro.com/standings?league_id=eq.{league_id}&season_id=eq.{season_id}&type=eq.{type}`",
        "properties": {
          "id": {
            "description": "The id of the standing\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "tournament_id": {
            "description": "The id of the tournament\n\nNote:\nThis is a Foreign Key to `seasons-by-tournament.tournament_id`.<fk table='seasons-by-tournament' column='tournament_id'/>",
            "format": "integer",
            "type": "integer"
          },
          "tournament_name": {
            "description": "The name of the tournament",
            "format": "text",
            "type": "string"
          },
          "type": {
            "description": "The type of the standing",
            "format": "text",
            "type": "string"
          },
          "name": {
            "description": "The name of the standing",
            "format": "text",
            "type": "string"
          },
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Foreign Key to `seasons.id`.<fk table='seasons' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The name image of the league",
            "format": "text",
            "type": "string"
          },
          "competitors": {
            "description": "The competitors of the standing",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "seasons-rounds": {
        "description": "Rounds\nThis endpoint allows you to retrieve the rounds from seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet rounds from a specific **season_id**<br />`https://table-tennis.sportmicro.com/seasons-rounds?season_id=eq.{season_id}`",
        "properties": {
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "rounds": {
            "description": "The rounds of the season",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "tournaments-by-league": {
        "description": "Tournaments by league\nThis endpoint allows you to retrieve the tournaments from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tournaments from a specific **league_id**<br />`https://table-tennis.sportmicro.com/tournaments-by-league?league_id=eq.{league_id}`",
        "properties": {
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The hash image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "tournaments": {
            "description": "The tournaments",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "seasons-by-league": {
        "description": "Seasons by league\nThis endpoint allows you to retrieve the seasons from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons from a specific **league_id**<br />`https://table-tennis.sportmicro.com/seasons-by-league?league_id=eq.{league_id}`",
        "properties": {
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The hash image of the league",
            "format": "text",
            "type": "string"
          },
          "seasons": {
            "description": "The seasons",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "seasons-groups": {
        "description": "Groups\nThis endpoint allows you to retrieve the groups from seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet groups from a specific **season_id**<br />`https://table-tennis.sportmicro.com/seasons-groups?season_id=eq.{season_id}`",
        "properties": {
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "groups": {
            "description": "The groups of the season",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "teams-by-tournament": {
        "description": "Teams by tournament\nThis endpoint allows you to retrieve the teams from a specific tournament.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet teams from a specific **tournament_id**<br />`https://table-tennis.sportmicro.com/teams-by-tournament?tournament_id=eq.{tournament_id}`",
        "properties": {
          "tournament_id": {
            "description": "The id of the tournament\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "tournament_name": {
            "description": "The name of the tournament",
            "format": "text",
            "type": "string"
          },
          "teams": {
            "description": "The teams",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "coaches-career": {
        "description": "Coaches career\nThis endpoint allows you to retrieve the careers from coaches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet career from a specific **coach_id**<br />`https://table-tennis.sportmicro.com/coaches-career?coach_id=eq.{coach_id}`",
        "properties": {},
        "type": "object"
      },
      "matches-by-date-league": {
        "description": "Matches by date and league\nThis endpoint allows you to retrieve the matches from a specific date and league. The date has a format of YYYY-DD-MM.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet matches from a specific **date** and **league_id**<br />`https://table-tennis.sportmicro.com/matches-by-date-league?date=eq.{date}&league_id=eq.{league_id}`",
        "properties": {
          "date": {
            "description": "The date",
            "format": "text",
            "type": "string"
          },
          "league_id": {
            "description": "The id of the league",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The hash image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "matches": {
            "description": "The matches",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "media-players": {
        "description": "Players media\nThis endpoint allows you to retrieve the media from players.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet media from a specific **player_id**<br />`https://table-tennis.sportmicro.com/media-players?player_id=eq.{player_id}`",
        "properties": {
          "id": {
            "description": "The id of the media\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "player_id": {
            "description": "The id of the player",
            "format": "integer",
            "type": "integer"
          },
          "title": {
            "description": "The title of the media",
            "format": "text",
            "type": "string"
          },
          "subtitle": {
            "description": "The subtitle of the media",
            "format": "text",
            "type": "string"
          },
          "url": {
            "description": "The url of the media",
            "format": "text",
            "type": "string"
          },
          "thumbnail_url": {
            "description": "The thumbnail url of the media",
            "format": "text",
            "type": "string"
          },
          "date_published": {
            "description": "The date of publishing the media",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "channel_url": {
            "description": "The source url of the media",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "matches-incidents": {
        "description": "Incidents\nThis endpoint allows you to retrieve the incidents from matches.\n\nFor **incidents** we have many types: `goal`, `period`.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 10 seconds during a live match.<br />**Recommended Calls**: Limit calls to 1 per 10 seconds during a live match.\n\n### Use Cases\nGet incidents from a specific **match_id**<br />`https://table-tennis.sportmicro.com/matches-incidents?match_id=eq.{match_id}`",
        "properties": {
          "match_id": {
            "description": "The id of the match\n\nNote:\nThis is a Foreign Key to `matches.id`.<fk table='matches' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "incidents": {
            "description": "The incidents of the match",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "cup-bracket": {
        "description": "Cup bracket\nThis endpoint allows you to retrieve the cup knock outs.\nYou can use `id` from the `seasons` or `leagues` endpoint to get the wanted cup knock out tree.\n\nFields in rounds:\n\nField | Explanation\n--- | ---\n`order` | The order of the round\n`description` | The description of the round\n`blocks` | The blocks of the round\n`finished` | If the match is finished\n`order` | The order of the block\n`home_team_score` | The score of the home team\n`away_team_score` | The score of the away team\n`has_next_round_link` | If the match has next round\n`match_in_progress` | If the match is in play\n`series_start_date_timestamp` | The start date of the match\n`automatic_progression` | If the match has automatic progression\n`participants` | The participants of the block (match)\n`team_id` | The id of the team\n`winner` | If the team is winner of the block\n`order` | The order of the participants\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated after every finished match.<br />**Recommended Calls**: Limit calls to 1 per finished match.\n\n### Use Cases\nGet cup knock out based on the **id**<br />`https://table-tennis.sportmicro.com/cup-bracket?id=eq.{id}`<br /><br />Get cups based on the **season_id**<br />`https://table-tennis.sportmicro.com/cup-bracket?season_id=eq.{season_id}`<br /><br />Get cups based on the **league_id**<br />`https://table-tennis.sportmicro.com/cup-bracket?league_id=eq.{league_id}`",
        "properties": {
          "id": {
            "description": "The id of the cup bracket\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the cup bracket",
            "format": "text",
            "type": "string"
          },
          "current_round": {
            "description": "The last or the current round in the cup bracket",
            "format": "integer",
            "type": "integer"
          },
          "type": {
            "description": "The type of the cup bracket",
            "format": "integer",
            "type": "integer"
          },
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Foreign Key to `seasons.id`.<fk table='seasons' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The name image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "rounds": {
            "description": "The rounds of the cup bracket",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "referees-by-league": {
        "description": "Referees by league\nThis endpoint allows you to retrieve the referees from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet referees from a specific **league_id**<br />`https://table-tennis.sportmicro.com/referees-by-league?league_id=eq.{league_id}`",
        "properties": {
          "league_id": {
            "description": "The id of the league",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The hash image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "agg-news-matches": {
        "description": "Matches news\nThis endpoint allows you to retrieve aggregated news from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 15 minutes.<br />**Recommended Calls**: Limit calls to 1 every 15 minutes.\n\n### Use Cases\nGet news from a specific **match_id**<br />`https://table-tennis.sportmicro.com/agg-news-matches?match_id=eq.{match_id}`",
        "properties": {
          "id": {
            "description": "The id of the news\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "match_id": {
            "description": "The id of the match\n\nNote:\nThis is a Foreign Key to `matches.id`.<fk table='matches' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "title": {
            "description": "The title of the news",
            "format": "text",
            "type": "string"
          },
          "link": {
            "description": "The link of the news",
            "format": "text",
            "type": "string"
          },
          "thumbnail_url": {
            "description": "The thumbnail url of the news",
            "format": "text",
            "type": "string"
          },
          "description": {
            "description": "The description of the news",
            "format": "text",
            "type": "string"
          },
          "published_date": {
            "description": "The published date of the news",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "source_url": {
            "description": "The source url of the news",
            "format": "text",
            "type": "string"
          },
          "source": {
            "description": "The source of the news",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "referees": {
        "description": "Referees\nThis endpoint allows you to retrieve the referees.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet referees based on the **id**<br />`https://table-tennis.sportmicro.com/referees?id=eq.{id}`<br /><br />Get referees from a specific **country_id**<br />`https://table-tennis.sportmicro.com/referees?country_id=eq.{country_id}`",
        "properties": {},
        "type": "object"
      },
      "seasons": {
        "description": "Seasons\nThis endpoint allows you to retrieve the seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons<br />`https://table-tennis.sportmicro.com/seasons`<br /><br />Get seasons based on the **id**<br />`https://table-tennis.sportmicro.com/seasons?id=eq.{id}`<br /><br />Get seasons from a specific **league_id**<br />`https://table-tennis.sportmicro.com/seasons?league_id=eq.{league_id}`",
        "properties": {
          "id": {
            "description": "The id of the season\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "year": {
            "description": "The year of the season",
            "format": "text",
            "type": "string"
          },
          "start_time": {
            "description": "The start time of the season",
            "format": "text",
            "type": "string"
          },
          "end_time": {
            "description": "The end time of the season",
            "format": "text",
            "type": "string"
          },
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The name image of the league",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "tournaments": {
        "description": "Tournaments\nThis endpoint allows you to retrieve the tournaments.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tournaments<br />`https://table-tennis.sportmicro.com/tournaments`<br /><br />Get tournaments based on the **id**<br />`https://table-tennis.sportmicro.com/tournaments?id=eq.{id}`<br /><br />Get tournaments from a specific **league_id**<br />`https://table-tennis.sportmicro.com/tournaments?league_id=eq.{league_id}`<br /><br />Get tournaments from a specific **class_id**<br />`https://table-tennis.sportmicro.com/tournaments?class_id=eq.{class_id}`",
        "properties": {
          "id": {
            "description": "The id of the tournament\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the tournament",
            "format": "text",
            "type": "string"
          },
          "importance": {
            "description": "The importance level of the tournament",
            "format": "integer",
            "type": "integer"
          },
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The name image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "class_id": {
            "description": "The id of the class\n\nNote:\nThis is a Foreign Key to `classes.id`.<fk table='classes' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "class_name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "class_hash_image": {
            "description": "The name image of the class",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "arenas": {
        "description": "Arenas\nThis endpoint allows you to retrieve the arenas.\nWith geolocation parameter from `geolocations` endpoint we can see latitude and longitute of the arena.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can get the image of the arena by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet arenas<br />`https://table-tennis.sportmicro.com/arenas`<br /><br />Get arenas based on the **id**<br />`https://table-tennis.sportmicro.com/arenas?id=eq.{id}`<br /><br />Get arenas from a specific **country_id**<br />`https://table-tennis.sportmicro.com/arenas?country_id=eq.{country_id}`",
        "properties": {
          "id": {
            "description": "The id of the arena\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the arena",
            "format": "text",
            "type": "string"
          },
          "city": {
            "description": "The city of the arena",
            "format": "text",
            "type": "string"
          },
          "stadium_capacity": {
            "description": "The capacity of the stadium",
            "format": "integer",
            "type": "integer"
          },
          "built": {
            "description": "The built date of the arena",
            "format": "text",
            "type": "string"
          },
          "opened": {
            "description": "The date when the arena opened",
            "format": "text",
            "type": "string"
          },
          "owner": {
            "description": "The owner of the arena",
            "format": "text",
            "type": "string"
          },
          "surface": {
            "description": "The surface of the arena",
            "format": "text",
            "type": "string"
          },
          "hash_image": {
            "description": "The name of the image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "country_id": {
            "description": "The id of the country\n\nNote:\nThis is a Foreign Key to `countries.id`.<fk table='countries' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "country_name": {
            "description": "The name of the country",
            "format": "text",
            "type": "string"
          },
          "country_hash_image": {
            "description": "The name image of the country",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "geolocation": {
            "description": "The geolocation",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "classes": {
        "description": "Classes\nThis endpoint allows you to retrieve the classes.\nYou can use the `alpha` parameter to get a specific class as a country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times per day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can get the image of the category by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet classes<br />`https://table-tennis.sportmicro.com/classes`<br /><br />Get class based on the **id**<br />`https://table-tennis.sportmicro.com/classes?id=eq.{id}`<br /><br />Get classes based on the **alpha**<br />`https://table-tennis.sportmicro.com/classes?alpha=eq.{alpha}`",
        "properties": {
          "id": {
            "description": "The id of the class\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "flag": {
            "description": "The flag of the class",
            "format": "text",
            "type": "string"
          },
          "alpha": {
            "description": "The alpha name of the country",
            "format": "character varying",
            "maxLength": 2,
            "type": "string"
          },
          "importance": {
            "description": "The importance of the class specified with a number",
            "format": "integer",
            "type": "integer"
          },
          "hash_image": {
            "description": "The name of the image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "coaches": {
        "description": "Coaches\nThis endpoint allows you to retrieve the coaches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\nYou can get the image of the coach by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet coach based on the **id**<br />`https://table-tennis.sportmicro.com/coaches?id=eq.{id}`<br /><br />Get coach from a specific **country_id**<br />`https://table-tennis.sportmicro.com/coaches?country_id=eq.{country_id}`<br /><br />Get coach from a specific **team_id**<br />`https://table-tennis.sportmicro.com/coaches?team_id=eq.{team_id}`",
        "properties": {},
        "type": "object"
      },
      "matches-highlights": {
        "description": "Highlights\nThis endpoint allows you to retrieve the highlights from matches.\nIt has all social media posts about the match.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 10 seconds during a live match.<br />**Recommended Calls**: Limit calls to 1 per 10 seconds during a live match.\n\n### Use Cases\nGet highlights from a specific **match_id**<br />`https://table-tennis.sportmicro.com/matches-highlights?match_id=eq.{match_id}`",
        "properties": {
          "id": {
            "description": "The id of the highlight\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "match_id": {
            "description": "The id of the match\n\nNote:\nThis is a Foreign Key to `matches.id`.<fk table='matches' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "title": {
            "description": "The title of the highlight",
            "format": "text",
            "type": "string"
          },
          "subtitle": {
            "description": "The subtitle of the highlight",
            "format": "text",
            "type": "string"
          },
          "url": {
            "description": "The url of the highlight",
            "format": "text",
            "type": "string"
          },
          "created_at": {
            "description": "The publishing date of the highlight",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "source_url": {
            "description": "The source url of the highlight",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "leagues-by-class": {
        "description": "Leagues by class\nThis endpoint allows you to retrieve the leagues from a specific class.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet leagues from a specific **class_id**<br />`https://table-tennis.sportmicro.com/leagues-by-category?class_id=eq.{class_id}`",
        "properties": {
          "class_id": {
            "description": "The id of the class\n\nNote:\nThis is a Foreign Key to `classes.id`.<fk table='classes' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "class_name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "class_hash_image": {
            "description": "The hash image of the class",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "leagues": {
            "description": "The leagues",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "agg-news-teams": {
        "description": "Teams news\nThis endpoint allows you to retrieve aggregated news from teams.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 15 minutes.<br />**Recommended Calls**: Limit calls to 1 every 15 minutes.\n\n### Use Cases\nGet the news from a specific **team_id**<br />`https://table-tennis.sportmicro.com/agg-news-teams?team_id=eq.{team_id}`",
        "properties": {},
        "type": "object"
      },
      "news-matches": {
        "description": "Matches news\nThis endpoint allows you to retrieve the news from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 2 hours.<br />**Recommended Calls**: Limit calls to 1 every 2 hours.\n\n### Use Cases\nGet news from a specific **match_id**<br />`https://table-tennis.sportmicro.com/news-matches?match_id=eq.{match_id}`",
        "properties": {
          "id": {
            "description": "The id of the news",
            "format": "integer",
            "type": "integer"
          },
          "match_id": {
            "description": "The id of the match",
            "format": "integer",
            "type": "integer"
          },
          "league_id": {
            "description": "The id of the league",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The hash image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "date": {
            "description": "The date of the match",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "title": {
            "description": "The title of the news",
            "format": "text",
            "type": "string"
          },
          "name": {
            "description": "The name of the news",
            "format": "text",
            "type": "string"
          },
          "subtitles": {
            "description": "The subtitles",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "teams-by-league": {
        "description": "Teams by league\nThis endpoint allows you to retrieve the teams from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet teams from a specific **league_id**<br />`https://table-tennis.sportmicro.com/teams-by-league?league_id=eq.{league_id}`",
        "properties": {
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The hash image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "teams": {
            "description": "The teams",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "leagues-info": {
        "description": "Info\nThis endpoint allows you to retrieve the info from leagues and cups.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 every day.\n\n### Use Cases\nGet league info from a specific **league_id**<br />`https://table-tennis.sportmicro.com/leagues-info?league_id=eq.{league_id}`",
        "properties": {},
        "type": "object"
      },
      "countries": {
        "description": "Countries\nThis endpoint allows you to retrieve the countries.\nYou can use the `alpha` field to get the country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times per day.<br />**Recommended Calls**: Limit calls to 1 per week.\n\nYou can get the image of the country by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet countries<br />`https://table-tennis.sportmicro.com/countries`<br /><br />Get country based on the **id**<br />`https://table-tennis.sportmicro.com/countries?id=eq.{id}`<br /><br />Get countries based on the **alpha**<br />`https://table-tennis.sportmicro.com/countries?alpha=eq.{alpha}`",
        "properties": {
          "id": {
            "description": "The id of the country\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the country",
            "format": "text",
            "type": "string"
          },
          "alpha": {
            "description": "The alpha name of the country",
            "format": "character varying",
            "maxLength": 2,
            "type": "string"
          },
          "hash_image": {
            "description": "The name of the image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "agg-news-leagues": {
        "description": "Leagues news\nThis endpoint allows you to retrieve aggregated news from leagues.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 15 minutes.<br />**Recommended Calls**: Limit calls to 1 every 15 minutes.\n\n### Use Cases\nGet the news from a specific **league_id**<br />`https://table-tennis.sportmicro.com/agg-news-leagues?league_id=eq.{league_id}`",
        "properties": {},
        "type": "object"
      },
      "tv-channels": {
        "description": "Tv channels\nThis endpoint allows you to retrieve the tv channels.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a week.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tv channels<br />`https://table-tennis.sportmicro.com/tv-channels`<br /><br />Get tv channels based on the **name**<br />`https://table-tennis.sportmicro.com/tv-channels?name=like.*Sportklub*`<br /><br />Get tv channels based on the **id**<br />`https://table-tennis.sportmicro.com/tv-channels?id=eq.{id}`",
        "properties": {
          "id": {
            "description": "The id of the tv channel\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the tv channel",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "matches-statistics": {
        "description": "Statistics\nThis endpoint allows you to retrieve the statistics from matches.\n\nTypes of the statistics:\n**Red cards**, **Comeback to win**, **Receiver points won**, **Number of lets**, **Points won**, **Timeouts**, **Yellow cards**, **Max points in a row**, **Biggest lead**, **Service errors**, **Service points won**.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.\n**Recommended Calls**: Limit calls to 1 every minute.\n\n### Use Cases\nGet statistics from a specific **match_id**<br />`https://table-tennis.sportmicro.com/matches-statistics?match_id=eq.{match_id}`",
        "properties": {
          "match_id": {
            "description": "The id of the match\n\nNote:\nThis is a Foreign Key to `matches.id`.<fk table='matches' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "statistics": {
            "description": "The statistics of the match",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "teams-by-season": {
        "description": "Teams by season\nThis endpoint allows you to retrieve the teams from a specific season.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet teams from a specific **season_id**<br />`https://table-tennis.sportmicro.com/teams-by-season?season_id=eq.{season_id}`",
        "properties": {
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "teams": {
            "description": "The teams",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "teams": {
        "description": "Teams\nThis endpoint allows you to retrieve the teams.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can get the image of the team by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet teams<br />`https://table-tennis.sportmicro.com/teams`<br /><br />Get team based on the **name**<br />`https://table-tennis.sportmicro.com/teams?name=like.*Real*`<br /><br />Get team based on the **id**<br />`https://table-tennis.sportmicro.com/teams?id=eq.{id}`<br /><br />Get teams from a specific **country_id**<br />`https://table-tennis.sportmicro.com/teams?country_id=eq.{country_id}`<br /><br />Get teams from a specific **category_id**<br />`https://table-tennis.sportmicro.com/teams?category_id=eq.{category_id}`<br /><br />Get team from a specific **primary_league_id**<br />`https://table-tennis.sportmicro.com/teams?primary_league_id=eq.{primary_league_id}`",
        "properties": {
          "id": {
            "description": "The id of the team\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the team",
            "format": "text",
            "type": "string"
          },
          "short_name": {
            "description": "The short name of the team",
            "format": "text",
            "type": "string"
          },
          "full_name": {
            "description": "The full name of the team",
            "format": "text",
            "type": "string"
          },
          "gender": {
            "description": "The gender of the team",
            "format": "character",
            "maxLength": 1,
            "type": "string"
          },
          "name_code": {
            "description": "The name code of the team",
            "format": "text",
            "type": "string"
          },
          "national": {
            "description": "If the team is national",
            "format": "boolean",
            "type": "boolean"
          },
          "type": {
            "description": "The type of the team",
            "format": "integer",
            "type": "integer"
          },
          "color_primary": {
            "description": "The primary color of the team",
            "format": "character varying",
            "maxLength": 7,
            "type": "string"
          },
          "color_secondary": {
            "description": "The secondary color of the team",
            "format": "character varying",
            "maxLength": 7,
            "type": "string"
          },
          "color_text": {
            "description": "The text color of the team",
            "format": "character varying",
            "maxLength": 7,
            "type": "string"
          },
          "hash_image": {
            "description": "The name of the image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "country_id": {
            "description": "The id of the country\n\nNote:\nThis is a Foreign Key to `countries.id`.<fk table='countries' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "country_name": {
            "description": "The name of the country",
            "format": "text",
            "type": "string"
          },
          "country_hash_image": {
            "description": "The name image of the country",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "sub_teams": {
            "description": "The sub teams of the team",
            "format": "integer[]",
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "class_id": {
            "description": "The id of the class\n\nNote:\nThis is a Foreign Key to `classes.id`.<fk table='classes' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "class_name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "class_hash_image": {
            "description": "The name image of the class",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "tournament_id": {
            "description": "The id of the tournament\n\nNote:\nThis is a Foreign Key to `seasons-by-tournament.tournament_id`.<fk table='seasons-by-tournament' column='tournament_id'/>",
            "format": "integer",
            "type": "integer"
          },
          "tournament_name": {
            "description": "The name of the tournament",
            "format": "text",
            "type": "string"
          },
          "primary_league_id": {
            "description": "The id of the primary league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "primary_league_name": {
            "description": "The name of the primary league",
            "format": "text",
            "type": "string"
          },
          "primary_league_hash_image": {
            "description": "The name image of the primary league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "seasons-info": {
        "description": "Info\nThis endpoint allows you to retrieve the info from seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet info from a specific **season_id**<br />`https://table-tennis.sportmicro.com/seasons-info?season_id=eq.{season_id}`",
        "properties": {
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "rounds": {
            "description": "The number of rounds by the season",
            "format": "integer",
            "type": "integer"
          },
          "competitors": {
            "description": "The number of competitors by the season",
            "format": "integer",
            "type": "integer"
          },
          "city": {
            "description": "The host city of the season",
            "format": "text",
            "type": "string"
          },
          "countries": {
            "description": "The host countries of the season",
            "format": "text[]",
            "items": {
              "type": "string"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "agg-news-players": {
        "description": "Players news\nThis endpoint allows you to retrieve aggregated news from players.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 15 minutes.<br />**Recommended Calls**: Limit calls to 1 every 15 minutes.\n\n### Use Cases\nGet news from a specific **player_id**<br />`https://table-tennis.sportmicro.com/agg-news-players?player_id=eq.{player_id}`",
        "properties": {},
        "type": "object"
      },
      "tournaments-by-class": {
        "description": "Tournaments by class\nThis endpoint allows you to retrieve the tournaments from a specific class.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tournaments from a specific **class_id**<br />`https://table-tennis.sportmicro.com/tournaments-by-class?class_id=eq.{class_id}`",
        "properties": {
          "class_id": {
            "description": "The id of the class\n\nNote:\nThis is a Foreign Key to `classes.id`.<fk table='classes' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "class_name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "class_hash_image": {
            "description": "The hash image of the class",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "tournaments": {
            "description": "The tournaments",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "matches-by-date": {
        "description": "Matches by date\nThis endpoint allows you to retrieve the matches from a specific date. The date has a format of YYYY-DD-MM.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet matches from a specific **date**<br />`https://table-tennis.sportmicro.com/matches-by-date?date=eq.{date}`",
        "properties": {
          "date": {
            "description": "The date",
            "format": "text",
            "type": "string"
          },
          "matches": {
            "description": "The matches",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "teams-seasons": {
        "description": "Seasons\nThis endpoint allows you to retrieve the seasons from teams.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons from a specific **team_id**<br />`https://table-tennis.sportmicro.com/teams-seasons?team_id=eq.{team_id}`",
        "properties": {
          "team_id": {
            "description": "The id of the team\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "team_name": {
            "description": "The name of the team",
            "format": "text",
            "type": "string"
          },
          "team_hash_image": {
            "description": "The hash image of the team",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "tournaments": {
            "description": "The tournaments of the team playing",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "matches": {
        "description": "Matches\nThis endpoint allows you to retrieve the matches.\nYou can use `id` from the `seasons`, `tournaments`, `rounds`, `arenas`, `referees` and `teams` endpoint to get the matches.\nMatches status codes:\n\n`type` | `description`\n--- | ---\ncanceled | Abandoned\ncanceled | Canceled\ndelayed | Start delayed\nfinished | Walkover\nfinished | Removed\nfinished | 3rd set\nfinished | Retired\nfinished | 4th set\nfinished | Ended\nfinished | Coverage canceled\ninterrupted | Interrupted\nlive | 3rd set\nlive | 1st set\nlive | 4th set\nlive | 2nd set\nlive | Pause\nlive | 5th set\npostponed | Postponed\nupcoming | Not started\nlive | 6th set\nlive | 7th set\n\nFor **scores** we have fields for covering that: `current`, `display`, `period1`, `period2`, `period3`, `period4`, `period5`, `period6`, `period7`, `normaltime`, `point`, `extra1`, `team`, `match_id`.\n\nFor **time extras or injuries** we have fields for covering that: **current**, **current_period_start_timestamp**, **match_id**, **time**, **period_count**.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 10 seconds.<br />**Recommended Calls**: Limit calls to 1 every 10 seconds.\n\n### Use Cases\nGet matches<br />`https://table-tennis.sportmicro.com/matches`<br /><br />Get match based on the **id**<br />`https://table-tennis.sportmicro.com/matches?id=eq.{id}`<br /><br />Get matches based on the **start_time** (gte = greater than or equal to, lt = lower than)<br />`https://table-tennis.sportmicro.com/matches?start_time=gte.2023-04-27&start_time=lt.2023-04-28`<br /><br />Get matches based on the **status_type**<br />`https://table-tennis.sportmicro.com/matches?status_type=eq.{status_type}`<br /><br />Get matches based on the **season_id**<br />`https://table-tennis.sportmicro.com/matches?season_id=eq.{season_id}`<br /><br />Get matches based on the **tournament_id**<br />`https://table-tennis.sportmicro.com/matches?tournament_id=eq.{tournament_id}`<br /><br />Get matches based on the **round_id**<br />`https://table-tennis.sportmicro.com/matches?round_id=eq.{round_id}`<br /><br />Get matches based on the **arena_id**<br />`https://table-tennis.sportmicro.com/matches?arena_id=eq.{arena_id}`<br /><br />Get matches based on the **referee_id**<br />`https://table-tennis.sportmicro.com/matches?referee_id=eq.{referee_id}`<br /><br />**H2H** - Get head to head matches with teams ex.(home_team_id, away_team_id)<br />`https://table-tennis.sportmicro.com/matches?or=(home_team_id.eq.{home_team_id}, away_team_id.eq.{home_team_id}, home_team_id.eq.{away_team_id}, away_team_id.eq.{away_team_id})`<br /><br />Get home team matches based on the **home_team_id**<br />`https://table-tennis.sportmicro.com/matches?home_team_id=eq.{home_team_id}`<br /><br />Get away team matches based on the **away_team_id**<br />`https://table-tennis.sportmicro.com/matches?away_team_id=eq.{away_team_id}`",
        "properties": {
          "id": {
            "description": "The id of the match\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "Home team name vs away team name",
            "format": "character varying",
            "type": "string"
          },
          "tournament_id": {
            "description": "The id of the tournament\n\nNote:\nThis is a Foreign Key to `seasons-by-tournament.tournament_id`.<fk table='seasons-by-tournament' column='tournament_id'/>",
            "format": "integer",
            "type": "integer"
          },
          "tournament_name": {
            "description": "The name of the tournament",
            "format": "text",
            "type": "string"
          },
          "tournament_importance": {
            "description": "The importance of the tournament",
            "format": "integer",
            "type": "integer"
          },
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Foreign Key to `seasons.id`.<fk table='seasons' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "round_id": {
            "description": "The id of the round\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "round": {
            "description": "The round",
            "format": "jsonb"
          },
          "status": {
            "description": "The status of the match",
            "format": "jsonb"
          },
          "status_type": {
            "description": "The type of the match",
            "format": "text",
            "type": "string"
          },
          "arena_id": {
            "description": "The id of the arena\n\nNote:\nThis is a Foreign Key to `arenas.id`.<fk table='arenas' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "arena_name": {
            "description": "The name of the arena",
            "format": "text",
            "type": "string"
          },
          "arena_hash_image": {
            "description": "The name image of the arena",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "home_team_id": {
            "description": "The id of the home team\n\nNote:\nThis is a Foreign Key to `teams.id`.<fk table='teams' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "home_team_name": {
            "description": "The name of the home team",
            "format": "text",
            "type": "string"
          },
          "home_team_hash_image": {
            "description": "The name image of the home team",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "away_team_id": {
            "description": "The id of the away team\n\nNote:\nThis is a Foreign Key to `teams.id`.<fk table='teams' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "away_team_name": {
            "description": "The name of the away team",
            "format": "text",
            "type": "string"
          },
          "away_team_hash_image": {
            "description": "The name image of the away team",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "home_team_score": {
            "description": "The score of the home team",
            "format": "jsonb"
          },
          "away_team_score": {
            "description": "The score of the away team",
            "format": "jsonb"
          },
          "times": {
            "description": "The time of the match",
            "format": "jsonb"
          },
          "specific_start_time": {
            "description": "The real start time of the match",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "start_time": {
            "description": "The official start time of the match",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "duration": {
            "description": "The duration of the match",
            "format": "integer",
            "type": "integer"
          },
          "last_period": {
            "description": "The last period of the match",
            "format": "text",
            "type": "string"
          },
          "class_id": {
            "description": "The id of the class",
            "format": "integer",
            "type": "integer"
          },
          "class_name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "class_hash_image": {
            "description": "The name of the class image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "league_id": {
            "description": "The id of the league",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The name of the league image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "weather_id": {
            "description": "The id of the weather\n\nNote:\nThis is a Foreign Key to `matches-weather.id`.<fk table='matches-weather' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "weather_main": {
            "description": "The main weather",
            "format": "text",
            "type": "string"
          },
          "weather_icon": {
            "description": "The name icon of the weather",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "matches-weather": {
        "description": "Weather\nThis endpoint allows you to retrieve the weather from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every hour.\n**Recommended Calls**: Limit calls to 1 every hour.\n\n### Use Cases\nGet weather based on the **id**<br />`https://table-tennis.sportmicro.com/matches-weather?id=eq.{id}`",
        "properties": {
          "id": {
            "description": "The id of the weather\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "dt": {
            "description": "The date of the weather",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "temp": {
            "description": "The temperature of the weather `Kelvin`",
            "format": "numeric",
            "type": "number"
          },
          "feels_like": {
            "description": "The human perception of the weather",
            "format": "numeric",
            "type": "number"
          },
          "pressure": {
            "description": "The pressure of the weather",
            "format": "numeric",
            "type": "number"
          },
          "humidity": {
            "description": "The humidity of the weather in `%`",
            "format": "numeric",
            "type": "number"
          },
          "dew_point": {
            "description": "The minimum temperature of the weather `Kelvin`",
            "format": "numeric",
            "type": "number"
          },
          "uvi": {
            "description": "The maximum value of UV index for the day",
            "format": "numeric",
            "type": "number"
          },
          "clouds": {
            "description": "The cloudiness of the weather in `%`",
            "format": "numeric",
            "type": "number"
          },
          "wind_speed": {
            "description": "The wind speed `Metre/Sec`",
            "format": "numeric",
            "type": "number"
          },
          "wind_deg": {
            "description": "The wind direction `Degrees`",
            "format": "numeric",
            "type": "number"
          },
          "wind_gust": {
            "description": "The wind gust `Metre/Sec`",
            "format": "numeric",
            "type": "number"
          },
          "weather_id": {
            "description": "The random id of the weather",
            "format": "integer",
            "type": "integer"
          },
          "weather_main": {
            "description": "The title of the weather",
            "format": "text",
            "type": "string"
          },
          "weather_description": {
            "description": "The description of the weather",
            "format": "text",
            "type": "string"
          },
          "weather_icon": {
            "description": "The name of the image",
            "format": "text",
            "type": "string"
          },
          "pop": {
            "description": "The probability of precipitation in `%`",
            "format": "numeric",
            "type": "number"
          }
        },
        "type": "object"
      },
      "coaches-by-country": {
        "description": "Coaches by country\nThis endpoint allows you to retrieve the coaches from a specific country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet coaches from a specific **country_id**<br />`https://table-tennis.sportmicro.com/coaches-by-country?country_id=eq.{country_id}`",
        "properties": {},
        "type": "object"
      },
      "asian-handicaps": {
        "description": "Asian handicaps odds\nThis endpoint allows you to retrieve the odds from asian handicaps market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/asian-handicaps?match_id=eq.{match_id}`<br /><br />Get live odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/asian-handicaps?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get pre-match odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/asian-handicaps?match_id=eq.{match_id}&is_live=eq.false`",
        "properties": {},
        "type": "object"
      },
      "bookmakers": {
        "description": "Bookmakers\nThis endpoint allows you to retrieve information about all bookmakers.\n\nWith the help of the `popularity_order` parameter you can see which bookmaker is more popular and more used.\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can retrieve the image of a bookmaker by calling the following URL: https://images.sportmicro.com/{hash_image}.png\n\n### Use Cases\nGet all bookmakers<br />`https://table-tennis.sportmicro.com/odds/bookmakers`<br /><br />Get information about a specific bookmaker based on the **id**<br />`https://table-tennis.sportmicro.com/odds/bookmakers?id=eq.{id}`<br /><br />Get the most popular bookmakers<br />`https://table-tennis.sportmicro.com/odds/bookmakers?order=popularity_order`",
        "properties": {
          "id": {
            "description": "The id of the bookmaker. example:`eq.{id}`\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the bookmaker",
            "format": "text",
            "type": "string"
          },
          "popularity_order": {
            "description": "The popularity score of the bookmaker",
            "format": "text",
            "type": "string"
          },
          "hash_image": {
            "description": "The hash image of the bookmaker",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "odd-even": {
        "description": "Odd even odds\nThis endpoint allows you to retrieve the odds from odd even market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.\n\n**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/odd-even?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/odd-even?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/odd-even?match_id=eq.{match_id}&is_live=eq.false`",
        "properties": {},
        "type": "object"
      },
      "coverage-live": {
        "description": "Live odds coverages\nThis endpoint allows you to retrieve information about all matches coverages.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet all live coverages<br />`https://table-tennis.sportmicro.com/odds/coverage-live`<br /><br />Get live odds coverage a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/coverage-live?match_id=eq.{match_id}`",
        "properties": {
          "match_id": {
            "description": "The id of the match. example:`eq.{match_id}`",
            "format": "integer",
            "type": "integer"
          },
          "full_time_results": {
            "description": "Coverage of full_time_results",
            "format": "boolean",
            "type": "boolean"
          },
          "over_under": {
            "description": "Coverage of over_under",
            "format": "boolean",
            "type": "boolean"
          },
          "asian_handicaps": {
            "description": "Coverage of asian_handicaps",
            "format": "boolean",
            "type": "boolean"
          },
          "correct_score": {
            "description": "Coverage of correct_score",
            "format": "boolean",
            "type": "boolean"
          },
          "odd_even": {
            "description": "Coverage of odd_even",
            "format": "boolean",
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "full-time-results-movements": {
        "description": "Full time results odds movements\nThis endpoint allows you to retrieve the odds movements from full time results market.\n\nThe movements are available only for past matches within the last 6 months.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet the movements from a specific **full_time_result_id**<br />`https://table-tennis.sportmicro.com/odds/full-time-result-movements?full_time_result_id=eq.{full_time_result_id}`",
        "properties": {},
        "type": "object"
      },
      "over-under": {
        "description": "Over under odds\nThis endpoint allows you to retrieve the odds from over under market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/over-under?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/over-under?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/over-under?match_id=eq.{match_id}&is_live=eq.false`",
        "properties": {},
        "type": "object"
      },
      "coverage": {
        "description": "Odds Coverages\nThis endpoint allows you to retrieve information about all matches coverages.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet all coverages<br />`https://table-tennis.sportmicro.com/odds/coverage`<br /><br />Get odds coverages from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/coverage?match_id=eq.{match_id}`",
        "properties": {
          "match_id": {
            "description": "The id of the match. example:`eq.{match_id}`",
            "format": "integer",
            "type": "integer"
          },
          "full_time_results": {
            "description": "Coverage of full_time_results",
            "format": "boolean",
            "type": "boolean"
          },
          "over_under": {
            "description": "Coverage of over_under",
            "format": "boolean",
            "type": "boolean"
          },
          "asian_handicaps": {
            "description": "Coverage of asian_handicaps",
            "format": "boolean",
            "type": "boolean"
          },
          "correct_score": {
            "description": "Coverage of correct_score",
            "format": "boolean",
            "type": "boolean"
          },
          "odd_even": {
            "description": "Coverage of odd_even",
            "format": "boolean",
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "odd-even-movements": {
        "description": "Odd even odds movements\nThis endpoint allows you to retrieve the odds movements from odd even market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet the movements from a specific **odd_even_id**<br />`https://table-tennis.sportmicro.com/odds/odd-even-movements?odd_even_id=eq.{odd_even_id}`",
        "properties": {},
        "type": "object"
      },
      "correct-score-movements": {
        "description": "Correct score odds movements\nThis endpoint allows you to retrieve the odds movements from correct score market.\n\nThe movements are available only for past matches within the last 6 months.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet the movements from a specific **correct_score_id**<br />`https://table-tennis.sportmicro.com/odds/correct-score-movements?correct_score_id=eq.{correct_score_id}`",
        "properties": {},
        "type": "object"
      },
      "asian-handicaps-movements": {
        "description": "Asian handicaps odds movements\nThis endpoint allows you to retrieve the odds movements from asian handicaps market.\n\nThe movements are available only for past matches within the last 6 months.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet movements from a specific **asian_handicap_id**<br />`https://table-tennis.sportmicro.com/odds/asian-handicaps-movements?asian_handicap_id=eq.{asian_handicap_id}`",
        "properties": {},
        "type": "object"
      },
      "over-under-movements": {
        "description": "Over under odds movements\nThis endpoint allows you to retrieve the odds movements from over under market.\n\nThe movements are available only for past matches within the last 6 months.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet the movements from a specific **over_under_id**<br />`https://table-tennis.sportmicro.com/odds/over-under-movements?over_under_id=eq.{over_under_id}`",
        "properties": {},
        "type": "object"
      },
      "full-time-results": {
        "description": "Full time results odds\nThis endpoint allows you to retrieve the odds from full time results market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/full-time-results?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/full-time-results?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/full-time-results?match_id=eq.{match_id}&is_live=eq.false`",
        "properties": {
          "match_id": {
            "description": "The id of the match. example:`eq.{match_id}`",
            "format": "integer",
            "type": "integer"
          },
          "is_live": {
            "description": "If the match is live. example:`eq.{is_live}`",
            "format": "boolean",
            "type": "boolean"
          },
          "periods": {
            "description": "Periods",
            "format": "json"
          }
        },
        "type": "object"
      },
      "correct-score": {
        "description": "Correct score odds\nThis endpoint allows you to retrieve the odds from correct score market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/correct-score?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/correct-score?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://table-tennis.sportmicro.com/odds/correct-score?match_id=eq.{match_id}&is_live=eq.false`",
        "properties": {
          "match_id": {
            "description": "The id of the match. example:`eq.{match_id}`",
            "format": "integer",
            "type": "integer"
          },
          "is_live": {
            "description": "If the match is live. example:`eq.{is_live}`",
            "format": "boolean",
            "type": "boolean"
          },
          "periods": {
            "description": "Periods",
            "format": "json"
          }
        },
        "type": "object"
      }
    }
  }
}
