{
  "openapi": "3.0.3",
  "info": {
    "description": "Sportmicro is happy to have you here! Thanks for visiting our baseball documentation. You will learn all there is to know about Sportmicro' Baseball 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/baseball.png",
      "altText": "Sportmicro baseball logo"
    },
    "license": {
      "name": "MIT",
      "url": "https://opensource.org/licenses/MIT"
    }
  },
  "paths": {
    "/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://baseball.sportmicro.com/leagues`<br /><br />Search the leagues by the `name`<br />`https://baseball.sportmicro.com/leagues?name=like.*Championship*`<br /><br />Get leagues based on the **id**<br />`https://baseball.sportmicro.com/leagues?id=eq.{id}`<br /><br />Get leagues from a specific **class_id**<br />`https://baseball.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": 60,
                      "name": "LMBP",
                      "importance": 0,
                      "most_titles": 0,
                      "hash_image": "80742f7b4fc80676a85cdb2cd02c6e7ef6d3080221574c11fc28485e6acd23a5",
                      "class_id": 40,
                      "class_name": "Venezuela",
                      "class_hash_image": "68abaea892c50a8ceb773420b3275ae7d067f83be8595f65a1d219b2e38e1715"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Leagues"
      }
    },
    "/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://baseball.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": 60,
                      "league_name": "LMBP",
                      "league_hash_image": "80742f7b4fc80676a85cdb2cd02c6e7ef6d3080221574c11fc28485e6acd23a5",
                      "teams": [
                        {
                          "id": 160,
                          "name": "Guerreros De Caracas",
                          "hash_image": "b65e02bae2e024f77edaa08af8555a404e04b5af4d2e141e636d51808054cfbd"
                        },
                        {
                          "id": 169,
                          "name": "Centauros De La Guaira",
                          "hash_image": "f796fd114ab9186ded346acb83e3b164f642c190531f3b7399709f818e6a7626"
                        },
                        {
                          "id": 103600,
                          "name": "Caimanes de Barranquilla",
                          "hash_image": "11685f59d4f4b9a79eb178ec97996d9c15afdd72a90ac138659c4eb151d2b0c9"
                        },
                        {
                          "id": 103846,
                          "name": "Lanceros de La Guaira",
                          "hash_image": "a9ccba614d822bee9b0e038d8f825b57f7862901149636d4c0631441f583c87f"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams By League"
      }
    },
    "/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://baseball.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-10-28T00:00:00+00:00",
                      "temp": 298.02,
                      "feels_like": 298.6,
                      "pressure": 1016,
                      "humidity": 78,
                      "dew_point": 294.03,
                      "uvi": 0,
                      "clouds": 51,
                      "wind_speed": 2.57,
                      "wind_deg": 174,
                      "wind_gust": 4.9,
                      "weather_id": 501,
                      "weather_main": "Rain",
                      "weather_description": "moderate rain",
                      "weather_icon": "10n",
                      "pop": 0.98
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Weather"
      }
    },
    "/players": {
      "get": {
        "tags": [
          "Players"
        ],
        "summary": "Players",
        "description": "This endpoint allows you to retrieve the 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\nYou can get the image of the player by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet players<br />`https://baseball.sportmicro.com/players`<br /><br />Get players based on the **name**<br />`https://baseball.sportmicro.com/players?name=like.*Cristiano*`<br /><br />Get players based on the **id**<br />`https://baseball.sportmicro.com/players?id=eq.{id}`<br /><br />Get players from a specific **team_id**<br />`https://baseball.sportmicro.com/players?team_id=eq.{team_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.players.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.players.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/players"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 115,
                      "name": "Hsu Jo-Hsi",
                      "nickname": "H. Jo-Hsi",
                      "player_position": "P",
                      "player_jersey_number": "18",
                      "player_height": 180,
                      "country_id": 47,
                      "country_name": "Chinese Taipei",
                      "country_hash_image": "ca605087f6733bafd8441b1416ce4583f39888ee41920590fdcfb1d0fb43e05c",
                      "shirt_number": 18,
                      "date_of_birth": "2000-11-01T00:00:00+00:00",
                      "hash_image": "46a82e40f6072e3e57761b41302a352b6b5149b23bc393b38bf7997a4a68b1ef"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Players"
      }
    },
    "/matches-lineups": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches Lineups",
        "description": "This endpoint allows you to retrieve the lineups from matches.\nWith this endpoint you can see the lineups from the match. This endpoint also has `confirmed` filed to check if the lineup is confirmed.\n\nFields in lineup:\n\nField | Explanation\n--- | ---\n`formation` | The formation of the lineup\n`player_color_primary` | The primary color of the players\n`player_color_number` | The number color of the players\n`player_color_outline` | The outline color of the players\n`goalkeeper_color_primary` | The primary color of the goalkeeper\n`goalkeeper_color_number` | The number color of the goalkeeper\n`goalkeeper_color_outline` | The outline color of the goalkeeper\n`players` | The players of the lineup\n\nFields in players:\n\nField | Explanation\n--- | ---\n`player_id` | The id of the player\n`shirt_number` | The shirt number of the player\n`jersey_number` | The jersey number of the player\n`position` | The position of the player\n`substitute` | If the player is substituted\n\nResons for missing the match:\n\nId | Reason\n--- | ---\n0 | Other\n1 | Injured\n2 | Ill\n3 | Suspended\n11 | YellowCard\n12 | YellowRedCard\n13 | RedCard\n21 | OnLoan\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 5 minutes.\n**Recommended Calls**: Limit calls to 1 every 5 minutes.\n\n### Use Cases\nGet lineups based on the **id**<br />`https://baseball.sportmicro.com/matches-lineups?id=eq.{id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-lineups.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-lineups"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "confirmed": true,
                      "home_team": {
                        "players": [
                          {
                            "position": "C",
                            "player_id": 7908,
                            "substitute": false,
                            "player_name": "Adley Rutschman",
                            "player_hash_image": "c8ea7bcbd27c5929fdd9bfd6a28f7080563046c8c9eb6674879f21af0d05fc91"
                          },
                          {
                            "position": "IF",
                            "player_id": 7199,
                            "substitute": false,
                            "player_name": "Adam Frazier",
                            "player_hash_image": "415afb503bed06ed4a2b62fa7c69338f59d115ab12ec8df3f1b2388c5552cc5f"
                          },
                          {
                            "position": "IF",
                            "player_id": 7927,
                            "substitute": false,
                            "player_name": "Ryan Mountcastle",
                            "player_hash_image": "34d4c1cc9376e8b05aeb65f9dc8068ff77de72953e4291bb9e760113753654ba"
                          },
                          {
                            "position": "IF",
                            "player_id": 7940,
                            "substitute": false,
                            "player_name": "Gunnar Henderson",
                            "player_hash_image": "05c7c9345de0b2ca59eb41a8f974d14e1dc7b068fb194e8529044ea9e4c5bfdb"
                          },
                          {
                            "position": "IF",
                            "player_id": 8801,
                            "substitute": true,
                            "player_name": "Ryan O'Hearn",
                            "player_hash_image": "d1991c5375347852ab28569a5cac6b548ea636563b91d871730ede472cae41b2"
                          },
                          {
                            "position": "IF",
                            "player_id": 9468,
                            "substitute": false,
                            "player_name": "Ramón Urías",
                            "player_hash_image": "5aed147f482a38ef146bc085cafc645777e5007dd7c9dd012cc3a0e106c24275"
                          },
                          {
                            "position": "IF",
                            "player_id": 9527,
                            "substitute": false,
                            "player_name": "Jordan Westburg",
                            "player_hash_image": "94046c0881ca21c6b5497f63aa10c99cd415150f6468a44224c0360f41a0223f"
                          },
                          {
                            "position": "IF",
                            "player_id": 9540,
                            "substitute": true,
                            "player_name": "Jorge Mateo",
                            "player_hash_image": "6b102aab991858657ca956aed95a08863d6001c0a22a2507afb1ec6a8373aed0"
                          },
                          {
                            "position": "OF",
                            "player_id": 9498,
                            "substitute": false,
                            "player_name": "Austin Hays",
                            "player_hash_image": "9f6897e277cbc9de0284da68ffbe4343ac6e4d5235f1de5b8ad3bd2830f02fdf"
                          },
                          {
                            "position": "OF",
                            "player_id": 9512,
                            "substitute": false,
                            "player_name": "Anthony Santander",
                            "player_hash_image": "b4939d3f06be7db5d9776777d7c156e063e059b6c4cf49b5027f7401e054d59e"
                          },
                          {
                            "position": "OF",
                            "player_id": 9520,
                            "substitute": false,
                            "player_name": "Aaron Hicks",
                            "player_hash_image": "9a14143a3640023bf60f74633e501b21f88305c02f6a3a356c7543850711d1b6"
                          },
                          {
                            "position": "OF",
                            "player_id": 9532,
                            "substitute": false,
                            "player_name": "Cedric Mullins",
                            "player_hash_image": "07f2c41c1f4eeafe2e343352495f77770b9ccc025bf5cbbab578bb8b9783b3cf"
                          },
                          {
                            "position": "P",
                            "player_id": 6774,
                            "substitute": false,
                            "player_name": "Kyle Bradish",
                            "player_hash_image": "a562b3ea4d5f493d0ad9d9e40a61fd10238a04d2c67322c82802f67140bbf53f"
                          },
                          {
                            "position": "P",
                            "player_id": 6780,
                            "substitute": true,
                            "player_name": "Tyler Wells",
                            "player_hash_image": "60076a69951c87ca54d1a749d55d9fed048ee2d573eee391fba945c7365ecbb7"
                          },
                          {
                            "position": "P",
                            "player_id": 7041,
                            "substitute": true,
                            "player_name": "Jacob Webb",
                            "player_hash_image": "a6cf6613c91291520934c65351433c6b21348344d312859abb58d6a2e71838ba"
                          },
                          {
                            "position": "P",
                            "player_id": 8378,
                            "substitute": true,
                            "player_name": "Cionel Pérez",
                            "player_hash_image": "6071d7df635c516db1585c847930bd870acb7a65c9e42ecf5bcfa216e5f14ba8"
                          },
                          {
                            "position": "P",
                            "player_id": 9548,
                            "substitute": true,
                            "player_name": "Danny Coulombe",
                            "player_hash_image": "967173d43bd88446a740ef84add18436b50f630b620ffde1aa158f9c8e1e21b5"
                          },
                          {
                            "position": "P",
                            "player_id": 9556,
                            "substitute": true,
                            "player_name": "DL Hall",
                            "player_hash_image": "23f2ed7b23335e4089d07a94197187fdf6a14356d349ace4e86c553c5689b501"
                          }
                        ],
                        "player_color_number": "e6422c",
                        "player_color_primary": "000000"
                      },
                      "away_team": {
                        "players": [
                          {
                            "position": "C",
                            "player_id": 9569,
                            "substitute": false,
                            "player_name": "Jonah Heim",
                            "player_hash_image": "1207db7d61411a9ddc436bacc91ba7314e6e96abc4ba0df158667b270af6e063"
                          },
                          {
                            "position": "IF",
                            "player_id": 8550,
                            "substitute": false,
                            "player_name": "Josh Jung",
                            "player_hash_image": "3d7e628fd29368e8f984400cddf3c84970bfb532f785004f1e9230c0f05d6956"
                          },
                          {
                            "position": "IF",
                            "player_id": 8554,
                            "substitute": false,
                            "player_name": "Corey Seager",
                            "player_hash_image": "d4f0375d111ce8d653b4964656e73432501c0d4c4ce42d8532207bf89532e59b"
                          },
                          {
                            "position": "IF",
                            "player_id": 9560,
                            "substitute": false,
                            "player_name": "Marcus Semien",
                            "player_hash_image": "b1529382882486b0301cfc60fd90b306c774d8cc919c861b8c3b656897baade4"
                          },
                          {
                            "position": "IF",
                            "player_id": 9575,
                            "substitute": false,
                            "player_name": "Nathaniel Lowe",
                            "player_hash_image": "eeb75355e9ae6674ec000b276d0d36a1532a8946c87da4d0543a2865aa8f90ff"
                          },
                          {
                            "position": "OF",
                            "player_id": 7963,
                            "substitute": false,
                            "player_name": "Leody Taveras",
                            "player_hash_image": "bdc9578cd80d4534df016d1182e15d38df4b161fe7c63b424e910ed3ecf06588"
                          },
                          {
                            "position": "OF",
                            "player_id": 8142,
                            "substitute": false,
                            "player_name": "Jose García",
                            "player_hash_image": "a45d0110386bedf4df18eb4a2fd18c5988bf9f2d8cd1f1901f3e352503d9e50d"
                          },
                          {
                            "position": "OF",
                            "player_id": 8588,
                            "substitute": false,
                            "player_name": "Evan Carter",
                            "player_hash_image": "7325ebb5bcde2fa5ce42509268e94f3ab9ec31c92b7586e98b649d552368ff23"
                          },
                          {
                            "position": "OF",
                            "player_id": 9563,
                            "substitute": false,
                            "player_name": "Robbie Grossman",
                            "player_hash_image": "2f9a2742d6ea6ac8de89bdb361e36c22e8dbc32434d72c4692d187fe4b55cf03"
                          },
                          {
                            "position": "P",
                            "player_id": 9274,
                            "substitute": true,
                            "player_name": "Aroldis Chapman",
                            "player_hash_image": "b75588a2d8c0ad3f55a8b992411ffe2ba3b7aac7c9773fd0f5d45ca3c0f011a6"
                          },
                          {
                            "position": "P",
                            "player_id": 9576,
                            "substitute": false,
                            "player_name": "Andrew Heaney",
                            "player_hash_image": "f24dc8b3f9f380cafc3cda3f55506b4e436b9bef9b0ce0d50a11795dd486bfb6"
                          },
                          {
                            "position": "P",
                            "player_id": 9588,
                            "substitute": true,
                            "player_name": "Dane Dunning",
                            "player_hash_image": "aca1708cf01e9a86cf8da0f6508e8f67c5816867d0348553f43caa86143cd177"
                          },
                          {
                            "position": "P",
                            "player_id": 9594,
                            "substitute": true,
                            "player_name": "Will Smith",
                            "player_hash_image": "c3ec3747275344c5eb475d363b4e901e8bfc9bb8f6e787cb9f066f8409f3f67b"
                          },
                          {
                            "position": "P",
                            "player_id": 9602,
                            "substitute": true,
                            "player_name": "Josh Sborz",
                            "player_hash_image": "e49f455f75bdc5f35475e36614485c05167dad8da44d1eff71e1e39ca124aad8"
                          },
                          {
                            "position": "P",
                            "player_id": 9609,
                            "substitute": true,
                            "player_name": "José Leclerc",
                            "player_hash_image": "7e01d2805e3b1626374eb22a8e649358bfe53dd23778fc1bd4a6eecbcda4914a"
                          }
                        ],
                        "player_color_number": "000080",
                        "player_color_primary": "000000"
                      }
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Lineups"
      }
    },
    "/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://baseball.sportmicro.com/classes`<br /><br />Get class based on the **id**<br />`https://baseball.sportmicro.com/classes?id=eq.{id}`<br /><br />Get classes based on the **alpha**<br />`https://baseball.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": 40,
                      "name": "Venezuela",
                      "flag": "venezuela",
                      "alpha": "VE",
                      "importance": 1,
                      "hash_image": "68abaea892c50a8ceb773420b3275ae7d067f83be8595f65a1d219b2e38e1715",
                      "matches_live_count": 0,
                      "last_match_date": "2026-05-06T23:00:00+00:00",
                      "next_match_date": "2026-05-07T20:30:00+00:00"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Classes"
      }
    },
    "/coaches": {
      "get": {
        "tags": [
          "Coaches"
        ],
        "summary": "Coaches",
        "description": "This 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://baseball.sportmicro.com/coaches?id=eq.{id}`<br /><br />Get coach from a specific **country_id**<br />`https://baseball.sportmicro.com/coaches?country_id=eq.{country_id}`<br /><br />Get coach from a specific **team_id**<br />`https://baseball.sportmicro.com/coaches?team_id=eq.{team_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.coaches.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.coaches.country_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.coaches.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/coaches"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 29,
                      "name": "Tseng Hao-Jiu",
                      "nickname": "T. Hao-Jiu",
                      "nationality": "TWN",
                      "nationality_iso2": "TW",
                      "hash_image": "38d3b90868f0f7406f6d089981c1acc5c61e6918726033e8757c3a92e0783dba",
                      "team_id": 362,
                      "team_name": "Chinese Taipei",
                      "team_hash_image": "7a9d6c910c095a6d818d72ef716c84af669131d966a930abbf25e873202c606e",
                      "class_id": 47,
                      "class_name": "Chinese Taipei",
                      "class_hash_image": "ca605087f6733bafd8441b1416ce4583f39888ee41920590fdcfb1d0fb43e05c"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Coaches"
      }
    },
    "/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://baseball.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": 502,
                      "league_id": 149,
                      "title": "USA 2 - 3 Venezuela",
                      "subtitle": "Full Highlights",
                      "url": "https://www.youtube.com/watch?v=IW3UgNejaLI",
                      "thumbnail_url": "https://i.ytimg.com/vi/IW3UgNejaLI/hqdefault.jpg",
                      "date_published": "2026-03-18T03:36:38+00:00",
                      "channel_url": "https://www.youtube.com/watch?v=IW3UgNejaLI"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Media Leagues"
      }
    },
    "/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://baseball.sportmicro.com/arenas`<br /><br />Get arenas based on the **id**<br />`https://baseball.sportmicro.com/arenas?id=eq.{id}`<br /><br />Get arenas from a specific **country_id**<br />`https://baseball.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": 993,
                      "name": "Incheon SSG Landers Park",
                      "city": "Incheon",
                      "stadium_capacity": 26000,
                      "hash_image": "ee866b9c4248cda21312802993332d0df574ab6cf28fd0ca1798873ac70673f3",
                      "country_id": 23,
                      "country_name": "South Korea",
                      "country_hash_image": "fa34f97bf4bcb580fd7dab4cca45c67b9ac4fd4452e044a29eb3da8d11ac4a46",
                      "geolocation": [
                        {
                          "name": "Incheon",
                          "type": "locality",
                          "label": "South Korea Incheon Nam Incheon",
                          "county": "Nam",
                          "region": "Incheon",
                          "latitude": 37.448687,
                          "locality": "Incheon",
                          "continent": "Asia",
                          "longitude": 126.68388,
                          "confidence": 1,
                          "region_code": "IN",
                          "country_code": "KOR"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Arenas"
      }
    },
    "/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://baseball.sportmicro.com/countries`<br /><br />Get country based on the **id**<br />`https://baseball.sportmicro.com/countries?id=eq.{id}`<br /><br />Get countries based on the **alpha**<br />`https://baseball.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"
      }
    },
    "/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://baseball.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": 223,
                      "title": "Yankees 4 - 3 Red Sox",
                      "subtitle": "Full Highlights",
                      "url": "https://www.youtube.com/watch?v=qI8mgNT2G0s",
                      "created_at": "2025-10-02T04:01:17+00:00",
                      "source_url": "https://www.youtube.com/watch?v=qI8mgNT2G0s"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Highlights"
      }
    },
    "/matches-players-statistics": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches Players Statistics",
        "description": "This endpoint allows you to retrieve the players statistics 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 minute.\n**Recommended Calls**: Limit calls to 1 every minute.\n\n### Use Cases\nGet player statistics from a specific **match_id**<br />`https://baseball.sportmicro.com/matches-players-statistics?match_id=eq.{match_id}`<br /><br />Get the best player from a specific **match_id**<br />`https://baseball.sportmicro.com/matches-players-statistics?match_id=eq.{match_id}&order=rating.desc&limit=1`<br /><br />Get player statistics from a specific **match_id** and **team_id**<br />`https://baseball.sportmicro.com/matches-players-statistics?match_id=eq.{match_id}&team_id=eq.{team_id}`<br /><br />Get player statistics from a specific **match_id**, **team_id** and **player_id**<br />`https://baseball.sportmicro.com/matches-players-statistics?match_id=eq.{match_id}&team_id=eq.{team_id}&player_id=eq.{player_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-players-statistics.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches-players-statistics.team_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches-players-statistics.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/matches-players-statistics"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 1174,
                      "team_id": 8599,
                      "player_id": 10707,
                      "position": "IF",
                      "batting_fly_outs": 1,
                      "batting_ground_outs": 1,
                      "batting_runs": 0,
                      "batting_doubles": 0,
                      "batting_triples": 0,
                      "batting_home_runs": 0,
                      "batting_strike_outs": 0,
                      "batting_base_on_balls": 2,
                      "batting_hits": 0,
                      "batting_hit_by_pitch": 0,
                      "batting_rbi": 0,
                      "batting_caught_stealing": 0,
                      "batting_stolen_bases": 0,
                      "batting_at_bats": 2,
                      "batting_left_on_base": 0,
                      "batting_sac_bunts": 0,
                      "batting_sac_flies": 0,
                      "batting_average": 0
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Players Statistics"
      }
    },
    "/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-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://baseball.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": "2003-03-30",
                      "matches": [
                        {
                          "id": 223436,
                          "name": "Los Angeles Angels vs Texas Rangers",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 1806,
                          "season_id": 4581,
                          "start_time": "2003-03-30T20:00:00+00:00",
                          "league_name": "MLB",
                          "season_name": "2003",
                          "away_team_id": 8769,
                          "home_team_id": 9128,
                          "status_reason": "Ended",
                          "tournament_id": 3975,
                          "away_team_name": "Texas Rangers",
                          "home_team_name": "Los Angeles Angels",
                          "away_team_score": 6,
                          "home_team_score": 3,
                          "tournament_name": "MLB - Regular Season",
                          "league_hash_image": "fd2a8baf7dbd0fc469142a961a385bcb1bb91dc1ab7cb7561e730068203d150c",
                          "away_team_hash_image": "a4f29e82ad3d9751aad8e86cf38cbc7ff91d80cfb460289e26cc777ec8902f91",
                          "home_team_hash_image": "490f9ac59f29de82602b9ca29f3ee701aa0cf4e0f75c614ac233442ad773b67c",
                          "tournament_importance": 17
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches By Date"
      }
    },
    "/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://baseball.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": 60,
                      "league_name": "LMBP",
                      "league_hash_image": "80742f7b4fc80676a85cdb2cd02c6e7ef6d3080221574c11fc28485e6acd23a5",
                      "tournaments": [
                        {
                          "id": 60,
                          "name": "LMBP",
                          "importance": 0
                        },
                        {
                          "id": 92,
                          "name": "LMBP - Playoffs",
                          "importance": 0
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Tournaments By League"
      }
    },
    "/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://baseball.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": 23,
                      "country_name": "England",
                      "country_hash_image": "69374b09b1681162ba2d6bba92d6a167ea5ca5921eb172eb173e999e3be5d8ba",
                      "arenas": [
                        {
                          "id": 4589,
                          "name": "London Stadium",
                          "hash_image": "8010b666893532ea8cf35c488139455b833e6a8611d123fe2b2aa5169ef2bcd2"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Arenas By Country"
      }
    },
    "/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://baseball.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": "2003-03-30",
                      "league_id": 1806,
                      "league_name": "MLB",
                      "league_hash_image": "fd2a8baf7dbd0fc469142a961a385bcb1bb91dc1ab7cb7561e730068203d150c",
                      "matches": [
                        {
                          "id": 223436,
                          "name": "Los Angeles Angels vs Texas Rangers",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 4581,
                          "start_time": "2003-03-30T20:00:00+00:00",
                          "season_name": "2003",
                          "away_team_id": 8769,
                          "home_team_id": 9128,
                          "status_reason": "Ended",
                          "tournament_id": 3975,
                          "away_team_name": "Texas Rangers",
                          "home_team_name": "Los Angeles Angels",
                          "away_team_score": 6,
                          "home_team_score": 3,
                          "tournament_name": "MLB - Regular Season",
                          "away_team_hash_image": "a4f29e82ad3d9751aad8e86cf38cbc7ff91d80cfb460289e26cc777ec8902f91",
                          "home_team_hash_image": "490f9ac59f29de82602b9ca29f3ee701aa0cf4e0f75c614ac233442ad773b67c",
                          "tournament_importance": 17
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches By Date League"
      }
    },
    "/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://baseball.sportmicro.com/tv-channels`<br /><br />Get tv channels based on the **name**<br />`https://baseball.sportmicro.com/tv-channels?name=like.*Sportklub*`<br /><br />Get tv channels based on the **id**<br />`https://baseball.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"
      }
    },
    "/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://baseball.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": 60,
                      "league_name": "LMBP",
                      "league_hash_image": "80742f7b4fc80676a85cdb2cd02c6e7ef6d3080221574c11fc28485e6acd23a5"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Referees By League"
      }
    },
    "/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://baseball.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": 40,
                      "class_name": "Venezuela",
                      "class_hash_image": "68abaea892c50a8ceb773420b3275ae7d067f83be8595f65a1d219b2e38e1715",
                      "tournaments": [
                        {
                          "id": 60,
                          "name": "LMBP",
                          "importance": 0
                        },
                        {
                          "id": 78,
                          "name": "LMBP - Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 82,
                          "name": "LMBP - Main Round",
                          "importance": 0
                        },
                        {
                          "id": 88,
                          "name": "LMBP",
                          "importance": 0
                        },
                        {
                          "id": 92,
                          "name": "LMBP - Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 22992,
                          "name": "LVBP - Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 22997,
                          "name": "LVBP - Championship Round",
                          "importance": 0
                        },
                        {
                          "id": 23004,
                          "name": "LVBP",
                          "importance": 0
                        },
                        {
                          "id": 23006,
                          "name": "LVBP",
                          "importance": 0
                        },
                        {
                          "id": 23080,
                          "name": "LVBP - Qualification Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 31552,
                          "name": "Lvbp - Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 31790,
                          "name": "Venezuela Lvbp - Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 32223,
                          "name": "LVBP, Playoffs",
                          "importance": 0
                        },
                        {
                          "id": 32230,
                          "name": "LVBP - Losers Playoffs",
                          "importance": 0
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Tournaments By Class"
      }
    },
    "/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://baseball.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": 180,
                      "season_name": "SEA Games 2025",
                      "rounds": [
                        {
                          "id": 1933,
                          "round": 1,
                          "end_time": "2025-12-05",
                          "start_time": "2025-12-05"
                        },
                        {
                          "id": 1934,
                          "round": 2,
                          "end_time": "2025-12-06",
                          "start_time": "2025-12-06"
                        },
                        {
                          "id": 1935,
                          "round": 3,
                          "end_time": "2025-12-07",
                          "start_time": "2025-12-07"
                        },
                        {
                          "id": 1936,
                          "round": 4,
                          "end_time": "2025-12-08",
                          "start_time": "2025-12-08"
                        },
                        {
                          "id": 1937,
                          "round": 5,
                          "end_time": "2025-12-09",
                          "start_time": "2025-12-09"
                        },
                        {
                          "id": 1938,
                          "round": 6,
                          "end_time": "2025-12-10",
                          "start_time": "2025-12-10"
                        },
                        {
                          "id": 1939,
                          "round": 7,
                          "end_time": "2025-12-11",
                          "start_time": "2025-12-11"
                        },
                        {
                          "id": 1940,
                          "name": "Match for 3rd place",
                          "round": 50,
                          "end_time": "2025-12-12",
                          "start_time": "2025-12-12"
                        },
                        {
                          "id": 1941,
                          "name": "Final",
                          "round": 29,
                          "end_time": "2025-12-12",
                          "start_time": "2025-12-12"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons Rounds"
      }
    },
    "/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://baseball.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": 92,
                      "season_name": "2021",
                      "competitors": 9,
                      "countries": [
                        "Venezuela"
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons Info"
      }
    },
    "/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://baseball.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": 253,
                      "season_name": "2020",
                      "groups": [
                        {
                          "name": "Group A",
                          "tournament_id": 222,
                          "tournament_name": "Olympic Games - Group A"
                        },
                        {
                          "name": "Group B",
                          "tournament_id": 21057,
                          "tournament_name": "Olympic Games - Group B"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons Groups"
      }
    },
    "/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://baseball.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": 60,
                      "tournament_name": "LMBP",
                      "seasons": [
                        {
                          "id": 63,
                          "name": "2022",
                          "year": "2022"
                        },
                        {
                          "id": 92,
                          "name": "2021",
                          "year": "2021"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons By Tournament"
      }
    },
    "/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://baseball.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": 60,
                      "league_name": "LMBP",
                      "league_hash_image": "80742f7b4fc80676a85cdb2cd02c6e7ef6d3080221574c11fc28485e6acd23a5",
                      "seasons": [
                        {
                          "id": 63,
                          "name": "2022",
                          "year": "2022",
                          "start_time": "2022-05-17"
                        },
                        {
                          "id": 92,
                          "name": "2021",
                          "year": "2021",
                          "start_time": "2021-04-02"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons By League"
      }
    },
    "/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://baseball.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": 60,
                      "tournament_name": "LMBP",
                      "teams": [
                        {
                          "team_id": 127,
                          "team_name": "Delfines de La Guaira",
                          "team_hash_image": "346979457f3f51977b65b2728ec7308d9b367a9e73db37623f407ef2fc043626"
                        },
                        {
                          "team_id": 160,
                          "team_name": "Guerreros De Caracas",
                          "team_hash_image": "b65e02bae2e024f77edaa08af8555a404e04b5af4d2e141e636d51808054cfbd"
                        },
                        {
                          "team_id": 103846,
                          "team_name": "Lanceros de La Guaira",
                          "team_hash_image": "a9ccba614d822bee9b0e038d8f825b57f7862901149636d4c0631441f583c87f"
                        },
                        {
                          "team_id": 111,
                          "team_name": "Samanes De Aragua",
                          "team_hash_image": "f5fe92164988121b81e3c848a847f725cdea3eb287451dbf944b770c5c8c557b"
                        },
                        {
                          "team_id": 92,
                          "team_name": "Marineros De Carabobo",
                          "team_hash_image": "8cf6b609615a9f4489c536c8d746cfac06bc35d69f5dd9e1478d2345358bace5"
                        },
                        {
                          "team_id": 149,
                          "team_name": "Líderes De Miranda",
                          "team_hash_image": "86be689a8643082206cf183f60a212532de75094dae902385b04804c58104b54"
                        },
                        {
                          "team_id": 169,
                          "team_name": "Centauros De La Guaira",
                          "team_hash_image": "f796fd114ab9186ded346acb83e3b164f642c190531f3b7399709f818e6a7626"
                        },
                        {
                          "team_id": 77122,
                          "team_name": "Caciques De Distrito",
                          "team_hash_image": "21f8cae2572f2404a5c406195db55ccc42301680269b0c49e4ad98009e34580b"
                        },
                        {
                          "team_id": 77427,
                          "team_name": "Senadores de Caracas",
                          "team_hash_image": "200734174634aa2c1e1f2b5c32dd99cc5f3c0d3c2c7aedb8cec0442b767f0ce8"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams By Tournament"
      }
    },
    "/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://baseball.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": "2003-03-30",
                      "leagues": [
                        {
                          "class_id": "USA",
                          "league_id": 1806,
                          "class_name": "USA",
                          "league_name": "MLB",
                          "class_hash_image": "2cdf454150a30a13a114b3e1b7fc87fdce86e522d5f966195e868cc58d977e05",
                          "league_hash_image": "fd2a8baf7dbd0fc469142a961a385bcb1bb91dc1ab7cb7561e730068203d150c",
                          "league_importance": 17
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Leagues By Date"
      }
    },
    "/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://baseball.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": 177874,
                      "match_id": 177874,
                      "league_id": 2873,
                      "league_name": "MLB",
                      "league_hash_image": "fd2a8baf7dbd0fc469142a961a385bcb1bb91dc1ab7cb7561e730068203d150c",
                      "date": "2024-08-28T01:40:00+00:00",
                      "title": "MLB 2024 Round 1: Arizona Diamondbacks vs New York Mets at Chase Field",
                      "name": "MLB 2024 Round 1: Arizona Diamondbacks vs New York Mets at Chase Field",
                      "subtitles": [
                        {
                          "text": "On the other hand, the New York Mets have been in sublime form in the dual matches. With a staggering 20 wins, they have shown their dominance and are one of the favorites this season. The Mets will be looking to continue their winning streak and start the season with a victory. Despite playing away from home, the Mets have shown in the past that they can handle pressure and perform exceptionally well.",
                          "subtitle": "New York Mets' Dominant Run"
                        },
                        {
                          "text": "The Arizona Diamondbacks will be looking to use their home advantage to kick start their season on a high note. Chase Field, known for its electric atmosphere, will surely provide the home team with the much-needed boost. The Diamondbacks have had a decent run in the dual matches with 4 wins. They will be hoping to improve their record and start the season with a win.",
                          "subtitle": "Arizona Diamondbacks' Home Advantage"
                        },
                        {
                          "text": "The MLB 2024 season is set to kick off with a thrilling match between the Arizona Diamondbacks and the New York Mets. The first round of the season will take place at the iconic Chase Field, home to the Diamondbacks. The match is scheduled to start on Wed Aug 28 2024 01:40:00 GMT+0000 (Coordinated Universal Time). Fans are eagerly waiting for the season to start and witness the exciting clash between these two teams.",
                          "subtitle": "Season Opener at Chase Field"
                        },
                        {
                          "text": "The MLB 2024 season promises to be an exciting one with teams from all over the USA participating. The league has always provided thrilling matches and this season is expected to be no different. The opening match between the Arizona Diamondbacks and the New York Mets is just a glimpse of what's to come. With no draws in the dual matches, it's clear that both teams will be going for the win, making it a must-watch for all baseball fans.",
                          "subtitle": "MLB 2024: A Season to Look Forward To"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "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://baseball.sportmicro.com/seasons`<br /><br />Get seasons based on the **id**<br />`https://baseball.sportmicro.com/seasons?id=eq.{id}`<br /><br />Get seasons from a specific **league_id**<br />`https://baseball.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": 272,
                      "name": "World Baseball Classic 2026",
                      "year": "2026",
                      "start_time": "2026-03-11",
                      "end_time": "2026-03-11",
                      "league_id": 149,
                      "league_name": "World Baseball Classic",
                      "league_hash_image": "e9605c6c9677b7c17c6ddc834235d6049cb481a28147498da7dec616e8fed5e9"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons"
      }
    },
    "/coaches-by-country": {
      "get": {
        "tags": [
          "Coaches"
        ],
        "summary": "Coaches By Country",
        "description": "This 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://baseball.sportmicro.com/coaches-by-country?country_id=eq.{country_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.coaches-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/coaches-by-country"
                  },
                  "type": "array",
                  "example": [
                    {
                      "country_id": 2,
                      "country_name": "USA",
                      "country_hash_image": "9b202ecbc6d45c6d8901d989a918878397a3eb9d00e8f48022fc051b19d21a1d",
                      "coaches": [
                        {
                          "id": 779,
                          "name": "Dusty Baker",
                          "hash_image": "48fb1fbdff0de4e2564f6c84f56304a178a0089c8c7668288e0fc5b76bc2c3b1"
                        },
                        {
                          "id": 786,
                          "name": "Aaron Boone",
                          "hash_image": "6c0703221bb1e93fd34d63d04686af1893a3a1930ce18cabcf5399f7d1a091ed"
                        },
                        {
                          "id": 5799,
                          "name": "Phil Nevin",
                          "hash_image": "6532fd7ad2e4522e19e32b67c2545ab1da86330542932a4d3fa80d55e8f79515"
                        },
                        {
                          "id": 5800,
                          "name": "Brandon Hyde",
                          "hash_image": "b3658dbec3630e4a1aadfb4669109d3ea804fd3c7f74821337b596302131ba0e"
                        },
                        {
                          "id": 5802,
                          "name": "Kevin Cash",
                          "hash_image": "d5e4ee18613a7aa354f76a551a2f067c497faad439f59a3551434f9bff9325f7"
                        },
                        {
                          "id": 5803,
                          "name": "David Ross",
                          "hash_image": "066dc7f6ca064050beb9008b618e6b59e7c437a0e0cb8ba0b3df3493e14ce67c"
                        },
                        {
                          "id": 5804,
                          "name": "Bruce Bochy",
                          "hash_image": "b30559dbed0410f3b0180edab64a5567f9705453c4cb33d3a1b5b3491fe32296"
                        },
                        {
                          "id": 5805,
                          "name": "David Bell",
                          "hash_image": "3a47aa18f1b822f186b500fcd1ca79c383bc734afe9b8f8044385bd29e6c75dd"
                        },
                        {
                          "id": 5806,
                          "name": "Mark Kotsay",
                          "hash_image": "2141a662a5d3b2183042b25dab099fae78bc05c89ea814ad8de25596f126bc3a"
                        },
                        {
                          "id": 5811,
                          "name": "Torey Lovullo",
                          "hash_image": "21ed8900d7f7592f7de966cc1adf4f012f447a451f765487a735b48c34623ff1"
                        },
                        {
                          "id": 5813,
                          "name": "Rocco Baldelli",
                          "hash_image": "472a4910c82c5eb6bbd8f99a26b8839c099755bccb74960b2ce90c00114fdf76"
                        },
                        {
                          "id": 5814,
                          "name": "Scott Servais",
                          "hash_image": "3ad4638e1ed2fd61c3dae9fe965e3ce87f35a98cae8816f2991d4b7064dfebf3"
                        },
                        {
                          "id": 5816,
                          "name": "A.J. Hinch",
                          "hash_image": "0bd11c7eacbd9735f218b64d1245f251f63c65465b2b137aeb14f574d40b2eb9"
                        },
                        {
                          "id": 5819,
                          "name": "Dave Roberts",
                          "hash_image": "5c5ba218b12fa6dcbcaa8eb7fa5c4a786cd93dcc86085a08d68e9d3774d4dfc3"
                        },
                        {
                          "id": 5820,
                          "name": "Brian Snitker",
                          "hash_image": "5f28b8b51dd3fe08fbbbfb5d37a5bbad242e187f9600dba1a8f9da5f77a8f16b"
                        },
                        {
                          "id": 5826,
                          "name": "Craig Counsell",
                          "hash_image": "fa90e9b192ca866dc118fd872856f4e0f2f110ac3bbad2cb3769877ad8398676"
                        },
                        {
                          "id": 5827,
                          "name": "Bob Melvin",
                          "hash_image": "d46c8a2a5e73c46f5a9863272aebca4854b0d73f4db49bd053f0b7bc93d7ffe8"
                        },
                        {
                          "id": 5828,
                          "name": "Gabe Kapler",
                          "hash_image": "faf0f83dd1f89413540f2e5e0f3951719d06e5abbd3cc3724ed64822c4f5126d"
                        },
                        {
                          "id": 5831,
                          "name": "Buck Showalter",
                          "hash_image": "41be0064275d25dfc81c91febe64ff57656ae990bb53f6840745cd0209a4d834"
                        },
                        {
                          "id": 5834,
                          "name": "Skip Schumaker",
                          "hash_image": "542d541d89822d81ef2881fd26c2fecd8d5ba60996d37efb3cdecaa1067542fa"
                        },
                        {
                          "id": 5839,
                          "name": "Bud Black",
                          "hash_image": "315ab15c9c9c9d000560cbc28a14879a17689a28ea7dfc30bd22752d3392a8ee"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Coaches By Country"
      }
    },
    "/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://baseball.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": 40,
                      "class_name": "Venezuela",
                      "class_hash_image": "68abaea892c50a8ceb773420b3275ae7d067f83be8595f65a1d219b2e38e1715",
                      "leagues": [
                        {
                          "id": 60,
                          "name": "LMBP",
                          "hash_image": "80742f7b4fc80676a85cdb2cd02c6e7ef6d3080221574c11fc28485e6acd23a5"
                        },
                        {
                          "id": 65,
                          "name": "LMBP",
                          "hash_image": "80742f7b4fc80676a85cdb2cd02c6e7ef6d3080221574c11fc28485e6acd23a5"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Leagues By Class"
      }
    },
    "/players-statistics": {
      "get": {
        "tags": [
          "Players"
        ],
        "summary": "Players Statistics",
        "description": "This endpoint allows you to retrieve the statistics from players.\n\nFor the type argument you can search by: **overall**, **home** and **away**, but **overall** is most common type for this endpoint.\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.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet statistics from a specific **player_id**<br />`https://baseball.sportmicro.com/players-statistics?player_id=eq.{player_id}`<br /><br />Get top 20 players with most goals from a specific **league_id** and **season_id**<br />`https://baseball.sportmicro.com/players-statistics?league_id=eq.{league_id}&season_id=eq.{season_id}&order=goals.desc&limit=20`<br /><br />Get top 20 players with most rating from a specific **league_id** and **season_id**<br />`https://baseball.sportmicro.com/players-statistics?league_id=eq.{league_id}&season_id=eq.{season_id}&order=rating.desc&limit=20`<br /><br />Get top 20 players with most red cards from a specific **league_id** and **season_id**<br />`https://baseball.sportmicro.com/players-statistics?league_id=eq.{league_id}&season_id=eq.{season_id}&order=red_cards.desc&limit=20`<br /><br />Get top 20 players with most yellow cards from a specific **league_id** and **season_id**<br />`https://baseball.sportmicro.com/players-statistics?league_id=eq.{league_id}&season_id=eq.{season_id}&order=yellow_cards.desc&limit=20`<br /><br />Get top 20 players with most assists from a specific **league_id** and **season_id**<br />`https://baseball.sportmicro.com/players-statistics?league_id=eq.{league_id}&season_id=eq.{season_id}&order=assists.desc&limit=20`<br /><br />Get statistics from a specific **player_id** and **team_id**<br />`https://baseball.sportmicro.com/players-statistics?player_id=eq.{player_id}&team_id=eq.{team_id}`<br /><br />Get statistics from a specific **player_id**, **team_id** and **league_id**<br />`https://baseball.sportmicro.com/players-statistics?player_id=eq.{player_id}&team_id=eq.{team_id}&league_id=eq.{league_id}`<br /><br />Get statistics from a specific **player_id**, **team_id**, **league_id** and **season_id**<br />`https://baseball.sportmicro.com/players-statistics?player_id=eq.{player_id}&team_id=eq.{team_id}&league_id=eq.{league_id}&season_id=eq.{season_id}`<br /><br />Get statistics from a specific **player_id**, **team_id**, **league_id**, **season_id** and **type**<br />`https://baseball.sportmicro.com/players-statistics?player_id=eq.{player_id}&team_id=eq.{team_id}&league_id=eq.{league_id}&season_id=eq.{season_id}&type=eq.{type}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.players-statistics.player_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.players-statistics.team_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.players-statistics.league_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.players-statistics.season_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.players-statistics.type"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/players-statistics"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "player_id": 6411,
                      "league_id": 1806,
                      "league_name": "MLB",
                      "league_hash_image": "fd2a8baf7dbd0fc469142a961a385bcb1bb91dc1ab7cb7561e730068203d150c",
                      "season_id": 4271,
                      "season_name": "MLB 2025",
                      "type": "regularSeason",
                      "games_played_pitching": 32,
                      "games_started_pitching": 32,
                      "ground_outs_pitching": 114,
                      "air_outs_pitching": 163,
                      "runs_pitching": 91,
                      "home_runs_pitching": 21,
                      "strike_outs_pitching": 215,
                      "walks_pitching": 69,
                      "hit_by_pitch_pitching": 5,
                      "at_bats_pitching": 636,
                      "on_base_percentage_pitching": 0.318,
                      "slugging_percentage_pitching": 0.399,
                      "on_base_plus_slugging_pitching": 0.717,
                      "caught_stealing_pitching": 4,
                      "stolen_base_percentage_pitching": 0.75,
                      "ground_into_double_play_pitching": 8,
                      "number_of_pitches_pitching": 3044,
                      "innings_pitched_pitching": 168,
                      "wins_pitching": 8,
                      "losses_pitching": 12,
                      "saves_pitching": 0,
                      "save_opportunities_pitching": 0,
                      "holds_pitching": 0,
                      "earned_runs_pitching": 85,
                      "walks_hits_per_inning_pitching": 1.3274,
                      "batters_faced_pitching": 722,
                      "shutouts_pitching": 0,
                      "strikes_pitching": 1924,
                      "strike_percentage_pitching": 0.632063,
                      "hit_batsmen_pitching": 5,
                      "balks_pitching": 0,
                      "wild_pitches_pitching": 5,
                      "pickoffs_pitching": 0,
                      "win_percentage_pitching": 0.4,
                      "pitches_per_inning_pitching": 18.119,
                      "games_finished_pitching": 0,
                      "strikeout_walk_ratio_pitching": 3.03,
                      "strikeouts_per_9_innings_pitching": 11.518,
                      "hits_per_9_innings_pitching": 8.143,
                      "home_runs_per_9_innings_pitching": 1.125,
                      "inherited_runners_pitching": 0,
                      "inherited_runners_scored_pitching": 0,
                      "assists_fielding": 16,
                      "put_outs_fielding": 9,
                      "chances_fielding": 26,
                      "fielding_fielding": 0.962,
                      "range_factor_per_game_fielding": 0.781,
                      "innings_fielding": 168,
                      "games_started_fielding": 32,
                      "double_plays_fielding": 1,
                      "total_appearances": 32
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Players Statistics"
      }
    },
    "/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://baseball.sportmicro.com/cup-bracket?id=eq.{id}`<br /><br />Get cups based on the **season_id**<br />`https://baseball.sportmicro.com/cup-bracket?season_id=eq.{season_id}`<br /><br />Get cups based on the **league_id**<br />`https://baseball.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": 9,
                      "name": "LMBP 2025, Playoffs",
                      "current_round": 1,
                      "type": 1,
                      "season_id": 74,
                      "season_name": "LMBP 2025",
                      "league_id": 65,
                      "league_name": "LMBP",
                      "league_hash_image": "80742f7b4fc80676a85cdb2cd02c6e7ef6d3080221574c11fc28485e6acd23a5",
                      "rounds": [
                        {
                          "type": 1,
                          "order": 1,
                          "blocks": [
                            {
                              "order": 1,
                              "matches": [
                                1,
                                2,
                                3,
                                4,
                                5
                              ],
                              "finished": true,
                              "participants": [
                                {
                                  "order": 1,
                                  "winner": true,
                                  "team_id": 111,
                                  "team_name": "Samanes De Aragua",
                                  "team_hash_image": "f5fe92164988121b81e3c848a847f725cdea3eb287451dbf944b770c5c8c557b"
                                },
                                {
                                  "order": 2,
                                  "winner": false,
                                  "team_id": 127,
                                  "team_name": "Delfines de La Guaira",
                                  "team_hash_image": "346979457f3f51977b65b2728ec7308d9b367a9e73db37623f407ef2fc043626"
                                }
                              ],
                              "away_team_score": "1",
                              "home_team_score": "4",
                              "automatic_progression": false,
                              "series_start_date_timestamp": "2025-07-18T22:00:00+00:00"
                            }
                          ],
                          "description": "Final"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Cup Bracket"
      }
    },
    "/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**Strike outs**, **Batters faced**, **At bats**, **Left on base**, **ERA**, **Earned runs**, **Doubles**, **Base on balls**, **Assists**, **Runs**, **Hits**, **AVG**, **Innings pitched**, **Home runs**, **Triples**, **RBI**, **OPS**, **SLG**, **Put outs**, **OBP**, **Outs**.\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://baseball.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": 39,
                      "statistics": [
                        {
                          "type": "Assists",
                          "period": "ALL",
                          "category": "Fielding",
                          "away_team": "11",
                          "home_team": "5"
                        },
                        {
                          "type": "At bats",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": "35",
                          "home_team": "29"
                        },
                        {
                          "type": "AVG",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": ".229",
                          "home_team": ".172"
                        },
                        {
                          "type": "Base on balls",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": "5",
                          "home_team": "5"
                        },
                        {
                          "type": "Base on balls",
                          "period": "ALL",
                          "category": "Pitching",
                          "away_team": "5",
                          "home_team": "5"
                        },
                        {
                          "type": "Batters faced",
                          "period": "ALL",
                          "category": "Pitching",
                          "away_team": "34",
                          "home_team": "40"
                        },
                        {
                          "type": "Doubles",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": "3",
                          "home_team": "1"
                        },
                        {
                          "type": "Earned runs",
                          "period": "ALL",
                          "category": "Pitching",
                          "away_team": "2",
                          "home_team": "3"
                        },
                        {
                          "type": "ERA",
                          "period": "ALL",
                          "category": "Pitching",
                          "away_team": "2",
                          "home_team": "3"
                        },
                        {
                          "type": "Hits",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": "8",
                          "home_team": "5"
                        },
                        {
                          "type": "Hits",
                          "period": "ALL",
                          "category": "Pitching",
                          "away_team": "5",
                          "home_team": "8"
                        },
                        {
                          "type": "Home runs",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": "1",
                          "home_team": "1"
                        },
                        {
                          "type": "Home runs",
                          "period": "ALL",
                          "category": "Pitching",
                          "away_team": "1",
                          "home_team": "1"
                        },
                        {
                          "type": "Innings pitched",
                          "period": "ALL",
                          "category": "Pitching",
                          "away_team": "9",
                          "home_team": "9"
                        },
                        {
                          "type": "Left on base",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": "18",
                          "home_team": "11"
                        },
                        {
                          "type": "OBP",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": "0.325",
                          "home_team": "0.294"
                        },
                        {
                          "type": "OPS",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": "0.725",
                          "home_team": "0.604"
                        },
                        {
                          "type": "Outs",
                          "period": "ALL",
                          "category": "Pitching",
                          "away_team": "27",
                          "home_team": "27"
                        },
                        {
                          "type": "Put outs",
                          "period": "ALL",
                          "category": "Fielding",
                          "away_team": "27",
                          "home_team": "27"
                        },
                        {
                          "type": "RBI",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": "3",
                          "home_team": "2"
                        },
                        {
                          "type": "Runs",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": "3",
                          "home_team": "2"
                        },
                        {
                          "type": "Runs",
                          "period": "ALL",
                          "category": "Pitching",
                          "away_team": "2",
                          "home_team": "3"
                        },
                        {
                          "type": "SLG",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": "0.4",
                          "home_team": "0.31"
                        },
                        {
                          "type": "Strike outs",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": "16",
                          "home_team": "7"
                        },
                        {
                          "type": "Strike outs",
                          "period": "ALL",
                          "category": "Pitching",
                          "away_team": "7",
                          "home_team": "16"
                        },
                        {
                          "type": "Triples",
                          "period": "ALL",
                          "category": "Batting",
                          "away_team": "0",
                          "home_team": "0"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Statistics"
      }
    },
    "/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 | Canceled\ncanceled | Cancelled\ncanceled | Abandoned\ndelayed | Start delayed\nfinished | AET\nfinished | Awarded\nfinished | Ended\nfinished | Coverage canceled\ninterrupted | Interrupted\nlive | 6th Inning\nlive | 8th Inning\nlive | 7th Inning\nlive | 9th Inning\npostponed | Postponed\nupcoming | Not started\nlive | 1st Inning\nlive | 2nd Inning\nlive | 3rd Inning\nlive | 4th Inning\nlive | 5th Inning\nlive | 10th Inning\n\nFor **scores** we have fields for covering that: `current`, `display`, `period1`, `period2`, `period3`, `period4`, `overtime`, `series`, `innings_id`, `innings_sum_id`, `normaltime`, `period5`, `period6`, `period7`, `team`, `match_id`, `period8`, `period9`.\n\nFor **time extras or injuries** we have fields for covering that: **current_period_start_timestamp**, **match_id**.\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://baseball.sportmicro.com/matches`<br /><br />Get match based on the **id**<br />`https://baseball.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://baseball.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://baseball.sportmicro.com/matches?status_type=eq.{status_type}`<br /><br />Get matches based on the **season_id**<br />`https://baseball.sportmicro.com/matches?season_id=eq.{season_id}`<br /><br />Get matches based on the **tournament_id**<br />`https://baseball.sportmicro.com/matches?tournament_id=eq.{tournament_id}`<br /><br />Get matches based on the **round_id**<br />`https://baseball.sportmicro.com/matches?round_id=eq.{round_id}`<br /><br />Get matches based on the **arena_id**<br />`https://baseball.sportmicro.com/matches?arena_id=eq.{arena_id}`<br /><br />Get matches based on the **referee_id**<br />`https://baseball.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://baseball.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://baseball.sportmicro.com/matches?home_team_id=eq.{home_team_id}`<br /><br />Get away team matches based on the **away_team_id**<br />`https://baseball.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,
                      "name": "Samanes De Aragua vs Delfines de La Guaira",
                      "tournament_id": 78,
                      "tournament_name": "LMBP - Playoffs",
                      "tournament_importance": 0,
                      "season_id": 74,
                      "season_name": "LMBP 2025",
                      "status": {
                        "type": "finished",
                        "reason": "Ended"
                      },
                      "status_type": "finished",
                      "home_team_id": 111,
                      "home_team_name": "Samanes De Aragua",
                      "home_team_hash_image": "f5fe92164988121b81e3c848a847f725cdea3eb287451dbf944b770c5c8c557b",
                      "away_team_id": 127,
                      "away_team_name": "Delfines de La Guaira",
                      "away_team_hash_image": "346979457f3f51977b65b2728ec7308d9b367a9e73db37623f407ef2fc043626",
                      "home_team_score": {
                        "current": 8,
                        "display": 8
                      },
                      "away_team_score": {
                        "current": 5,
                        "display": 5
                      },
                      "start_time": "2025-07-18T22:00:00+00:00",
                      "duration": 9000,
                      "class_id": 40,
                      "class_name": "Venezuela",
                      "class_hash_image": "68abaea892c50a8ceb773420b3275ae7d067f83be8595f65a1d219b2e38e1715",
                      "league_id": 65,
                      "league_name": "LMBP",
                      "league_hash_image": "80742f7b4fc80676a85cdb2cd02c6e7ef6d3080221574c11fc28485e6acd23a5"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches"
      }
    },
    "/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://baseball.sportmicro.com/standings`<br /><br />Get standing based on the **id**<br />`https://baseball.sportmicro.com/standings?id=eq.{id}`<br /><br />Get standing from a specific **league_id**<br />`https://baseball.sportmicro.com/standings?league_id=eq.{league_id}`<br /><br />Get standing from a specific **league_id** and **season_id**<br />`https://baseball.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://baseball.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": 33,
                      "tournament_id": 60,
                      "tournament_name": "LMBP",
                      "type": "total",
                      "name": "LMBP - LMBP",
                      "season_id": 63,
                      "season_name": "2022",
                      "league_id": 60,
                      "league_name": "LMBP",
                      "league_hash_image": "80742f7b4fc80676a85cdb2cd02c6e7ef6d3080221574c11fc28485e6acd23a5",
                      "competitors": [
                        {
                          "wins": 10,
                          "losses": 31,
                          "matches": 41,
                          "team_id": 169,
                          "position": 8,
                          "team_name": "Centauros De La Guaira",
                          "scores_for": 165,
                          "scores_against": 230,
                          "team_hash_image": "f796fd114ab9186ded346acb83e3b164f642c190531f3b7399709f818e6a7626"
                        },
                        {
                          "wins": 19,
                          "losses": 22,
                          "matches": 41,
                          "team_id": 160,
                          "position": 7,
                          "team_name": "Guerreros De Caracas",
                          "scores_for": 227,
                          "scores_against": 247,
                          "team_hash_image": "b65e02bae2e024f77edaa08af8555a404e04b5af4d2e141e636d51808054cfbd"
                        },
                        {
                          "wins": 21,
                          "losses": 21,
                          "matches": 42,
                          "team_id": 111,
                          "position": 5,
                          "team_name": "Samanes De Aragua",
                          "scores_for": 205,
                          "scores_against": 195,
                          "team_hash_image": "f5fe92164988121b81e3c848a847f725cdea3eb287451dbf944b770c5c8c557b"
                        },
                        {
                          "wins": 23,
                          "losses": 19,
                          "matches": 42,
                          "team_id": 149,
                          "position": 4,
                          "team_name": "Líderes De Miranda",
                          "scores_for": 229,
                          "scores_against": 214,
                          "team_hash_image": "86be689a8643082206cf183f60a212532de75094dae902385b04804c58104b54"
                        },
                        {
                          "wins": 24,
                          "losses": 17,
                          "matches": 41,
                          "team_id": 127,
                          "position": 3,
                          "team_name": "Delfines de La Guaira",
                          "scores_for": 202,
                          "scores_against": 161,
                          "team_hash_image": "346979457f3f51977b65b2728ec7308d9b367a9e73db37623f407ef2fc043626"
                        },
                        {
                          "wins": 25,
                          "losses": 17,
                          "matches": 42,
                          "team_id": 92,
                          "position": 2,
                          "team_name": "Marineros De Carabobo",
                          "scores_for": 176,
                          "scores_against": 169,
                          "team_hash_image": "8cf6b609615a9f4489c536c8d746cfac06bc35d69f5dd9e1478d2345358bace5"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Standings"
      }
    },
    "/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://baseball.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": 63,
                      "season_name": "2022",
                      "teams": [
                        {
                          "team_id": 160,
                          "team_name": "Guerreros De Caracas",
                          "team_hash_image": "b65e02bae2e024f77edaa08af8555a404e04b5af4d2e141e636d51808054cfbd"
                        },
                        {
                          "team_id": 169,
                          "team_name": "Centauros De La Guaira",
                          "team_hash_image": "f796fd114ab9186ded346acb83e3b164f642c190531f3b7399709f818e6a7626"
                        },
                        {
                          "team_id": 103600,
                          "team_name": "Caimanes de Barranquilla",
                          "team_hash_image": "11685f59d4f4b9a79eb178ec97996d9c15afdd72a90ac138659c4eb151d2b0c9"
                        },
                        {
                          "team_id": 103846,
                          "team_name": "Lanceros de La Guaira",
                          "team_hash_image": "a9ccba614d822bee9b0e038d8f825b57f7862901149636d4c0631441f583c87f"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "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://baseball.sportmicro.com/teams`<br /><br />Get team based on the **name**<br />`https://baseball.sportmicro.com/teams?name=like.*Real*`<br /><br />Get team based on the **id**<br />`https://baseball.sportmicro.com/teams?id=eq.{id}`<br /><br />Get teams from a specific **country_id**<br />`https://baseball.sportmicro.com/teams?country_id=eq.{country_id}`<br /><br />Get teams from a specific **category_id**<br />`https://baseball.sportmicro.com/teams?category_id=eq.{category_id}`<br /><br />Get teams from a specific **arena_id**<br />`https://baseball.sportmicro.com/teams?arena_id=eq.{arena_id}`<br /><br />Get teams from a specific **coach_id**<br />`https://baseball.sportmicro.com/teams?coach_id=eq.{coach_id}`<br /><br />Get team from a specific **primary_league_id**<br />`https://baseball.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/rowFilter.teams.arena_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.teams.coach_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": 127,
                      "name": "Delfines de La Guaira",
                      "short_name": "Delfines de La Guaira",
                      "full_name": "Delfines de La Guaira",
                      "gender": "M",
                      "name_code": "DDL",
                      "national": false,
                      "type": 0,
                      "color_primary": "#374df5",
                      "color_secondary": "#374df5",
                      "color_text": "#ffffff",
                      "hash_image": "346979457f3f51977b65b2728ec7308d9b367a9e73db37623f407ef2fc043626",
                      "country_id": 38,
                      "country_name": "Venezuela",
                      "country_hash_image": "2c99d952bd19b482918811dabcac61711f57ee68f2f15c5b297b70be3e416b00",
                      "class_id": 40,
                      "class_name": "Venezuela",
                      "class_hash_image": "68abaea892c50a8ceb773420b3275ae7d067f83be8595f65a1d219b2e38e1715",
                      "tournament_id": 60,
                      "tournament_name": "LMBP",
                      "primary_league_id": 65,
                      "primary_league_name": "LMBP",
                      "primary_league_hash_image": "80742f7b4fc80676a85cdb2cd02c6e7ef6d3080221574c11fc28485e6acd23a5"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams"
      }
    },
    "/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://baseball.sportmicro.com/matches-tv-channels?match_id=eq.{match_id}`<br /><br />Get tv channels from a specific **match_id** and **alpha**<br />`https://baseball.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": 1180,
                      "country_id": 46,
                      "country_name": "USA",
                      "country_hash_image": "9b202ecbc6d45c6d8901d989a918878397a3eb9d00e8f48022fc051b19d21a1d",
                      "alpha": "US",
                      "tv_channels": [
                        {
                          "id": 79,
                          "name": "MLB Network"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Tv Channels"
      }
    },
    "/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://baseball.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": 92,
                      "team_name": "Marineros De Carabobo",
                      "team_hash_image": "8cf6b609615a9f4489c536c8d746cfac06bc35d69f5dd9e1478d2345358bace5",
                      "tournaments": [
                        {
                          "seasons": [
                            {
                              "season_id": 63,
                              "start_time": "2022-05-17",
                              "season_name": "2022"
                            },
                            {
                              "season_id": 92,
                              "start_time": "2021-04-02",
                              "season_name": "2021"
                            }
                          ],
                          "tournament_id": 60,
                          "tournament_name": "LMBP"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams Seasons"
      }
    },
    "/players-by-team": {
      "get": {
        "tags": [
          "Players"
        ],
        "summary": "Players By Team",
        "description": "This endpoint allows you to retrieve the players from a specific team.\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 players from a specific **team_id**<br />`https://baseball.sportmicro.com/players-by-team?team_id=eq.{team_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.players-by-team.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/players-by-team"
                  },
                  "type": "array",
                  "example": [
                    {
                      "team_id": 362,
                      "team_name": "Chinese Taipei",
                      "team_hash_image": "7a9d6c910c095a6d818d72ef716c84af669131d966a930abbf25e873202c606e",
                      "players": [
                        {
                          "id": 209004,
                          "name": "Tzu-Chen Sha",
                          "position": "P",
                          "country_id": 47,
                          "hash_image": "41a9265e7eb8a9f8d9cfefa09dbcbb2ab6beb270e57b949535ec635ce8a70ebd",
                          "short_name": "T. Sha",
                          "country_name": "Chinese Taipei",
                          "shirt_number": 92,
                          "date_of_birth": "2003-10-15T00:00:00+00:00",
                          "player_height": 191,
                          "country_hash_image": "ca605087f6733bafd8441b1416ce4583f39888ee41920590fdcfb1d0fb43e05c",
                          "player_jersey_number": "92"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Players By Team"
      }
    },
    "/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://baseball.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": 165538,
                      "title": "¡Triunfo en Maracaibo! Cardenales de Lara blanqueó 4-0 a las Águilas del Zulia - La República Perú",
                      "link": "https://larepublica.pe/deportes/beisbol/2023/11/13/aguilas-del-zulia-vs-cardenales-de-lara-en-vivo-lvbp-2023-24-lrtmd-1297920",
                      "thumbnail_url": "https://imgmedia.larepublica.pe/1200x630/larepublica/original/2023/11/13/655262b19dbd616b3f1c2995.jpg",
                      "description": "Águilas del Zulia vs. Cardenales de Lara EN VIVO juegan por la LVBP 2023-24 este martes 14 de noviembre. Revisa AQUÍ el horario, canal de TV e incidencias de este duelo por las primeras posiciones de la tabla.",
                      "published_date": "2023-11-15T02:58:35+00:00",
                      "source_url": "https://larepublica.pe",
                      "source": "La República Perú"
                    },
                    {
                      "id": 15,
                      "match_id": 165538,
                      "title": "Cardenales de Lara blanquea a las Águilas en su casa - La Prensa de Lara",
                      "link": "https://www.laprensalara.com.ve/nota/67987/2023/11/cardenales-de-lara-blanquea-a-las-aacuteguilas-en-su-casa",
                      "thumbnail_url": "https://www.laprensalara.com.ve/img/publicaciones/2023/11/14/alta/394818.webp",
                      "description": "V&iacute;ctor A. Rodr&iacute;guez | LA PRENSA DE LARA.- Cardenales de Lara derrot&oacute; por cuarta ocasi&oacute;n en esta temporada a las &Aacute;guilas del Zulia para llegar 13 triunfos, adem&aacute;s lo hicieron por la v&iacute;a del blanqueo 4 carreras por 0 en el estadio Luis Aparicio 'El Grande' de Maracaibo, en lo que fue el prime",
                      "published_date": "2023-11-13T16:47:58+00:00",
                      "source_url": "https://www.laprensalara.com.ve",
                      "source": "La Prensa de Lara"
                    },
                    {
                      "id": 30,
                      "match_id": 165538,
                      "title": "La Copa Full Data se celebró durante el juego entre Águilas y ... - Noticia al Dia",
                      "link": "https://noticialdia.com/deportes/la-copa-full-data-se-celebro-durante-el-juego-entre-aguilas-y-cardenales/",
                      "thumbnail_url": "https://noticialdia.com/wp-content/firewall/uploads/2023/11/full-datas-2.jpg",
                      "description": "Con emoción y entusiasmo, Full Data dio apertura al juego entre las Águilas de Zulia y los Cardenales de Lara este martes 14 de noviembre.",
                      "published_date": "2023-11-15T03:22:36+00:00",
                      "source_url": "https://noticialdia.com",
                      "source": "Noticia al Dia"
                    },
                    {
                      "id": 56,
                      "match_id": 165538,
                      "title": "LVBP: Vea cómo queda la tabla de posiciones tras la última jornada (+foto) - Meridiano.net",
                      "link": "https://meridiano.net/beisbol/beisbol-venezolano/lvbp-vea-como-queda-la-tabla-de-posiciones-tras-la-ultima-jornada-foto--202311150250",
                      "thumbnail_url": "https://pxcdn.meridiano.net/112023/1700022529634.jpg?&cw=1200&ch=630",
                      "description": "La quinta semana del torneo inició con todo, incluyendo varios movimientos de la mitad hacia abajo en los puestos",
                      "published_date": "2023-11-15T04:52:13+00:00",
                      "source_url": "https://meridiano.net",
                      "source": "Meridiano.net"
                    },
                    {
                      "id": 69,
                      "match_id": 165538,
                      "title": "Así marcha la tabla de la LVBP este 13 de noviembre - Noticia al Dia",
                      "link": "https://noticialdia.com/deportes/asi-marcha-la-tabla-de-la-lvbp-este-13-de-noviembre/",
                      "thumbnail_url": "https://noticialdia.com/wp-content/firewall/uploads/2023/11/tablai.jpg",
                      "description": "La Liga Venezolana del Beisbol Profesional (LVBP) finaliza otra semana. Los ocho equipos que conforman la pelota criolla nos brindaron",
                      "published_date": "2023-11-13T19:38:07+00:00",
                      "source_url": "https://noticialdia.com",
                      "source": "Noticia al Dia"
                    },
                    {
                      "id": 95,
                      "match_id": 165538,
                      "title": "LVBP: Esta es la rotación de Cardenales de Lara para la quinta semana de temporada - Meridiano.net",
                      "link": "https://meridiano.net/beisbol/beisbol-venezolano/lvbp-esta-es-la-rotacion-de-cardenales-de-lara-para-la-quinta-semana-de-temporada-2023111410410",
                      "thumbnail_url": "https://pxcdn.meridiano.net/112023/1699973837344.jpg?&cw=1200&ch=630",
                      "description": "El equipo dirigido por Henry Blanco tiene listo su cuerpo de lanzadores abridores para encarar esta nueva semana de torneo",
                      "published_date": "2023-11-14T15:17:53+00:00",
                      "source_url": "https://meridiano.net",
                      "source": "Meridiano.net"
                    },
                    {
                      "id": 148,
                      "match_id": 165538,
                      "title": "Leones tiene a sus iniciadores para la gira - Líder en Deportes",
                      "link": "https://www.liderendeportes.com/noticias/baseball/lvbp/leones-tiene-a-sus-iniciadores-para-la-gira/",
                      "thumbnail_url": "https://www.liderendeportes.com/wp-content/uploads/2023/11/Thomas-Dorminy.png",
                      "description": "Estos son los abridores de Leones del Caracas para la quinta semana",
                      "published_date": "2023-11-14T16:27:33+00:00",
                      "source_url": "https://www.liderendeportes.com",
                      "source": "Líder en Deportes"
                    },
                    {
                      "id": 161,
                      "match_id": 165538,
                      "title": "LVBP: Leones reaccionó ante Tigres y se afianzó en la cima - MLB.com",
                      "link": "https://www.mlb.com/es/news/lvbp-leones-reacciono-ante-tigres-y-se-afianzo-en-la-cima",
                      "thumbnail_url": "https://img.mlbstatic.com/mlb-images/image/upload/t_2x1/t_w1536/mlb/dql7e5mikloj2hypeit4.jpg",
                      "description": "Los Leones del Caracas explotaron con cuatro carreras en el séptimo episodio para revertir una desventaja y derrotaron 5-1 a los Tigres de Aragua para mantener el liderato en la Liga Venezolana de Béisbol Profesional.\n- Sección especial: Ligas Invernales\nAldrem Corredor con un doble remolcador de dos carreras y",
                      "published_date": "2023-11-13T17:38:21+00:00",
                      "source_url": "https://www.mlb.com",
                      "source": "MLB.com"
                    },
                    {
                      "id": 188,
                      "match_id": 165538,
                      "title": "Águilas informa precios de entradas para la semana y el juego de La Chinita ¿cuánto cuestan? - Meridiano.net",
                      "link": "https://meridiano.net/beisbol/beisbol-venezolano/aguilas-informa-precios-de-entradas-para-la-semana-y-el-juego-de-la-chinita-cuanto-cuestan--2023111316490",
                      "thumbnail_url": "https://pxcdn.meridiano.net/112023/1699912459352.jpg?&cw=1200&ch=630",
                      "description": "El equipo zuliano espera llenar el Luis Aparicio “El Grande” durante el juego de La Chinita",
                      "published_date": "2023-11-13T21:55:43+00:00",
                      "source_url": "https://meridiano.net",
                      "source": "Meridiano.net"
                    },
                    {
                      "id": 198,
                      "match_id": 165538,
                      "title": "LVBP: La liga reprograma los encuentros pospuestos de Magallanes vs Lara y Caribes vs Bravos (+Detalles) - Meridiano.net",
                      "link": "https://meridiano.net/beisbol/beisbol-venezolano/lvbp-la-liga-reprograma-los-encuentros-pospuestos-de-magallanes-vs-lara-y-caribes-vs-bravos-detalles--202311141690",
                      "thumbnail_url": "https://pxcdn.meridiano.net/112023/1699992786986.jpg?&cw=1200&ch=630",
                      "description": "Ningún estadio del país se ha salvado de las torrenciales lluvias durante el mes de noviembre",
                      "published_date": "2023-11-14T23:03:38+00:00",
                      "source_url": "https://meridiano.net",
                      "source": "Meridiano.net"
                    },
                    {
                      "id": 215,
                      "match_id": 165538,
                      "title": "LVBP: ¡Arrasando! peloteros de Leones están apoderados de la mayoría de los lideratos ofensivos a nivel indivi - Meridiano.net",
                      "link": "https://meridiano.net/beisbol/beisbol-venezolano/lvbp-arrasando-peloteros-de-leones-estan-apoderados-de-la-mayoria-de-los-lideratos-ofensivos-a-nivel-individual-numeritos--2023111317340",
                      "thumbnail_url": "https://pxcdn.meridiano.net/112023/1699911533881.jpg?&cw=1200&ch=630",
                      "description": "Ningún rival ha podido detener los bates melenudos en las primeras de cambio y los capitalinos se distribuyen muy bien las labores, para producir carreras",
                      "published_date": "2023-11-13T22:44:26+00:00",
                      "source_url": "https://meridiano.net",
                      "source": "Meridiano.net"
                    },
                    {
                      "id": 231,
                      "match_id": 165538,
                      "title": "Águilas afrontará seis compromisos en casa durante semana de ... - Noticia al Dia",
                      "link": "https://noticialdia.com/deportes/aguilas-afrontara-seis-compromisos-en-casa-durante-semana-de-feria/",
                      "thumbnail_url": "https://noticialdia.com/wp-content/firewall/uploads/2023/11/aguilas.jpg",
                      "description": "Águilas del Zulia tendrá la visita de tres rivales para desarrollar una serie de seis compromisos en el estadio Luis Aparicio",
                      "published_date": "2023-11-14T15:55:26+00:00",
                      "source_url": "https://noticialdia.com",
                      "source": "Noticia al Dia"
                    },
                    {
                      "id": 259,
                      "match_id": 165538,
                      "title": "Ligas Invernales: LBPRC, Leones trepa a liderato - ESPN - espn.com.mx",
                      "link": "https://www.espn.com.mx/beisbol/nota/_/id/12864708/ligas-invernales-lbprc-leones-trepa-liderato-lmp-lvbp-lidom",
                      "thumbnail_url": "https://a3.espncdn.com/combiner/i?img=%2Fphoto%2F2023%2F1113%2Fr1252618_1296x729_16%2D9.jpg",
                      "description": "Ponce derrota a Mayagüez y se apodera del primer lugar de la la Liga de Béisbol Profesional Roberto Clemente.",
                      "published_date": "2023-11-13T07:00:51+00:00",
                      "source_url": "https://www.espn.com.mx",
                      "source": "espn.com.mx"
                    },
                    {
                      "id": 268,
                      "match_id": 165538,
                      "title": "Caribes culminó con récord negativo la cuarta semana de la LVBP - eltiempove.com",
                      "link": "https://eltiempove.com/caribes-culmino-con-record-negativo-la-cuarta-semana-de-la-lvbp/",
                      "thumbnail_url": "https://i0.wp.com/eltiempove.com/wp-content/uploads/2023/11/caribessemanaf13112023a.jpg?fit=574%2C499&ssl=1",
                      "description": "Caribes de Anzoátegui sigue sin poder sacudirse de una vez por todas los resultados negativos en lo que va de campaña 2023/2024 de la Liga Venezolana de Béisbol Profesional (LVBP) y cerró la cuarta…",
                      "published_date": "2023-11-13T22:22:32+00:00",
                      "source_url": "https://eltiempove.com",
                      "source": "eltiempove.com"
                    },
                    {
                      "id": 275,
                      "match_id": 165538,
                      "title": "LVBP: Esta es la rotación de Caribes de Anzoátegui para la quinta semana de torneo - Meridiano.net",
                      "link": "https://meridiano.net/beisbol/beisbol-venezolano/lvbp-esta-es-la-rotacion-de-caribes-de-anzoategui-para-la-quinta-semana-de-torneo--2023111319270",
                      "thumbnail_url": "https://pxcdn.meridiano.net/112023/1699918263815.jpg?&cw=1200&ch=630",
                      "description": "Los orientales quieren tener su primera semana positiva en la presente temporada y para eso deben confiar en sus brazos",
                      "published_date": "2023-11-14T00:02:05+00:00",
                      "source_url": "https://meridiano.net",
                      "source": "Meridiano.net"
                    },
                    {
                      "id": 284,
                      "match_id": 165538,
                      "title": "JJOO: Selección de fútbol masculina se prepara desde ya para ... - Meridiano.net",
                      "link": "https://meridiano.net/usa/olimpismo/olimpismo/jjoo-seleccion-de-futbol-masculina-se-prepara-desde-ya-para-subir-al-podio-en-paris-2023111315410",
                      "thumbnail_url": "https://pxcdn.meridiano.net/112023/1699904417069.jpg?&cw=1200&ch=630",
                      "description": "Los norteamericanos buscarán una gesta que no alcanzan desde hace 120 años",
                      "published_date": "2023-11-13T19:46:03+00:00",
                      "source_url": "https://meridiano.net",
                      "source": "Meridiano.net"
                    },
                    {
                      "id": 292,
                      "match_id": 165538,
                      "title": "LVBP: Edward Olivares tiene fecha para debutar con los Bravos de Margarita - Meridiano.net",
                      "link": "https://meridiano.net/beisbol/beisbol-venezolano/lvbp-edward-olivares-tiene-fecha-para-debutar-con-los-bravos-de-margarita--2023111311220",
                      "thumbnail_url": "https://pxcdn.meridiano.net/112023/1699888922515.jpg?&cw=1200&ch=630",
                      "description": "El equipo de Margarita quiere salir de la mala racha y esperan al grandeliga para reforzar su roster",
                      "published_date": "2023-11-13T15:42:25+00:00",
                      "source_url": "https://meridiano.net",
                      "source": "Meridiano.net"
                    },
                    {
                      "id": 300,
                      "match_id": 165538,
                      "title": "Tiburones y Tigres hicieron un mega cambio - primicia.com.ve",
                      "link": "https://primicia.com.ve/?p=6909233",
                      "thumbnail_url": "https://primicia.com.ve/wp-content/uploads/2023/05/Willson-contreras-cardenanes.webp",
                      "description": "Tiburones de La Guaira y Tigres de Aragua oficializaron un canje que involucró a ocho peloteros, entre ellos los grandeligas Willson Contreras y Ezequiel Tovar.",
                      "published_date": "2023-11-15T00:38:53+00:00",
                      "source_url": "https://primicia.com.ve",
                      "source": "primicia.com.ve"
                    },
                    {
                      "id": 306,
                      "match_id": 165538,
                      "title": "Cardenales barre a Tiburones en Barquisimeto - elsiglo.com.ve",
                      "link": "https://elsiglo.com.ve/2023/11/13/cardenales-barre-tiburones-barquisimeto/",
                      "thumbnail_url": "https://elsiglo.com.ve/wp-content/uploads/2023/11/9-Cardenales.jpeg",
                      "description": "La novena de los Cardenales barre a Tiburones y se llevó la victoria este domingo con marcador de siete carreras por seis en entradas extras",
                      "published_date": "2023-11-13T15:40:25+00:00",
                      "source_url": "https://elsiglo.com.ve",
                      "source": "elsiglo.com.ve"
                    },
                    {
                      "id": 325,
                      "match_id": 165538,
                      "title": "Magallanes esta semana se alista para los siguientes compromisos - Noticias 24 Carabobo",
                      "link": "https://noticias24carabobo.com/asi-jugara-magallanes-esta-semana-de-noviembre-y-los-demas-equipos-pizarra/",
                      "thumbnail_url": "https://noticias24carabobo.com/wp-content/uploads/2023/11/magallanes-esta-semana-de-noviembre.jpg",
                      "description": "Magallanes esta semana de noviembre tiene listo ya los juegos pautados desde esta noche en adelante. Sigue costando fabricar",
                      "published_date": "2023-11-14T14:35:49+00:00",
                      "source_url": "https://noticias24carabobo.com",
                      "source": "Noticias 24 Carabobo"
                    },
                    {
                      "id": 377,
                      "match_id": 165538,
                      "title": "Bravos le pegan a Navegantes y se acercan a la cima en la LVBP - MLB.com",
                      "link": "https://www.mlb.com/es/news/bravos-le-pegan-a-navegantes-y-se-acercan-a-la-cima-en-la-lvbp",
                      "thumbnail_url": "https://img.mlbstatic.com/mlb-images/image/upload/t_2x1/t_w1536/mlb/nb0u5npcunt7x7joajqh.jpg",
                      "description": "Los Bravos de Margarita vencieron 9-5 a los Navegantes del Magallanes para firmar su cuatro triunfo consecutivo y acercarse a los primeros lugares de la Liga Venezolana de Béisbol Profesional.\nWilson Ramos bateó de 4-3 con dos dobles y tres carreras producidas y Édgar Durán conectó un jonrón de dos",
                      "published_date": "2023-11-15T08:06:20+00:00",
                      "source_url": "https://www.mlb.com",
                      "source": "MLB.com"
                    },
                    {
                      "id": 395,
                      "match_id": 165538,
                      "title": "Tiburones de La Guaira propinó derrota a Caribes en Macuto 7 ... - DiarioVea",
                      "link": "https://diariovea.com.ve/tiburones-de-la-guaira-propino-derrota-a-caribes-en-macuto-7-carreras-por-3/",
                      "thumbnail_url": "https://i0.wp.com/diariovea.com.ve/wp-content/uploads/2023/11/Tiburones-propino-derrota-a-Caribes-en-Macuto-7-carreras-por-3.jpg?fit=720%2C537&ssl=1",
                      "description": "Leones se impuso a Tigres, Cardenales a las Águilas y Bravos a Magallanes. Foto @tiburones_net",
                      "published_date": "2023-11-15T06:15:51+00:00",
                      "source_url": "https://diariovea.com.ve",
                      "source": "DiarioVea"
                    },
                    {
                      "id": 466,
                      "match_id": 165538,
                      "title": "Águilas Cibaeñas suman su novena derrota en la liga dominicana ... - LNP | LancasterOnline",
                      "link": "https://lancasteronline.com/lavoz/deportes/guilas-cibae-as-suman-su-novena-derrota-en-la-liga-dominicana-de-b-isbol/article_c9fce2f4-3dc4-5f57-b346-de70fae16084.html",
                      "thumbnail_url": "https://bloximages.newyork1.vip.townnews.com/lancasteronline.com/content/tncms/custom/image/93da4272-2b56-11eb-811c-8b16acf833b2.jpg?resize=600%2C315",
                      "description": "Danny Santana empujó la carrera de la diferencia con un rodado en el noveno episodio y los Tigres del Licey vencieron el martes 8-7 a las Águilas Cibaeñas, que encajaron",
                      "published_date": "2023-11-15T07:32:01+00:00",
                      "source_url": "https://lancasteronline.com",
                      "source": "LNP | LancasterOnline"
                    },
                    {
                      "id": 487,
                      "match_id": 165538,
                      "title": "Bravos le pegan a Navegantes y se acercan a la cima en la LVBP - MLB.com",
                      "link": "https://www.mlb.com/es/news/bravos-le-pegan-a-navegantes-y-se-acercan-a-la-cima-en-la-lvbp",
                      "thumbnail_url": "https://img.mlbstatic.com/mlb-images/image/upload/t_2x1/t_w1536/mlb/nb0u5npcunt7x7joajqh.jpg",
                      "description": "Los Bravos de Margarita vencieron 9-5 a los Navegantes del Magallanes para firmar su cuatro triunfo consecutivo y acercarse a los primeros lugares de la Liga Venezolana de Béisbol Profesional.\nWilson Ramos bateó de 4-3 con dos dobles y tres carreras producidas y Édgar Durán conectó un jonrón de dos",
                      "published_date": "2023-11-15T08:06:20+00:00",
                      "source_url": "https://www.mlb.com",
                      "source": "MLB.com"
                    },
                    {
                      "id": 502,
                      "match_id": 165538,
                      "title": "¡Mundial Sub-17! Venezuela rescata un punto ante México y huele a octavos (+ video) - acn.com.ve",
                      "link": "https://acn.com.ve/vinotinto-pacta-ante-mexico-se-acerca-octavos/",
                      "thumbnail_url": "https://acn.com.ve/wp-content/uploads/2023/11/La-Vinotinto-pacta-ante-Mexico-noticiacn-e1700051673248-1000x600.jpg",
                      "description": "CompartirLa Vinotinto pacta ante México (2-2), en la segunda fecha del grupo F del Mundial Sub-17 que se celebran en Indonesia, punto que vale oro, por cómo se dio y que lo pone con un pie de los octavos de final del certamen. En el estadio Jalak Harupat de Bandung, la Vinotinto juvenil abrió el […]",
                      "published_date": "2023-11-15T12:48:50+00:00",
                      "source_url": "https://acn.com.ve",
                      "source": "acn.com.ve"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Agg News Matches"
      }
    },
    "/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://baseball.sportmicro.com/tournaments`<br /><br />Get tournaments based on the **id**<br />`https://baseball.sportmicro.com/tournaments?id=eq.{id}`<br /><br />Get tournaments from a specific **league_id**<br />`https://baseball.sportmicro.com/tournaments?league_id=eq.{league_id}`<br /><br />Get tournaments from a specific **class_id**<br />`https://baseball.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": 20875,
                      "name": "Serie del Caribe",
                      "importance": 0,
                      "league_id": 7183,
                      "league_name": "Serie del Caribe",
                      "class_id": 72,
                      "class_name": "World",
                      "class_hash_image": "54ce3a277537f5a196e63b6d1b57e50d019c81bcbfc68b9ca13bb6228e6b54be"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Tournaments"
      }
    },
    "/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://baseball.sportmicro.com/odds/coverage-live`<br /><br />Get live odds coverage a specific **match_id**<br />`https://baseball.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": 94214,
                      "home_away": false,
                      "over_under": false,
                      "asian_handicaps": false,
                      "european_handicap": false,
                      "odd_even": false,
                      "home_draw_away": false,
                      "correct_score": false,
                      "half_time_full_time": false
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Coverage Live"
      }
    },
    "/odds/half-time-full-time": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Half Time Full Time",
        "description": "This endpoint allows you to retrieve the odds from half time full time 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://baseball.sportmicro.com/odds/half-time-full-time?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/half-time-full-time?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/half-time-full-time?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.half-time-full-time.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.half-time-full-time.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/half-time-full-time"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 94214,
                      "is_live": false,
                      "periods": [
                        {
                          "odds": [
                            {
                              "odds": [
                                {
                                  "id": 5,
                                  "time": 2.62,
                                  "bookmaker_id": 44,
                                  "time_movement": 0
                                }
                              ],
                              "type": "Away / Away"
                            },
                            {
                              "odds": [
                                {
                                  "id": 3,
                                  "time": 11,
                                  "bookmaker_id": 44,
                                  "time_movement": 0
                                }
                              ],
                              "type": "Away / Home"
                            },
                            {
                              "odds": [
                                {
                                  "id": 6,
                                  "time": 7.5,
                                  "bookmaker_id": 44,
                                  "time_movement": 0
                                }
                              ],
                              "type": "Draw / Away"
                            },
                            {
                              "odds": [
                                {
                                  "id": 4,
                                  "time": 8.5,
                                  "bookmaker_id": 44,
                                  "time_movement": 0
                                }
                              ],
                              "type": "Draw / Home"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1,
                                  "time": 10,
                                  "bookmaker_id": 44,
                                  "time_movement": 0
                                }
                              ],
                              "type": "Home / Away"
                            },
                            {
                              "odds": [
                                {
                                  "id": 2,
                                  "time": 2.8,
                                  "bookmaker_id": 44,
                                  "time_movement": 0
                                }
                              ],
                              "type": "Home / Home"
                            }
                          ],
                          "period_type": "Full Time"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Half Time Full Time"
      }
    },
    "/odds/odd-even": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Odd Even",
        "description": "This 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://baseball.sportmicro.com/odds/odd-even?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.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://baseball.sportmicro.com/odds/odd-even?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.odd-even.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.odd-even.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/odd-even"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 94214,
                      "is_live": false,
                      "periods": [
                        {
                          "period_type": "FT inc. OT",
                          "odds": [
                            {
                              "id": 1,
                              "bookmaker_id": 4,
                              "odd": 1.8,
                              "odd_movement": 1,
                              "even": 1.9090909,
                              "even_movement": 1,
                              "payout": 92.65
                            },
                            {
                              "id": 2,
                              "bookmaker_id": 23,
                              "odd": 1.8,
                              "odd_movement": 1,
                              "even": 1.9090909,
                              "even_movement": 1,
                              "payout": 92.65
                            }
                          ]
                        },
                        {
                          "period_type": "Full Time",
                          "odds": [
                            {
                              "id": 5,
                              "bookmaker_id": 2,
                              "odd": 1.82,
                              "odd_movement": -1,
                              "even": 1.94,
                              "even_movement": 1,
                              "payout": 93.9
                            },
                            {
                              "id": 3,
                              "bookmaker_id": 3,
                              "odd": 1.82,
                              "odd_movement": -1,
                              "even": 1.94,
                              "even_movement": 1,
                              "payout": 93.9
                            },
                            {
                              "id": 11,
                              "bookmaker_id": 9,
                              "odd": 1.82,
                              "odd_movement": -1,
                              "even": 1.94,
                              "even_movement": 1,
                              "payout": 93.9
                            },
                            {
                              "id": 4,
                              "bookmaker_id": 12,
                              "odd": 1.82,
                              "odd_movement": -1,
                              "even": 1.94,
                              "even_movement": 1,
                              "payout": 93.9
                            },
                            {
                              "id": 9,
                              "bookmaker_id": 25,
                              "odd": 1.82,
                              "odd_movement": 1,
                              "even": 1.92,
                              "even_movement": -1,
                              "payout": 93.43
                            },
                            {
                              "id": 6,
                              "bookmaker_id": 39,
                              "odd": 1.86,
                              "odd_movement": 0,
                              "even": 1.8,
                              "even_movement": 0,
                              "payout": 91.48
                            },
                            {
                              "id": 8,
                              "bookmaker_id": 54,
                              "odd": 1.9,
                              "odd_movement": 0,
                              "even": 1.8,
                              "even_movement": 0,
                              "payout": 92.43
                            },
                            {
                              "id": 7,
                              "bookmaker_id": 67,
                              "odd": 1.82,
                              "odd_movement": 1,
                              "even": 1.92,
                              "even_movement": -1,
                              "payout": 93.43
                            },
                            {
                              "id": 10,
                              "bookmaker_id": 70,
                              "odd": 1.82,
                              "odd_movement": 1,
                              "even": 1.92,
                              "even_movement": -1,
                              "payout": 93.43
                            }
                          ]
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Odd Even"
      }
    },
    "/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://baseball.sportmicro.com/odds/bookmakers`<br /><br />Get information about a specific bookmaker based on the **id**<br />`https://baseball.sportmicro.com/odds/bookmakers?id=eq.{id}`<br /><br />Get the most popular bookmakers<br />`https://baseball.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/european-handicap": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "European Handicap",
        "description": "This endpoint allows you to retrieve the odds from european handicap 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://baseball.sportmicro.com/odds/european-handicap?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/european-handicap?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/european-handicap?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.european-handicap.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.european-handicap.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/european-handicap"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 94214,
                      "is_live": false,
                      "periods": [
                        {
                          "odds": [
                            {
                              "odds": [
                                {
                                  "id": 1,
                                  "tie": 7.6,
                                  "away": 2.6,
                                  "home": 1.75,
                                  "payout": 91.94,
                                  "bookmaker_id": 70,
                                  "tie_movement": 1,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 3,
                                  "tie": 7.6,
                                  "away": 2.6,
                                  "home": 1.75,
                                  "payout": 91.94,
                                  "bookmaker_id": 25,
                                  "tie_movement": 1,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 7,
                                  "tie": 7.6,
                                  "away": 2.6,
                                  "home": 1.75,
                                  "payout": 91.94,
                                  "bookmaker_id": 67,
                                  "tie_movement": 1,
                                  "away_movement": 1,
                                  "home_movement": -1
                                }
                              ],
                              "type": "+1/-1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 6,
                                  "tie": 6.3,
                                  "away": 1.65,
                                  "home": 3.1,
                                  "payout": 91.96,
                                  "bookmaker_id": 70,
                                  "tie_movement": 1,
                                  "away_movement": -1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 5,
                                  "tie": 6.3,
                                  "away": 1.65,
                                  "home": 3.1,
                                  "payout": 91.96,
                                  "bookmaker_id": 67,
                                  "tie_movement": 1,
                                  "away_movement": -1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 11,
                                  "tie": 6.3,
                                  "away": 1.65,
                                  "home": 3.1,
                                  "payout": 91.96,
                                  "bookmaker_id": 25,
                                  "tie_movement": 1,
                                  "away_movement": -1,
                                  "home_movement": -1
                                }
                              ],
                              "type": "-1/+1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 9,
                                  "tie": 8.5,
                                  "away": 3.4,
                                  "home": 1.48,
                                  "payout": 91.96,
                                  "bookmaker_id": 25,
                                  "tie_movement": 1,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 10,
                                  "tie": 8.5,
                                  "away": 3.4,
                                  "home": 1.48,
                                  "payout": 91.96,
                                  "bookmaker_id": 67,
                                  "tie_movement": 1,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 12,
                                  "tie": 8.5,
                                  "away": 3.4,
                                  "home": 1.48,
                                  "payout": 91.96,
                                  "bookmaker_id": 70,
                                  "tie_movement": 1,
                                  "away_movement": 1,
                                  "home_movement": -1
                                }
                              ],
                              "type": "+2/-2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 4,
                                  "tie": 7.3,
                                  "away": 1.42,
                                  "home": 4,
                                  "payout": 91.64,
                                  "bookmaker_id": 25,
                                  "tie_movement": 0,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 2,
                                  "tie": 7.3,
                                  "away": 1.42,
                                  "home": 4,
                                  "payout": 91.64,
                                  "bookmaker_id": 67,
                                  "tie_movement": 0,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 8,
                                  "tie": 7.3,
                                  "away": 1.42,
                                  "home": 4,
                                  "payout": 91.64,
                                  "bookmaker_id": 70,
                                  "tie_movement": 0,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "-2/+2"
                            }
                          ],
                          "period_type": "Full Time"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "European Handicap"
      }
    },
    "/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://baseball.sportmicro.com/odds/coverage`<br /><br />Get odds coverages from a specific **match_id**<br />`https://baseball.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": 94214,
                      "home_away": true,
                      "over_under": true,
                      "asian_handicaps": true,
                      "european_handicap": true,
                      "odd_even": true,
                      "home_draw_away": true,
                      "correct_score": false,
                      "half_time_full_time": true
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Coverage"
      }
    },
    "/odds/home-away": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Home Away",
        "description": "This endpoint allows you to retrieve the odds from home away 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://baseball.sportmicro.com/odds/home-away?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/home-away?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/home-away?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.home-away.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.home-away.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/home-away"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 94214,
                      "is_live": false,
                      "periods": [
                        {
                          "period_type": "FT inc. OT",
                          "odds": [
                            {
                              "id": 2,
                              "bookmaker_id": 1,
                              "home": 2.04,
                              "home_movement": -1,
                              "away": 1.82,
                              "away_movement": 1,
                              "payout": 96.19
                            },
                            {
                              "id": 12,
                              "bookmaker_id": 4,
                              "home": 1.85,
                              "home_movement": -1,
                              "away": 1.8,
                              "away_movement": 1,
                              "payout": 91.23
                            },
                            {
                              "id": 10,
                              "bookmaker_id": 9,
                              "home": 2.03,
                              "home_movement": -1,
                              "away": 1.82,
                              "away_movement": 1,
                              "payout": 95.96
                            },
                            {
                              "id": 11,
                              "bookmaker_id": 14,
                              "home": 1.95,
                              "home_movement": 1,
                              "away": 1.75,
                              "away_movement": -1,
                              "payout": 92.23
                            },
                            {
                              "id": 15,
                              "bookmaker_id": 17,
                              "home": 1.9,
                              "home_movement": -1,
                              "away": 1.85,
                              "away_movement": 1,
                              "payout": 93.73
                            },
                            {
                              "id": 16,
                              "bookmaker_id": 19,
                              "home": 1.98,
                              "home_movement": -1,
                              "away": 1.77,
                              "away_movement": 1,
                              "payout": 93.46
                            },
                            {
                              "id": 14,
                              "bookmaker_id": 21,
                              "home": 2,
                              "home_movement": -1,
                              "away": 1.72,
                              "away_movement": 1,
                              "payout": 92.47
                            },
                            {
                              "id": 17,
                              "bookmaker_id": 23,
                              "home": 1.85,
                              "home_movement": -1,
                              "away": 1.8,
                              "away_movement": 1,
                              "payout": 91.23
                            },
                            {
                              "id": 18,
                              "bookmaker_id": 25,
                              "home": 1.95,
                              "home_movement": -1,
                              "away": 1.85,
                              "away_movement": 1,
                              "payout": 94.93
                            },
                            {
                              "id": 19,
                              "bookmaker_id": 34,
                              "home": 1.97,
                              "home_movement": 1,
                              "away": 1.73,
                              "away_movement": -1,
                              "payout": 92.11
                            },
                            {
                              "id": 9,
                              "bookmaker_id": 39,
                              "home": 1.95,
                              "home_movement": 1,
                              "away": 1.8,
                              "away_movement": -1,
                              "payout": 93.6
                            },
                            {
                              "id": 24,
                              "bookmaker_id": 44,
                              "home": 1.8,
                              "home_movement": -1,
                              "away": 1.91,
                              "away_movement": 1,
                              "payout": 92.67
                            },
                            {
                              "id": 26,
                              "bookmaker_id": 46,
                              "home": 1.95,
                              "home_movement": 1,
                              "away": 1.8,
                              "away_movement": 0,
                              "payout": 93.6
                            },
                            {
                              "id": 27,
                              "bookmaker_id": 47,
                              "home": 1.95,
                              "home_movement": 1,
                              "away": 1.8,
                              "away_movement": 0,
                              "payout": 93.6
                            },
                            {
                              "id": 22,
                              "bookmaker_id": 53,
                              "home": 2,
                              "home_movement": 1,
                              "away": 1.8,
                              "away_movement": -1,
                              "payout": 94.74
                            },
                            {
                              "id": 25,
                              "bookmaker_id": 54,
                              "home": 1.91,
                              "home_movement": -1,
                              "away": 1.83,
                              "away_movement": 1,
                              "payout": 93.46
                            },
                            {
                              "id": 13,
                              "bookmaker_id": 55,
                              "home": 1.96,
                              "home_movement": -1,
                              "away": 1.76,
                              "away_movement": 1,
                              "payout": 92.73
                            },
                            {
                              "id": 21,
                              "bookmaker_id": 67,
                              "home": 1.95,
                              "home_movement": -1,
                              "away": 1.85,
                              "away_movement": 1,
                              "payout": 94.93
                            },
                            {
                              "id": 28,
                              "bookmaker_id": 68,
                              "home": 1.9,
                              "home_movement": -1,
                              "away": 1.8,
                              "away_movement": 1,
                              "payout": 92.43
                            },
                            {
                              "id": 29,
                              "bookmaker_id": 69,
                              "home": 2.05,
                              "home_movement": 1,
                              "away": 1.8,
                              "away_movement": -1,
                              "payout": 95.84
                            },
                            {
                              "id": 30,
                              "bookmaker_id": 70,
                              "home": 1.95,
                              "home_movement": -1,
                              "away": 1.85,
                              "away_movement": 1,
                              "payout": 94.93
                            },
                            {
                              "id": 20,
                              "bookmaker_id": 81,
                              "home": 2.05,
                              "home_movement": 1,
                              "away": 1.8,
                              "away_movement": -1,
                              "payout": 95.84
                            },
                            {
                              "id": 23,
                              "bookmaker_id": 86,
                              "home": 1.86,
                              "home_movement": -1,
                              "away": 1.95,
                              "away_movement": 1,
                              "payout": 95.2
                            }
                          ]
                        },
                        {
                          "period_type": "Full Time",
                          "odds": [
                            {
                              "id": 4,
                              "bookmaker_id": 2,
                              "home": 2.01,
                              "home_movement": -1,
                              "away": 1.72,
                              "away_movement": -1,
                              "payout": 92.69
                            },
                            {
                              "id": 5,
                              "bookmaker_id": 3,
                              "home": 2.01,
                              "home_movement": -1,
                              "away": 1.72,
                              "away_movement": -1,
                              "payout": 92.69
                            },
                            {
                              "id": 3,
                              "bookmaker_id": 8,
                              "home": 2,
                              "home_movement": 1,
                              "away": 1.83,
                              "away_movement": -1,
                              "payout": 95.56
                            },
                            {
                              "id": 8,
                              "bookmaker_id": 12,
                              "home": 2.01,
                              "home_movement": -1,
                              "away": 1.72,
                              "away_movement": -1,
                              "payout": 92.69
                            },
                            {
                              "id": 6,
                              "bookmaker_id": 15,
                              "home": 2,
                              "home_movement": 1,
                              "away": 1.83,
                              "away_movement": -1,
                              "payout": 95.56
                            },
                            {
                              "id": 1,
                              "bookmaker_id": 39,
                              "home": 1.9,
                              "home_movement": 0,
                              "away": 1.76,
                              "away_movement": 0,
                              "payout": 91.37
                            },
                            {
                              "id": 7,
                              "bookmaker_id": 43,
                              "home": 2,
                              "home_movement": 1,
                              "away": 1.83,
                              "away_movement": -1,
                              "payout": 95.56
                            }
                          ]
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Home Away"
      }
    },
    "/odds/over-under": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Over Under",
        "description": "This 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://baseball.sportmicro.com/odds/over-under?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.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://baseball.sportmicro.com/odds/over-under?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.over-under.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.over-under.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/over-under"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 94214,
                      "is_live": false,
                      "periods": [
                        {
                          "odds": [
                            {
                              "odds": [
                                {
                                  "id": 140,
                                  "over": 4.7,
                                  "under": 1.17,
                                  "payout": 93.68,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 141,
                                  "over": 4.5,
                                  "under": 1.16,
                                  "payout": 92.23,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                }
                              ],
                              "type": "10"
                            },
                            {
                              "odds": [
                                {
                                  "id": 144,
                                  "over": 4.7,
                                  "under": 1.14,
                                  "payout": 91.75,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 142,
                                  "over": 4.9,
                                  "under": 1.16,
                                  "payout": 93.8,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 143,
                                  "over": 5.3,
                                  "under": 1.1,
                                  "payout": 91.09,
                                  "bookmaker_id": 21,
                                  "over_movement": 1,
                                  "under_movement": -1
                                }
                              ],
                              "type": "10.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 145,
                                  "over": 6.5,
                                  "under": 1.1,
                                  "payout": 94.08,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 146,
                                  "over": 6,
                                  "under": 1.09,
                                  "payout": 92.24,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                }
                              ],
                              "type": "11"
                            },
                            {
                              "odds": [
                                {
                                  "id": 148,
                                  "over": 6.25,
                                  "under": 1.08,
                                  "payout": 92.09,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 147,
                                  "over": 6.75,
                                  "under": 1.1,
                                  "payout": 94.59,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 149,
                                  "over": 5.8,
                                  "under": 1.083,
                                  "payout": 91.26,
                                  "bookmaker_id": 21,
                                  "over_movement": 1,
                                  "under_movement": -1
                                }
                              ],
                              "type": "11.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1,
                                  "over": 1.001,
                                  "under": 10,
                                  "payout": 90.99,
                                  "bookmaker_id": 21,
                                  "over_movement": 0,
                                  "under_movement": 0
                                }
                              ],
                              "type": "2.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 2,
                                  "over": 1.17,
                                  "under": 4.7,
                                  "payout": 93.68,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 4,
                                  "over": 1.1,
                                  "under": 5.3,
                                  "payout": 91.09,
                                  "bookmaker_id": 21,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 6,
                                  "over": 1.16,
                                  "under": 4.45,
                                  "payout": 92.01,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                }
                              ],
                              "type": "3.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 3,
                                  "over": 1.18,
                                  "under": 4.2,
                                  "payout": 92.12,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 5,
                                  "over": 1.2,
                                  "under": 4.4,
                                  "payout": 94.29,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                }
                              ],
                              "type": "4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 12,
                                  "over": 1.3,
                                  "under": 3.4,
                                  "payout": 94.04,
                                  "bookmaker_id": 39,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 22,
                                  "over": 1.222,
                                  "under": 3.55,
                                  "payout": 90.91,
                                  "bookmaker_id": 21,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 13,
                                  "over": 1.3,
                                  "under": 3.2,
                                  "payout": 92.44,
                                  "bookmaker_id": 68,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 14,
                                  "over": 1.26,
                                  "under": 3.4,
                                  "payout": 91.93,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 11,
                                  "over": 1.28,
                                  "under": 3.5,
                                  "payout": 93.72,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                }
                              ],
                              "type": "4.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 15,
                                  "over": 1.33,
                                  "under": 3,
                                  "payout": 92.15,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 23,
                                  "over": 1.3,
                                  "under": 3.25,
                                  "payout": 92.86,
                                  "bookmaker_id": 52,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 7,
                                  "over": 1.35,
                                  "under": 3.05,
                                  "payout": 93.58,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 8,
                                  "over": 1.42,
                                  "under": 2.7,
                                  "payout": 93.06,
                                  "bookmaker_id": 25,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 9,
                                  "over": 1.42,
                                  "under": 2.7,
                                  "payout": 93.06,
                                  "bookmaker_id": 67,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 10,
                                  "over": 1.42,
                                  "under": 2.7,
                                  "payout": 93.06,
                                  "bookmaker_id": 70,
                                  "over_movement": 1,
                                  "under_movement": -1
                                }
                              ],
                              "type": "5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 25,
                                  "over": 1.571,
                                  "under": 2.25,
                                  "payout": 92.51,
                                  "bookmaker_id": 23,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 61,
                                  "over": 1.54,
                                  "under": 2.35,
                                  "payout": 93.03,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 24,
                                  "over": 1.47,
                                  "under": 2.55,
                                  "payout": 93.25,
                                  "bookmaker_id": 39,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 16,
                                  "over": 1.5,
                                  "under": 2.4,
                                  "payout": 92.31,
                                  "bookmaker_id": 68,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 17,
                                  "over": 1.57,
                                  "under": 2.4,
                                  "payout": 94.91,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 18,
                                  "over": 1.57,
                                  "under": 2.21,
                                  "payout": 91.79,
                                  "bookmaker_id": 55,
                                  "over_movement": 1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 19,
                                  "over": 1.52,
                                  "under": 2.45,
                                  "payout": 93.8,
                                  "bookmaker_id": 25,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 20,
                                  "over": 1.52,
                                  "under": 2.45,
                                  "payout": 93.8,
                                  "bookmaker_id": 67,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 21,
                                  "over": 1.52,
                                  "under": 2.45,
                                  "payout": 93.8,
                                  "bookmaker_id": 70,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 26,
                                  "over": 1.571,
                                  "under": 2.25,
                                  "payout": 92.51,
                                  "bookmaker_id": 4,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 27,
                                  "over": 1.53,
                                  "under": 2.35,
                                  "payout": 92.67,
                                  "bookmaker_id": 21,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 28,
                                  "over": 1.64,
                                  "under": 2.33,
                                  "payout": 96.25,
                                  "bookmaker_id": 1,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 30,
                                  "over": 1.54,
                                  "under": 2.44,
                                  "payout": 94.41,
                                  "bookmaker_id": 9,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 31,
                                  "over": 1.48,
                                  "under": 2.55,
                                  "payout": 93.65,
                                  "bookmaker_id": 52,
                                  "over_movement": 1,
                                  "under_movement": 1
                                }
                              ],
                              "type": "5.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 64,
                                  "over": 1.62,
                                  "under": 2.2,
                                  "payout": 93.3,
                                  "bookmaker_id": 70,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 65,
                                  "over": 1.666,
                                  "under": 2.21,
                                  "payout": 94.99,
                                  "bookmaker_id": 9,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 66,
                                  "over": 1.57,
                                  "under": 2.28,
                                  "payout": 92.98,
                                  "bookmaker_id": 52,
                                  "over_movement": -1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 62,
                                  "over": 1.66,
                                  "under": 2.2,
                                  "payout": 94.61,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 63,
                                  "over": 1.62,
                                  "under": 2.2,
                                  "payout": 93.3,
                                  "bookmaker_id": 25,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 67,
                                  "over": 1.62,
                                  "under": 2.2,
                                  "payout": 93.3,
                                  "bookmaker_id": 67,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 72,
                                  "over": 1.64,
                                  "under": 2.15,
                                  "payout": 93.03,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                }
                              ],
                              "type": "6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 150,
                                  "over": 1.83,
                                  "under": 1.96,
                                  "payout": 94.64,
                                  "bookmaker_id": 81,
                                  "over_movement": 0,
                                  "under_movement": -1
                                },
                                {
                                  "id": 154,
                                  "over": 1.8,
                                  "under": 1.95,
                                  "payout": 93.6,
                                  "bookmaker_id": 47,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 160,
                                  "over": 1.74,
                                  "under": 2,
                                  "payout": 93.05,
                                  "bookmaker_id": 52,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 164,
                                  "over": 1.85,
                                  "under": 1.8,
                                  "payout": 91.23,
                                  "bookmaker_id": 4,
                                  "over_movement": -1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 155,
                                  "over": 1.79,
                                  "under": 1.89,
                                  "payout": 91.93,
                                  "bookmaker_id": 55,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 156,
                                  "over": 1.8,
                                  "under": 1.95,
                                  "payout": 93.6,
                                  "bookmaker_id": 25,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 165,
                                  "over": 1.8,
                                  "under": 1.9,
                                  "payout": 92.43,
                                  "bookmaker_id": 21,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 166,
                                  "over": 1.88,
                                  "under": 1.97,
                                  "payout": 96.2,
                                  "bookmaker_id": 1,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 158,
                                  "over": 1.8,
                                  "under": 1.95,
                                  "payout": 93.6,
                                  "bookmaker_id": 70,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 151,
                                  "over": 1.8,
                                  "under": 1.95,
                                  "payout": 93.6,
                                  "bookmaker_id": 46,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 161,
                                  "over": 1.8,
                                  "under": 1.9,
                                  "payout": 92.43,
                                  "bookmaker_id": 14,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 152,
                                  "over": 1.8,
                                  "under": 1.9,
                                  "payout": 92.43,
                                  "bookmaker_id": 68,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 162,
                                  "over": 1.8,
                                  "under": 1.95,
                                  "payout": 93.6,
                                  "bookmaker_id": 39,
                                  "over_movement": 1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 153,
                                  "over": 1.83,
                                  "under": 1.96,
                                  "payout": 94.64,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": -1
                                },
                                {
                                  "id": 163,
                                  "over": 1.85,
                                  "under": 1.8,
                                  "payout": 91.23,
                                  "bookmaker_id": 23,
                                  "over_movement": -1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 157,
                                  "over": 1.8,
                                  "under": 1.95,
                                  "payout": 93.6,
                                  "bookmaker_id": 67,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 167,
                                  "over": 1.85,
                                  "under": 1.94,
                                  "payout": 94.7,
                                  "bookmaker_id": 53,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 159,
                                  "over": 1.88,
                                  "under": 1.96,
                                  "payout": 95.96,
                                  "bookmaker_id": 9,
                                  "over_movement": 1,
                                  "under_movement": -1
                                }
                              ],
                              "type": "6.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 71,
                                  "over": 2.05,
                                  "under": 1.83,
                                  "payout": 96.69,
                                  "bookmaker_id": 44,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 74,
                                  "over": 2,
                                  "under": 1.75,
                                  "payout": 93.33,
                                  "bookmaker_id": 25,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 81,
                                  "over": 2.05,
                                  "under": 1.68,
                                  "payout": 92.33,
                                  "bookmaker_id": 53,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 75,
                                  "over": 2,
                                  "under": 1.75,
                                  "payout": 93.33,
                                  "bookmaker_id": 67,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 76,
                                  "over": 2,
                                  "under": 1.75,
                                  "payout": 93.33,
                                  "bookmaker_id": 70,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 68,
                                  "over": 2.01,
                                  "under": 1.79,
                                  "payout": 94.68,
                                  "bookmaker_id": 81,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 69,
                                  "over": 1.91,
                                  "under": 1.8,
                                  "payout": 92.67,
                                  "bookmaker_id": 46,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 70,
                                  "over": 2.1,
                                  "under": 1.71,
                                  "payout": 94.25,
                                  "bookmaker_id": 69,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 73,
                                  "over": 1.91,
                                  "under": 1.8,
                                  "payout": 92.67,
                                  "bookmaker_id": 47,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 77,
                                  "over": 1.95,
                                  "under": 1.77,
                                  "payout": 92.78,
                                  "bookmaker_id": 52,
                                  "over_movement": -1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 78,
                                  "over": 1.99,
                                  "under": 1.81,
                                  "payout": 94.79,
                                  "bookmaker_id": 86,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 79,
                                  "over": 2.08,
                                  "under": 1.75,
                                  "payout": 95.04,
                                  "bookmaker_id": 9,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 80,
                                  "over": 1.95,
                                  "under": 1.8,
                                  "payout": 93.6,
                                  "bookmaker_id": 39,
                                  "over_movement": 1,
                                  "under_movement": -1
                                }
                              ],
                              "type": "7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 84,
                                  "over": 2.2,
                                  "under": 1.6,
                                  "payout": 92.63,
                                  "bookmaker_id": 68,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 108,
                                  "over": 2.2,
                                  "under": 1.62,
                                  "payout": 93.3,
                                  "bookmaker_id": 39,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 85,
                                  "over": 2.2,
                                  "under": 1.62,
                                  "payout": 93.3,
                                  "bookmaker_id": 25,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 86,
                                  "over": 2.2,
                                  "under": 1.62,
                                  "payout": 93.3,
                                  "bookmaker_id": 67,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 82,
                                  "over": 2.4,
                                  "under": 1.57,
                                  "payout": 94.91,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 83,
                                  "over": 2.31,
                                  "under": 1.52,
                                  "payout": 91.68,
                                  "bookmaker_id": 55,
                                  "over_movement": -1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 87,
                                  "over": 2.29,
                                  "under": 1.61,
                                  "payout": 94.54,
                                  "bookmaker_id": 9,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 89,
                                  "over": 2.2,
                                  "under": 1.62,
                                  "payout": 93.3,
                                  "bookmaker_id": 70,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 90,
                                  "over": 2.05,
                                  "under": 1.667,
                                  "payout": 91.94,
                                  "bookmaker_id": 14,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 92,
                                  "over": 2.2,
                                  "under": 1.61,
                                  "payout": 92.97,
                                  "bookmaker_id": 52,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 109,
                                  "over": 2.25,
                                  "under": 1.571,
                                  "payout": 92.51,
                                  "bookmaker_id": 23,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 110,
                                  "over": 2.25,
                                  "under": 1.571,
                                  "payout": 92.51,
                                  "bookmaker_id": 4,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 111,
                                  "over": 2.35,
                                  "under": 1.53,
                                  "payout": 92.67,
                                  "bookmaker_id": 21,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 112,
                                  "over": 2.47,
                                  "under": 1.57,
                                  "payout": 95.99,
                                  "bookmaker_id": 1,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 113,
                                  "over": 2.3,
                                  "under": 1.54,
                                  "payout": 92.24,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                }
                              ],
                              "type": "7.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 114,
                                  "over": 2.7,
                                  "under": 1.44,
                                  "payout": 93.91,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 118,
                                  "over": 2.5,
                                  "under": 1.5,
                                  "payout": 93.75,
                                  "bookmaker_id": 25,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 115,
                                  "over": 2.5,
                                  "under": 1.5,
                                  "payout": 93.75,
                                  "bookmaker_id": 67,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 116,
                                  "over": 2.5,
                                  "under": 1.5,
                                  "payout": 93.75,
                                  "bookmaker_id": 70,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 117,
                                  "over": 2.5,
                                  "under": 1.48,
                                  "payout": 92.96,
                                  "bookmaker_id": 52,
                                  "over_movement": -1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 119,
                                  "over": 2.64,
                                  "under": 1.46,
                                  "payout": 94.01,
                                  "bookmaker_id": 9,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 120,
                                  "over": 2.65,
                                  "under": 1.42,
                                  "payout": 92.46,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                }
                              ],
                              "type": "8"
                            },
                            {
                              "odds": [
                                {
                                  "id": 124,
                                  "over": 2.5,
                                  "under": 1.5,
                                  "payout": 93.75,
                                  "bookmaker_id": 67,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 128,
                                  "over": 2.45,
                                  "under": 1.45,
                                  "payout": 91.09,
                                  "bookmaker_id": 23,
                                  "over_movement": -1,
                                  "under_movement": 0
                                },
                                {
                                  "id": 134,
                                  "over": 2.45,
                                  "under": 1.45,
                                  "payout": 91.09,
                                  "bookmaker_id": 4,
                                  "over_movement": -1,
                                  "under_movement": 0
                                },
                                {
                                  "id": 125,
                                  "over": 2.5,
                                  "under": 1.5,
                                  "payout": 93.75,
                                  "bookmaker_id": 70,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 126,
                                  "over": 2.6,
                                  "under": 1.47,
                                  "payout": 93.91,
                                  "bookmaker_id": 9,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 129,
                                  "over": 2.8,
                                  "under": 1.37,
                                  "payout": 91.99,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 121,
                                  "over": 2.7,
                                  "under": 1.4,
                                  "payout": 92.2,
                                  "bookmaker_id": 68,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 122,
                                  "over": 2.9,
                                  "under": 1.39,
                                  "payout": 93.96,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 123,
                                  "over": 2.5,
                                  "under": 1.5,
                                  "payout": 93.75,
                                  "bookmaker_id": 25,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 133,
                                  "over": 2.55,
                                  "under": 1.51,
                                  "payout": 94.84,
                                  "bookmaker_id": 1,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 127,
                                  "over": 2.7,
                                  "under": 1.41,
                                  "payout": 92.63,
                                  "bookmaker_id": 52,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 130,
                                  "over": 2.95,
                                  "under": 1.35,
                                  "payout": 92.62,
                                  "bookmaker_id": 21,
                                  "over_movement": 1,
                                  "under_movement": -1
                                }
                              ],
                              "type": "8.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 135,
                                  "over": 3.5,
                                  "under": 1.25,
                                  "payout": 92.11,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 131,
                                  "over": 3.65,
                                  "under": 1.27,
                                  "payout": 94.22,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 132,
                                  "over": 3.2,
                                  "under": 1.3,
                                  "payout": 92.44,
                                  "bookmaker_id": 52,
                                  "over_movement": 1,
                                  "under_movement": -1
                                }
                              ],
                              "type": "9"
                            },
                            {
                              "odds": [
                                {
                                  "id": 136,
                                  "over": 3.2,
                                  "under": 1.3,
                                  "payout": 92.44,
                                  "bookmaker_id": 68,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 138,
                                  "over": 3.95,
                                  "under": 1.182,
                                  "payout": 90.98,
                                  "bookmaker_id": 21,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 137,
                                  "over": 3.95,
                                  "under": 1.23,
                                  "payout": 93.79,
                                  "bookmaker_id": 69,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 139,
                                  "over": 3.8,
                                  "under": 1.21,
                                  "payout": 91.78,
                                  "bookmaker_id": 53,
                                  "over_movement": 0,
                                  "under_movement": 0
                                }
                              ],
                              "type": "9.5"
                            }
                          ],
                          "period_type": "FT inc. OT"
                        },
                        {
                          "odds": [
                            {
                              "odds": [
                                {
                                  "id": 29,
                                  "over": 1.32,
                                  "under": 3.35,
                                  "payout": 94.69,
                                  "bookmaker_id": 27,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 38,
                                  "over": 1.32,
                                  "under": 3.25,
                                  "payout": 93.87,
                                  "bookmaker_id": 16,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 39,
                                  "over": 1.35,
                                  "under": 2.95,
                                  "payout": 92.62,
                                  "bookmaker_id": 34,
                                  "over_movement": 1,
                                  "under_movement": -1
                                }
                              ],
                              "type": "5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 32,
                                  "over": 1.52,
                                  "under": 2.5,
                                  "payout": 94.53,
                                  "bookmaker_id": 2,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 35,
                                  "over": 1.52,
                                  "under": 2.5,
                                  "payout": 94.53,
                                  "bookmaker_id": 3,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 33,
                                  "over": 1.49,
                                  "under": 2.55,
                                  "payout": 94.05,
                                  "bookmaker_id": 16,
                                  "over_movement": 1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 34,
                                  "over": 1.53,
                                  "under": 2.35,
                                  "payout": 92.67,
                                  "bookmaker_id": 34,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 36,
                                  "over": 1.52,
                                  "under": 2.5,
                                  "payout": 94.53,
                                  "bookmaker_id": 12,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 40,
                                  "over": 1.49,
                                  "under": 2.6,
                                  "payout": 94.72,
                                  "bookmaker_id": 27,
                                  "over_movement": 1,
                                  "under_movement": 1
                                }
                              ],
                              "type": "5.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 42,
                                  "over": 1.63,
                                  "under": 2.28,
                                  "payout": 95.05,
                                  "bookmaker_id": 3,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 43,
                                  "over": 1.63,
                                  "under": 2.28,
                                  "payout": 95.05,
                                  "bookmaker_id": 12,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 37,
                                  "over": 1.58,
                                  "under": 2.33,
                                  "payout": 94.15,
                                  "bookmaker_id": 27,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 41,
                                  "over": 1.63,
                                  "under": 2.13,
                                  "payout": 92.34,
                                  "bookmaker_id": 34,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 45,
                                  "over": 1.63,
                                  "under": 2.28,
                                  "payout": 95.05,
                                  "bookmaker_id": 2,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 49,
                                  "over": 1.58,
                                  "under": 2.3,
                                  "payout": 93.66,
                                  "bookmaker_id": 16,
                                  "over_movement": -1,
                                  "under_movement": -1
                                }
                              ],
                              "type": "6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 101,
                                  "over": 1.76,
                                  "under": 2.04,
                                  "payout": 94.48,
                                  "bookmaker_id": 27,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 104,
                                  "over": 1.76,
                                  "under": 2.02,
                                  "payout": 94.05,
                                  "bookmaker_id": 16,
                                  "over_movement": 1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 105,
                                  "over": 1.79,
                                  "under": 1.91,
                                  "payout": 92.4,
                                  "bookmaker_id": 34,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 106,
                                  "over": 1.82,
                                  "under": 2.008,
                                  "payout": 95.47,
                                  "bookmaker_id": 3,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 103,
                                  "over": 1.82,
                                  "under": 2.008,
                                  "payout": 95.47,
                                  "bookmaker_id": 2,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 107,
                                  "over": 1.82,
                                  "under": 2.008,
                                  "payout": 95.47,
                                  "bookmaker_id": 12,
                                  "over_movement": -1,
                                  "under_movement": 1
                                }
                              ],
                              "type": "6.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 46,
                                  "over": 2.02,
                                  "under": 1.79,
                                  "payout": 94.9,
                                  "bookmaker_id": 2,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 57,
                                  "over": 2.02,
                                  "under": 1.79,
                                  "payout": 94.9,
                                  "bookmaker_id": 12,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 44,
                                  "over": 1.98,
                                  "under": 1.8,
                                  "payout": 94.29,
                                  "bookmaker_id": 27,
                                  "over_movement": -1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 47,
                                  "over": 2.01,
                                  "under": 1.71,
                                  "payout": 92.4,
                                  "bookmaker_id": 34,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 48,
                                  "over": 2.02,
                                  "under": 1.79,
                                  "payout": 94.9,
                                  "bookmaker_id": 3,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 55,
                                  "over": 1.97,
                                  "under": 1.79,
                                  "payout": 93.78,
                                  "bookmaker_id": 16,
                                  "over_movement": -1,
                                  "under_movement": -1
                                }
                              ],
                              "type": "7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 52,
                                  "over": 2.23,
                                  "under": 1.63,
                                  "payout": 94.17,
                                  "bookmaker_id": 16,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 53,
                                  "over": 2.23,
                                  "under": 1.58,
                                  "payout": 92.48,
                                  "bookmaker_id": 34,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 54,
                                  "over": 2.23,
                                  "under": 1.64,
                                  "payout": 94.5,
                                  "bookmaker_id": 3,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 50,
                                  "over": 2.25,
                                  "under": 1.63,
                                  "payout": 94.52,
                                  "bookmaker_id": 27,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 51,
                                  "over": 2.23,
                                  "under": 1.64,
                                  "payout": 94.5,
                                  "bookmaker_id": 2,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 58,
                                  "over": 2.23,
                                  "under": 1.64,
                                  "payout": 94.5,
                                  "bookmaker_id": 12,
                                  "over_movement": -1,
                                  "under_movement": 1
                                }
                              ],
                              "type": "7.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 91,
                                  "over": 2.54,
                                  "under": 1.49,
                                  "payout": 93.91,
                                  "bookmaker_id": 3,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 95,
                                  "over": 2.54,
                                  "under": 1.49,
                                  "payout": 93.91,
                                  "bookmaker_id": 12,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 56,
                                  "over": 2.6,
                                  "under": 1.49,
                                  "payout": 94.72,
                                  "bookmaker_id": 27,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 59,
                                  "over": 2.55,
                                  "under": 1.49,
                                  "payout": 94.05,
                                  "bookmaker_id": 16,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 60,
                                  "over": 2.54,
                                  "under": 1.49,
                                  "payout": 93.91,
                                  "bookmaker_id": 2,
                                  "over_movement": -1,
                                  "under_movement": 1
                                },
                                {
                                  "id": 88,
                                  "over": 2.5,
                                  "under": 1.47,
                                  "payout": 92.57,
                                  "bookmaker_id": 34,
                                  "over_movement": 1,
                                  "under_movement": -1
                                }
                              ],
                              "type": "8"
                            },
                            {
                              "odds": [
                                {
                                  "id": 94,
                                  "over": 2.6,
                                  "under": 1.47,
                                  "payout": 93.91,
                                  "bookmaker_id": 2,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 96,
                                  "over": 2.59,
                                  "under": 1.44,
                                  "payout": 92.55,
                                  "bookmaker_id": 34,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 93,
                                  "over": 2.8,
                                  "under": 1.42,
                                  "payout": 94.22,
                                  "bookmaker_id": 27,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 97,
                                  "over": 2.6,
                                  "under": 1.47,
                                  "payout": 93.91,
                                  "bookmaker_id": 3,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 98,
                                  "over": 2.75,
                                  "under": 1.42,
                                  "payout": 93.65,
                                  "bookmaker_id": 16,
                                  "over_movement": 1,
                                  "under_movement": -1
                                },
                                {
                                  "id": 102,
                                  "over": 2.6,
                                  "under": 1.47,
                                  "payout": 93.91,
                                  "bookmaker_id": 12,
                                  "over_movement": 1,
                                  "under_movement": -1
                                }
                              ],
                              "type": "8.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 99,
                                  "over": 3.3,
                                  "under": 1.32,
                                  "payout": 94.29,
                                  "bookmaker_id": 27,
                                  "over_movement": 0,
                                  "under_movement": 0
                                },
                                {
                                  "id": 100,
                                  "over": 3.2,
                                  "under": 1.32,
                                  "payout": 93.45,
                                  "bookmaker_id": 16,
                                  "over_movement": 0,
                                  "under_movement": 0
                                }
                              ],
                              "type": "9"
                            }
                          ],
                          "period_type": "Full Time"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Over Under"
      }
    },
    "/odds/asian-handicaps": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Asian Handicaps",
        "description": "This 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://baseball.sportmicro.com/odds/asian-handicaps?match_id=eq.{match_id}`<br /><br />Get live odds from a specific **match_id**<br />`https://baseball.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://baseball.sportmicro.com/odds/asian-handicaps?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.asian-handicaps.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.asian-handicaps.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/asian-handicaps"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 94214,
                      "is_live": false,
                      "periods": [
                        {
                          "odds": [
                            {
                              "odds": [
                                {
                                  "id": 72,
                                  "away": 2.45,
                                  "home": 1.5,
                                  "payout": 93.04,
                                  "bookmaker_id": 19,
                                  "away_movement": -1,
                                  "home_movement": 1
                                }
                              ],
                              "type": "0"
                            },
                            {
                              "odds": [
                                {
                                  "id": 128,
                                  "away": 2.05,
                                  "home": 1.74,
                                  "payout": 94.12,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 129,
                                  "away": 2.35,
                                  "home": 1.55,
                                  "payout": 93.4,
                                  "bookmaker_id": 25,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 130,
                                  "away": 2.35,
                                  "home": 1.55,
                                  "payout": 93.4,
                                  "bookmaker_id": 67,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 131,
                                  "away": 2.35,
                                  "home": 1.55,
                                  "payout": 93.4,
                                  "bookmaker_id": 70,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 132,
                                  "away": 2.31,
                                  "home": 1.615,
                                  "payout": 95.05,
                                  "bookmaker_id": 9,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 133,
                                  "away": 2,
                                  "home": 1.71,
                                  "payout": 92.18,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "+1/-1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 63,
                                  "away": 1.44,
                                  "home": 2.7,
                                  "payout": 93.91,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 66,
                                  "away": 1.42,
                                  "home": 2.7,
                                  "payout": 93.06,
                                  "bookmaker_id": 25,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 67,
                                  "away": 1.42,
                                  "home": 2.7,
                                  "payout": 93.06,
                                  "bookmaker_id": 67,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 68,
                                  "away": 1.41,
                                  "home": 2.86,
                                  "payout": 94.44,
                                  "bookmaker_id": 9,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 69,
                                  "away": 1.42,
                                  "home": 2.65,
                                  "payout": 92.46,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 70,
                                  "away": 1.42,
                                  "home": 2.7,
                                  "payout": 93.06,
                                  "bookmaker_id": 70,
                                  "away_movement": -1,
                                  "home_movement": 1
                                }
                              ],
                              "type": "-1/+1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 77,
                                  "away": 2.6,
                                  "home": 1.48,
                                  "payout": 94.31,
                                  "bookmaker_id": 25,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 87,
                                  "away": 2.65,
                                  "home": 1.51,
                                  "payout": 96.19,
                                  "bookmaker_id": 1,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 78,
                                  "away": 2.6,
                                  "home": 1.48,
                                  "payout": 94.31,
                                  "bookmaker_id": 67,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 79,
                                  "away": 2.4,
                                  "home": 1.5,
                                  "payout": 92.31,
                                  "bookmaker_id": 47,
                                  "away_movement": -1,
                                  "home_movement": 0
                                },
                                {
                                  "id": 80,
                                  "away": 2.46,
                                  "home": 1.46,
                                  "payout": 91.62,
                                  "bookmaker_id": 55,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 90,
                                  "away": 2.45,
                                  "home": 1.5,
                                  "payout": 93.04,
                                  "bookmaker_id": 21,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 71,
                                  "away": 2.39,
                                  "home": 1.57,
                                  "payout": 94.76,
                                  "bookmaker_id": 81,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 81,
                                  "away": 2.6,
                                  "home": 1.48,
                                  "payout": 94.31,
                                  "bookmaker_id": 70,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 82,
                                  "away": 2.6,
                                  "home": 1.52,
                                  "payout": 95.92,
                                  "bookmaker_id": 9,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 73,
                                  "away": 2.55,
                                  "home": 1.45,
                                  "payout": 92.44,
                                  "bookmaker_id": 68,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 83,
                                  "away": 2.5,
                                  "home": 1.49,
                                  "payout": 93.36,
                                  "bookmaker_id": 19,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 74,
                                  "away": 2.4,
                                  "home": 1.5,
                                  "payout": 92.31,
                                  "bookmaker_id": 46,
                                  "away_movement": -1,
                                  "home_movement": 0
                                },
                                {
                                  "id": 84,
                                  "away": 2.4,
                                  "home": 1.5,
                                  "payout": 92.31,
                                  "bookmaker_id": 14,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 75,
                                  "away": 2.39,
                                  "home": 1.57,
                                  "payout": 94.76,
                                  "bookmaker_id": 69,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 85,
                                  "away": 2.45,
                                  "home": 1.57,
                                  "payout": 95.68,
                                  "bookmaker_id": 39,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 76,
                                  "away": 1.4,
                                  "home": 3.1,
                                  "payout": 96.44,
                                  "bookmaker_id": 44,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 86,
                                  "away": 2.6,
                                  "home": 1.45,
                                  "payout": 93.09,
                                  "bookmaker_id": 54,
                                  "away_movement": 1,
                                  "home_movement": -1
                                }
                              ],
                              "type": "+1.5/-1.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 23,
                                  "away": 1.35,
                                  "home": 2.9,
                                  "payout": 92.12,
                                  "bookmaker_id": 68,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 24,
                                  "away": 1.32,
                                  "home": 3.25,
                                  "payout": 93.87,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 25,
                                  "away": 1.4,
                                  "home": 3.1,
                                  "payout": 96.44,
                                  "bookmaker_id": 44,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 26,
                                  "away": 1.35,
                                  "home": 3.1,
                                  "payout": 94.04,
                                  "bookmaker_id": 25,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 27,
                                  "away": 1.35,
                                  "home": 3.1,
                                  "payout": 94.04,
                                  "bookmaker_id": 67,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 28,
                                  "away": 1.34,
                                  "home": 3.1,
                                  "payout": 93.56,
                                  "bookmaker_id": 19,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 36,
                                  "away": 1.32,
                                  "home": 3.26,
                                  "payout": 93.96,
                                  "bookmaker_id": 9,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 37,
                                  "away": 1.35,
                                  "home": 3.1,
                                  "payout": 94.04,
                                  "bookmaker_id": 70,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 61,
                                  "away": 1.36,
                                  "home": 3,
                                  "payout": 93.58,
                                  "bookmaker_id": 39,
                                  "away_movement": -1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 62,
                                  "away": 1.33,
                                  "home": 3.05,
                                  "payout": 92.61,
                                  "bookmaker_id": 54,
                                  "away_movement": -1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 64,
                                  "away": 1.3,
                                  "home": 3.15,
                                  "payout": 92.02,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 65,
                                  "away": 1.3,
                                  "home": 3.1,
                                  "payout": 91.59,
                                  "bookmaker_id": 21,
                                  "away_movement": 1,
                                  "home_movement": -1
                                }
                              ],
                              "type": "-1.5/+1.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 88,
                                  "away": 2.95,
                                  "home": 1.38,
                                  "payout": 94.02,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 89,
                                  "away": 3.2,
                                  "home": 1.32,
                                  "payout": 93.45,
                                  "bookmaker_id": 25,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 94,
                                  "away": 2.85,
                                  "home": 1.36,
                                  "payout": 92.07,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 92,
                                  "away": 3.2,
                                  "home": 1.32,
                                  "payout": 93.45,
                                  "bookmaker_id": 67,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 93,
                                  "away": 3.2,
                                  "home": 1.32,
                                  "payout": 93.45,
                                  "bookmaker_id": 70,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 96,
                                  "away": 3.1,
                                  "home": 1.37,
                                  "payout": 95.01,
                                  "bookmaker_id": 9,
                                  "away_movement": 1,
                                  "home_movement": -1
                                }
                              ],
                              "type": "+2/-2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 17,
                                  "away": 1.2,
                                  "home": 4.4,
                                  "payout": 94.29,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 18,
                                  "away": 1.28,
                                  "home": 3.4,
                                  "payout": 92.99,
                                  "bookmaker_id": 25,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 20,
                                  "away": 1.28,
                                  "home": 3.4,
                                  "payout": 92.99,
                                  "bookmaker_id": 67,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 21,
                                  "away": 1.28,
                                  "home": 3.4,
                                  "payout": 92.99,
                                  "bookmaker_id": 70,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 22,
                                  "away": 1.18,
                                  "home": 4.2,
                                  "payout": 92.12,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "-2/+2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 97,
                                  "away": 3.4,
                                  "home": 1.28,
                                  "payout": 92.99,
                                  "bookmaker_id": 25,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 98,
                                  "away": 3.4,
                                  "home": 1.28,
                                  "payout": 92.99,
                                  "bookmaker_id": 67,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 99,
                                  "away": 3.3,
                                  "home": 1.31,
                                  "payout": 93.77,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 100,
                                  "away": 3.38,
                                  "home": 1.31,
                                  "payout": 94.41,
                                  "bookmaker_id": 9,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 101,
                                  "away": 3.3,
                                  "home": 1.3,
                                  "payout": 93.26,
                                  "bookmaker_id": 19,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 104,
                                  "away": 3.25,
                                  "home": 1.3,
                                  "payout": 92.86,
                                  "bookmaker_id": 54,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 102,
                                  "away": 3.2,
                                  "home": 1.27,
                                  "payout": 90.92,
                                  "bookmaker_id": 21,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 112,
                                  "away": 3.25,
                                  "home": 1.33,
                                  "payout": 94.38,
                                  "bookmaker_id": 39,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 95,
                                  "away": 3.3,
                                  "home": 1.28,
                                  "payout": 92.23,
                                  "bookmaker_id": 68,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 105,
                                  "away": 3.4,
                                  "home": 1.28,
                                  "payout": 92.99,
                                  "bookmaker_id": 70,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 103,
                                  "away": 3.2,
                                  "home": 1.29,
                                  "payout": 91.94,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "+2.5/-2.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 11,
                                  "away": 1.2,
                                  "home": 4,
                                  "payout": 92.31,
                                  "bookmaker_id": 68,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 12,
                                  "away": 1.17,
                                  "home": 4.8,
                                  "payout": 94.07,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 13,
                                  "away": 1.24,
                                  "home": 3.8,
                                  "payout": 93.49,
                                  "bookmaker_id": 19,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 14,
                                  "away": 1.22,
                                  "home": 3.75,
                                  "payout": 92.05,
                                  "bookmaker_id": 54,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 15,
                                  "away": 1.143,
                                  "home": 4.5,
                                  "payout": 91.15,
                                  "bookmaker_id": 21,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 16,
                                  "away": 1.15,
                                  "home": 4.55,
                                  "payout": 91.8,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "-2.5/+2.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 108,
                                  "away": 4.05,
                                  "home": 1.19,
                                  "payout": 91.98,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 106,
                                  "away": 4.25,
                                  "home": 1.21,
                                  "payout": 94.18,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "+3/-3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 8,
                                  "away": 1.07,
                                  "home": 6.5,
                                  "payout": 91.88,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 10,
                                  "away": 1.09,
                                  "home": 6.75,
                                  "payout": 93.85,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "-3/+3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 107,
                                  "away": 4.5,
                                  "home": 1.17,
                                  "payout": 92.86,
                                  "bookmaker_id": 68,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 109,
                                  "away": 4.35,
                                  "home": 1.19,
                                  "payout": 93.44,
                                  "bookmaker_id": 19,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 110,
                                  "away": 4.3,
                                  "home": 1.2,
                                  "payout": 93.82,
                                  "bookmaker_id": 39,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 111,
                                  "away": 4.55,
                                  "home": 1.18,
                                  "payout": 93.7,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 114,
                                  "away": 4.65,
                                  "home": 1.133,
                                  "payout": 91.1,
                                  "bookmaker_id": 21,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 115,
                                  "away": 4.35,
                                  "home": 1.16,
                                  "payout": 91.58,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 113,
                                  "away": 4.25,
                                  "home": 1.18,
                                  "payout": 92.36,
                                  "bookmaker_id": 54,
                                  "away_movement": 1,
                                  "home_movement": -1
                                }
                              ],
                              "type": "+3.5/-3.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 6,
                                  "away": 1.08,
                                  "home": 7.25,
                                  "payout": 94,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 7,
                                  "away": 1.14,
                                  "home": 5.25,
                                  "payout": 93.66,
                                  "bookmaker_id": 19,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 9,
                                  "away": 1.063,
                                  "home": 6.4,
                                  "payout": 91.16,
                                  "bookmaker_id": 21,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 19,
                                  "away": 1.06,
                                  "home": 6.75,
                                  "payout": 91.61,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "-3.5/+3.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 117,
                                  "away": 5.75,
                                  "home": 1.1,
                                  "payout": 92.34,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 116,
                                  "away": 6,
                                  "home": 1.11,
                                  "payout": 93.67,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "+4/-4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 3,
                                  "away": 1.03,
                                  "home": 8.5,
                                  "payout": 91.87,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 4,
                                  "away": 1.04,
                                  "home": 9.5,
                                  "payout": 93.74,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "-4/+4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 118,
                                  "away": 6.5,
                                  "home": 1.1,
                                  "payout": 94.08,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 119,
                                  "away": 5.65,
                                  "home": 1.12,
                                  "payout": 93.47,
                                  "bookmaker_id": 19,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 120,
                                  "away": 5.5,
                                  "home": 1.12,
                                  "payout": 93.05,
                                  "bookmaker_id": 54,
                                  "away_movement": 1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 121,
                                  "away": 6.8,
                                  "home": 1.05,
                                  "payout": 90.96,
                                  "bookmaker_id": 21,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 122,
                                  "away": 6,
                                  "home": 1.09,
                                  "payout": 92.24,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "+4.5/-4.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 2,
                                  "away": 1.08,
                                  "home": 7,
                                  "payout": 93.56,
                                  "bookmaker_id": 19,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 5,
                                  "away": 1.01,
                                  "home": 9.5,
                                  "payout": 91.29,
                                  "bookmaker_id": 21,
                                  "away_movement": -1,
                                  "home_movement": 1
                                }
                              ],
                              "type": "-4.5/+4.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 124,
                                  "away": 7.75,
                                  "home": 1.04,
                                  "payout": 91.7,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 123,
                                  "away": 8.5,
                                  "home": 1.05,
                                  "payout": 93.46,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "+5/-5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 127,
                                  "away": 8,
                                  "home": 1.04,
                                  "payout": 92.04,
                                  "bookmaker_id": 53,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 125,
                                  "away": 8.75,
                                  "home": 1.05,
                                  "payout": 93.75,
                                  "bookmaker_id": 69,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 126,
                                  "away": 10,
                                  "home": 1.001,
                                  "payout": 90.99,
                                  "bookmaker_id": 21,
                                  "away_movement": 1,
                                  "home_movement": -1
                                }
                              ],
                              "type": "+5.5/-5.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1,
                                  "away": 1.001,
                                  "home": 10,
                                  "payout": 90.99,
                                  "bookmaker_id": 21,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "-5.5/+5.5"
                            }
                          ],
                          "period_type": "FT inc. OT"
                        },
                        {
                          "odds": [
                            {
                              "odds": [
                                {
                                  "id": 59,
                                  "away": 2.26,
                                  "home": 1.64,
                                  "payout": 95.04,
                                  "bookmaker_id": 2,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 60,
                                  "away": 2.26,
                                  "home": 1.64,
                                  "payout": 95.04,
                                  "bookmaker_id": 3,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 91,
                                  "away": 2.26,
                                  "home": 1.64,
                                  "payout": 95.04,
                                  "bookmaker_id": 12,
                                  "away_movement": 1,
                                  "home_movement": -1
                                }
                              ],
                              "type": "+1/-1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 41,
                                  "away": 1.39,
                                  "home": 2.88,
                                  "payout": 93.75,
                                  "bookmaker_id": 2,
                                  "away_movement": -1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 42,
                                  "away": 1.39,
                                  "home": 2.88,
                                  "payout": 93.75,
                                  "bookmaker_id": 3,
                                  "away_movement": -1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 43,
                                  "away": 1.39,
                                  "home": 2.88,
                                  "payout": 93.75,
                                  "bookmaker_id": 12,
                                  "away_movement": -1,
                                  "home_movement": -1
                                }
                              ],
                              "type": "-1/+1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 44,
                                  "away": 2.536,
                                  "home": 1.53,
                                  "payout": 95.43,
                                  "bookmaker_id": 2,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 45,
                                  "away": 2.33,
                                  "home": 1.54,
                                  "payout": 92.72,
                                  "bookmaker_id": 34,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 46,
                                  "away": 2.536,
                                  "home": 1.53,
                                  "payout": 95.43,
                                  "bookmaker_id": 3,
                                  "away_movement": 1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 47,
                                  "away": 2.536,
                                  "home": 1.53,
                                  "payout": 95.43,
                                  "bookmaker_id": 12,
                                  "away_movement": 1,
                                  "home_movement": -1
                                }
                              ],
                              "type": "+1.5/-1.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 35,
                                  "away": 1.3,
                                  "home": 3.26,
                                  "payout": 92.94,
                                  "bookmaker_id": 2,
                                  "away_movement": -1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 38,
                                  "away": 1.31,
                                  "home": 3.15,
                                  "payout": 92.52,
                                  "bookmaker_id": 34,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 39,
                                  "away": 1.3,
                                  "home": 3.26,
                                  "payout": 92.94,
                                  "bookmaker_id": 3,
                                  "away_movement": -1,
                                  "home_movement": -1
                                },
                                {
                                  "id": 40,
                                  "away": 1.3,
                                  "home": 3.26,
                                  "payout": 92.94,
                                  "bookmaker_id": 12,
                                  "away_movement": -1,
                                  "home_movement": -1
                                }
                              ],
                              "type": "-1.5/+1.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 48,
                                  "away": 3,
                                  "home": 1.39,
                                  "payout": 94.99,
                                  "bookmaker_id": 2,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 49,
                                  "away": 2.75,
                                  "home": 1.39,
                                  "payout": 92.33,
                                  "bookmaker_id": 34,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 50,
                                  "away": 3,
                                  "home": 1.39,
                                  "payout": 94.99,
                                  "bookmaker_id": 3,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 51,
                                  "away": 3,
                                  "home": 1.39,
                                  "payout": 94.99,
                                  "bookmaker_id": 12,
                                  "away_movement": -1,
                                  "home_movement": 1
                                }
                              ],
                              "type": "+2/-2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 32,
                                  "away": 1.21,
                                  "home": 3.9,
                                  "payout": 92.35,
                                  "bookmaker_id": 2,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 33,
                                  "away": 1.2,
                                  "home": 4.05,
                                  "payout": 92.57,
                                  "bookmaker_id": 34,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 34,
                                  "away": 1.21,
                                  "home": 3.9,
                                  "payout": 92.35,
                                  "bookmaker_id": 12,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "-2/+2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 52,
                                  "away": 3.26,
                                  "home": 1.33,
                                  "payout": 94.46,
                                  "bookmaker_id": 2,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 53,
                                  "away": 3.05,
                                  "home": 1.33,
                                  "payout": 92.61,
                                  "bookmaker_id": 34,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 54,
                                  "away": 3.26,
                                  "home": 1.33,
                                  "payout": 94.46,
                                  "bookmaker_id": 3,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 55,
                                  "away": 3.26,
                                  "home": 1.33,
                                  "payout": 94.46,
                                  "bookmaker_id": 12,
                                  "away_movement": -1,
                                  "home_movement": 1
                                }
                              ],
                              "type": "+2.5/-2.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 29,
                                  "away": 1.18,
                                  "home": 4.3,
                                  "payout": 92.59,
                                  "bookmaker_id": 2,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 30,
                                  "away": 1.17,
                                  "home": 4.42,
                                  "payout": 92.51,
                                  "bookmaker_id": 34,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 31,
                                  "away": 1.18,
                                  "home": 4.3,
                                  "payout": 92.59,
                                  "bookmaker_id": 12,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "-2.5/+2.5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 56,
                                  "away": 3.64,
                                  "home": 1.24,
                                  "payout": 92.49,
                                  "bookmaker_id": 2,
                                  "away_movement": 0,
                                  "home_movement": 0
                                },
                                {
                                  "id": 57,
                                  "away": 3.83,
                                  "home": 1.22,
                                  "payout": 92.53,
                                  "bookmaker_id": 34,
                                  "away_movement": -1,
                                  "home_movement": 1
                                },
                                {
                                  "id": 58,
                                  "away": 3.64,
                                  "home": 1.24,
                                  "payout": 92.49,
                                  "bookmaker_id": 12,
                                  "away_movement": 0,
                                  "home_movement": 0
                                }
                              ],
                              "type": "+3/-3"
                            }
                          ],
                          "period_type": "Full Time"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Asian Handicaps"
      }
    },
    "/odds/home-draw-away": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Home Draw Away",
        "description": "This endpoint allows you to retrieve the odds from home draw away 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://baseball.sportmicro.com/odds/home-draw-away?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/home-draw-away?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/home-draw-away?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.home-draw-away.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.home-draw-away.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/home-draw-away"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 94214,
                      "is_live": false,
                      "periods": [
                        {
                          "period_type": "Full Time",
                          "odds": [
                            {
                              "id": 1,
                              "bookmaker_id": 17,
                              "home": 2.1,
                              "home_movement": -1,
                              "draw": 7.5,
                              "draw_movement": -1,
                              "away": 2.05,
                              "away_movement": 1,
                              "payout": 91.13
                            },
                            {
                              "id": 2,
                              "bookmaker_id": 19,
                              "home": 2.1,
                              "home_movement": 0,
                              "draw": 7.5,
                              "draw_movement": 0,
                              "away": 2.05,
                              "away_movement": 0,
                              "payout": 91.13
                            }
                          ]
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Home Draw Away"
      }
    },
    "/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://baseball.sportmicro.com/odds/correct-score?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.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://baseball.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": 94458,
                      "is_live": false,
                      "periods": [
                        {
                          "odds": [
                            {
                              "odds": [
                                {
                                  "id": 1185,
                                  "score": 41,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "0 : 1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1211,
                                  "score": 41,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "0 : 2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1212,
                                  "score": 51,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "0 : 4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1209,
                                  "score": 61,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "0 : 5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1208,
                                  "score": 71,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "0 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1186,
                                  "score": 81,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "0 : 7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1187,
                                  "score": 91,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "0 : 8"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1191,
                                  "score": 91,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "0 : 9"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1214,
                                  "score": 29,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "1 : 0"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1188,
                                  "score": 26,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "1 : 2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1210,
                                  "score": 29,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "1 : 3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1189,
                                  "score": 34,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "1 : 4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1190,
                                  "score": 41,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "1 : 5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1192,
                                  "score": 51,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "1 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1193,
                                  "score": 67,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "1 : 7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1194,
                                  "score": 81,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "1 : 8"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1195,
                                  "score": 101,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "1 : 9"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1196,
                                  "score": 31,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "2 : 0"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1197,
                                  "score": 18,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "2 : 1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1198,
                                  "score": 23,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "2 : 3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1206,
                                  "score": 29,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "2 : 4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1205,
                                  "score": 34,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "2 : 5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1207,
                                  "score": 51,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "2 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1199,
                                  "score": 61,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "2 : 7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1200,
                                  "score": 71,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "2 : 8"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1201,
                                  "score": 91,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "2 : 9"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1202,
                                  "score": 23,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "3 : 1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1204,
                                  "score": 16,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "3 : 2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1213,
                                  "score": 26,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "3 : 4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1203,
                                  "score": 34,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "3 : 5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1220,
                                  "score": 46,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "3 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1221,
                                  "score": 51,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "3 : 7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1215,
                                  "score": 71,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "3 : 8"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1216,
                                  "score": 91,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "3 : 9"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1219,
                                  "score": 34,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "4 : 0"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1217,
                                  "score": 29,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "4 : 1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1225,
                                  "score": 26,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "4 : 2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1218,
                                  "score": 19,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "4 : 3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1236,
                                  "score": 34,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "4 : 5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1222,
                                  "score": 41,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "4 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1223,
                                  "score": 56,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "4 : 7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1226,
                                  "score": 67,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "4 : 8"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1238,
                                  "score": 91,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "4 : 9"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1224,
                                  "score": 41,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "5 : 0"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1228,
                                  "score": 31,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "5 : 1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1227,
                                  "score": 29,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "5 : 2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1231,
                                  "score": 29,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "5 : 3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1237,
                                  "score": 23,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "5 : 4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1234,
                                  "score": 46,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "5 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1229,
                                  "score": 56,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "5 : 7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1230,
                                  "score": 76,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "5 : 8"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1233,
                                  "score": 91,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "5 : 9"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1232,
                                  "score": 51,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "6 : 0"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1235,
                                  "score": 41,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "6 : 1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1239,
                                  "score": 36,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "6 : 2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1240,
                                  "score": 36,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "6 : 3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1242,
                                  "score": 39,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "6 : 4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1241,
                                  "score": 34,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "6 : 5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1243,
                                  "score": 61,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "6 : 7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1244,
                                  "score": 81,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "6 : 8"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1245,
                                  "score": 91,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "6 : 9"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1246,
                                  "score": 56,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "7 : 0"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1249,
                                  "score": 46,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "7 : 1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1247,
                                  "score": 41,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "7 : 2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1248,
                                  "score": 46,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "7 : 3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1250,
                                  "score": 51,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "7 : 4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1251,
                                  "score": 56,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "7 : 5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1254,
                                  "score": 46,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "7 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1255,
                                  "score": 91,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "7 : 8"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1252,
                                  "score": 101,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "7 : 9"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1256,
                                  "score": 67,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "8 : 0"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1253,
                                  "score": 56,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "8 : 1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1257,
                                  "score": 51,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "8 : 2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1260,
                                  "score": 56,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "8 : 3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1258,
                                  "score": 61,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "8 : 4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1259,
                                  "score": 71,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "8 : 5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1261,
                                  "score": 76,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "8 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1262,
                                  "score": 71,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "8 : 7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1263,
                                  "score": 101,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "8 : 9"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1264,
                                  "score": 81,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "9 : 0"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1265,
                                  "score": 67,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "9 : 1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1266,
                                  "score": 61,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "9 : 2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1267,
                                  "score": 67,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "9 : 3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1268,
                                  "score": 76,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "9 : 4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1269,
                                  "score": 91,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "9 : 5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1270,
                                  "score": 101,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "9 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1271,
                                  "score": 101,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "9 : 7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 1272,
                                  "score": 101,
                                  "bookmaker_id": 17,
                                  "score_movement": 0
                                }
                              ],
                              "type": "9 : 8"
                            }
                          ],
                          "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://baseball.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.leagues.id": {
        "name": "id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.60"
        },
        "example": "eq.60"
      },
      "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.40"
        },
        "example": "eq.40"
      },
      "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.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.60"
        },
        "example": "eq.60"
      },
      "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.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.players.id": {
        "name": "id",
        "description": "The id of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.115"
        },
        "example": "eq.115"
      },
      "rowFilter.players.name": {
        "name": "name",
        "description": "The name of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players.first_name": {
        "name": "first_name",
        "description": "The first name of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players.last_name": {
        "name": "last_name",
        "description": "The last name of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players.nickname": {
        "name": "nickname",
        "description": "The short name of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players.player_position": {
        "name": "player_position",
        "description": "The position of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players.player_jersey_number": {
        "name": "player_jersey_number",
        "description": "The jersey number of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players.player_height": {
        "name": "player_height",
        "description": "The height of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.players.preferred_foot": {
        "name": "preferred_foot",
        "description": "The preferred foot of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.players.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players.country_hash_image": {
        "name": "country_hash_image",
        "description": "The name image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players.shirt_number": {
        "name": "shirt_number",
        "description": "The shirt number of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.players.date_of_birth": {
        "name": "date_of_birth",
        "description": "The date of the player's birth",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.players.market_value": {
        "name": "market_value",
        "description": "The proposed market value of the player `EUR`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.players.market_currency": {
        "name": "market_currency",
        "description": "The proposed market currency",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.players.team_id": {
        "name": "team_id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.players.team_name": {
        "name": "team_name",
        "description": "The name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players.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.players.retired_status": {
        "name": "retired_status",
        "description": "Retired",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.players.cricket_info_id": {
        "name": "cricket_info_id",
        "description": "The info id of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-lineups.id": {
        "name": "id",
        "description": "The id of the lineup",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.matches-lineups.confirmed": {
        "name": "confirmed",
        "description": "If the lineup is confirmed",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.matches-lineups.home_team": {
        "name": "home_team",
        "description": "The lineup of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-lineups.away_team": {
        "name": "away_team",
        "description": "The lineup of the away team",
        "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.40"
        },
        "example": "eq.40"
      },
      "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.VE"
        },
        "example": "eq.VE"
      },
      "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.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.coaches.id": {
        "name": "id",
        "description": "The id of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.29"
        },
        "example": "eq.29"
      },
      "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",
          "example": "eq.362"
        },
        "example": "eq.362"
      },
      "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.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.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.149"
        },
        "example": "eq.149"
      },
      "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.arenas.id": {
        "name": "id",
        "description": "The id of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.993"
        },
        "example": "eq.993"
      },
      "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.23"
        },
        "example": "eq.23"
      },
      "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.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.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.223"
        },
        "example": "eq.223"
      },
      "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.matches-players-statistics.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1174"
        },
        "example": "eq.1174"
      },
      "rowFilter.matches-players-statistics.team_id": {
        "name": "team_id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.8599"
        },
        "example": "eq.8599"
      },
      "rowFilter.matches-players-statistics.player_id": {
        "name": "player_id",
        "description": "The id of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.10707"
        },
        "example": "eq.10707"
      },
      "rowFilter.matches-players-statistics.position": {
        "name": "position",
        "description": "The position of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-players-statistics.batting_fly_outs": {
        "name": "batting_fly_outs",
        "description": "The number of batting fly outs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_ground_outs": {
        "name": "batting_ground_outs",
        "description": "The number of batting ground outs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_runs": {
        "name": "batting_runs",
        "description": "The number of batting runs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_doubles": {
        "name": "batting_doubles",
        "description": "The number of batting doubles made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_triples": {
        "name": "batting_triples",
        "description": "The number of batting triples made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_home_runs": {
        "name": "batting_home_runs",
        "description": "The number of batting home runs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_strike_outs": {
        "name": "batting_strike_outs",
        "description": "The number of batting strike outs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_base_on_balls": {
        "name": "batting_base_on_balls",
        "description": "The number of batting base on balls made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_hits": {
        "name": "batting_hits",
        "description": "The number of batting hits made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_hit_by_pitch": {
        "name": "batting_hit_by_pitch",
        "description": "The number of batting hit by pitch by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_rbi": {
        "name": "batting_rbi",
        "description": "The number of batting rbi made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_caught_stealing": {
        "name": "batting_caught_stealing",
        "description": "The number of batting caught stealing by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_stolen_bases": {
        "name": "batting_stolen_bases",
        "description": "The number of batting stolen bases made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_at_bats": {
        "name": "batting_at_bats",
        "description": "The number of batting at bats made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_left_on_base": {
        "name": "batting_left_on_base",
        "description": "The number of batting left on base made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_sac_bunts": {
        "name": "batting_sac_bunts",
        "description": "The number of batting sac bunts made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_sac_flies": {
        "name": "batting_sac_flies",
        "description": "The number of batting sac flies made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_average": {
        "name": "batting_average",
        "description": "The number of batting average made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-players-statistics.batting_list_index": {
        "name": "batting_list_index",
        "description": "The number of batting list index made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.id": {
        "name": "id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "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"
        }
      },
      "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.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.matches-by-date.date": {
        "name": "date",
        "description": "The date",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.2003-03-30"
        },
        "example": "eq.2003-03-30"
      },
      "rowFilter.matches-by-date.matches": {
        "name": "matches",
        "description": "The matches",
        "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.60"
        },
        "example": "eq.60"
      },
      "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.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.23"
        },
        "example": "eq.23"
      },
      "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.matches-by-date-league.date": {
        "name": "date",
        "description": "The date",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.2003-03-30"
        },
        "example": "eq.2003-03-30"
      },
      "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.1806"
        },
        "example": "eq.1806"
      },
      "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.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.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.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.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.60"
        },
        "example": "eq.60"
      },
      "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.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.40"
        },
        "example": "eq.40"
      },
      "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.seasons-rounds.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.180"
        },
        "example": "eq.180"
      },
      "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.seasons-info.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.92"
        },
        "example": "eq.92"
      },
      "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.seasons-groups.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.253"
        },
        "example": "eq.253"
      },
      "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.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.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"
        }
      },
      "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.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.60"
        },
        "example": "eq.60"
      },
      "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.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.60"
        },
        "example": "eq.60"
      },
      "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.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.60"
        },
        "example": "eq.60"
      },
      "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.leagues-by-date.date": {
        "name": "date",
        "description": "The date",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.2003-03-30"
        },
        "example": "eq.2003-03-30"
      },
      "rowFilter.leagues-by-date.leagues": {
        "name": "leagues",
        "description": "The leagues",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "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.177874"
        },
        "example": "eq.177874"
      },
      "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.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.seasons.id": {
        "name": "id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.272"
        },
        "example": "eq.272"
      },
      "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.149"
        },
        "example": "eq.149"
      },
      "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.coaches-by-country.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.2"
        },
        "example": "eq.2"
      },
      "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.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.40"
        },
        "example": "eq.40"
      },
      "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.players-statistics.id": {
        "name": "id",
        "description": "The id of the player's statistics",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.players-statistics.player_id": {
        "name": "player_id",
        "description": "The id of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.6411"
        },
        "example": "eq.6411"
      },
      "rowFilter.players-statistics.team_id": {
        "name": "team_id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.players-statistics.team_name": {
        "name": "team_name",
        "description": "The name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players-statistics.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.players-statistics.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1806"
        },
        "example": "eq.1806"
      },
      "rowFilter.players-statistics.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players-statistics.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.players-statistics.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.4271"
        },
        "example": "eq.4271"
      },
      "rowFilter.players-statistics.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players-statistics.type": {
        "name": "type",
        "description": "The type of the statistics",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.regularSeason"
        },
        "example": "eq.regularSeason"
      },
      "rowFilter.players-statistics.games_played_hitting": {
        "name": "games_played_hitting",
        "description": "The number of hitting games played by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.ground_outs_hitting": {
        "name": "ground_outs_hitting",
        "description": "The number of hitting ground outs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.air_outs_hitting": {
        "name": "air_outs_hitting",
        "description": "The number of hitting air outs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.runs_hitting": {
        "name": "runs_hitting",
        "description": "The number of hitting runs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.doubles_hitting": {
        "name": "doubles_hitting",
        "description": "The number of hitting doubles made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.triples_hitting": {
        "name": "triples_hitting",
        "description": "The number of hitting triples made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.home_runs_hitting": {
        "name": "home_runs_hitting",
        "description": "The number of hitting home runs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.strike_outs_hitting": {
        "name": "strike_outs_hitting",
        "description": "The number of hitting strike outs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.walks_hitting": {
        "name": "walks_hitting",
        "description": "The number of hitting base on balls made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.intentional_walks_hitting": {
        "name": "intentional_walks_hitting",
        "description": "The number of hitting intentional walks made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.hits_hitting": {
        "name": "hits_hitting",
        "description": "The number of hitting hits made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.hit_by_pitch_hitting": {
        "name": "hit_by_pitch_hitting",
        "description": "The number of hitting hit by pitch made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.average_hitting": {
        "name": "average_hitting",
        "description": "The number of hitting avg made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.at_bats_hitting": {
        "name": "at_bats_hitting",
        "description": "The number of hitting at bats made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.on_base_percentage_hitting": {
        "name": "on_base_percentage_hitting",
        "description": "The number of hitting obp made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.slugging_percentage_hitting": {
        "name": "slugging_percentage_hitting",
        "description": "The number of hitting slg made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.on_base_plus_slugging_hitting": {
        "name": "on_base_plus_slugging_hitting",
        "description": "The number of hitting ops made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.caught_stealing_hitting": {
        "name": "caught_stealing_hitting",
        "description": "The number of hitting caught stealing made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.stolen_bases_hitting": {
        "name": "stolen_bases_hitting",
        "description": "The number of hitting stolen bases made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.ground_into_double_play_hitting": {
        "name": "ground_into_double_play_hitting",
        "description": "The number of hitting ground into double play made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.number_of_pitches_hitting": {
        "name": "number_of_pitches_hitting",
        "description": "The hitting number of itches made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.plate_appearances_hitting": {
        "name": "plate_appearances_hitting",
        "description": "The number of hitting plate appearances by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.total_bases_hitting": {
        "name": "total_bases_hitting",
        "description": "The number of hitting total bases made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.runs_batted_in_hitting": {
        "name": "runs_batted_in_hitting",
        "description": "The number of hitting rbi made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.left_on_base_hitting": {
        "name": "left_on_base_hitting",
        "description": "The number of hitting left on base made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.sacrifice_bunts_hitting": {
        "name": "sacrifice_bunts_hitting",
        "description": "The number of hitting sac bunts made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.sacrifice_flies_hitting": {
        "name": "sacrifice_flies_hitting",
        "description": "The number of hitting sac flies made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.babip_hitting": {
        "name": "babip_hitting",
        "description": "The number of hitting babip made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.ground_outs_to_airouts_hitting": {
        "name": "ground_outs_to_airouts_hitting",
        "description": "The number of hitting ground outs to air outs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.games_played_pitching": {
        "name": "games_played_pitching",
        "description": "The number of pitching games played by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.games_started_pitching": {
        "name": "games_started_pitching",
        "description": "The number of pitching games started by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.ground_outs_pitching": {
        "name": "ground_outs_pitching",
        "description": "The number of pitching ground outs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.air_outs_pitching": {
        "name": "air_outs_pitching",
        "description": "The number of pitching air outs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.runs_pitching": {
        "name": "runs_pitching",
        "description": "The number of pitching runs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.doubles_pitching": {
        "name": "doubles_pitching",
        "description": "The number of pitching doubles made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.triples_pitching": {
        "name": "triples_pitching",
        "description": "The number of pitching triples made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.home_runs_pitching": {
        "name": "home_runs_pitching",
        "description": "The number of pitching home runs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.strike_outs_pitching": {
        "name": "strike_outs_pitching",
        "description": "The number of pitching strike outs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.walks_pitching": {
        "name": "walks_pitching",
        "description": "The number of pitching base on balls made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.intentional_walks_pitching": {
        "name": "intentional_walks_pitching",
        "description": "The number of pitching intentional walks made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.hits_pitching": {
        "name": "hits_pitching",
        "description": "The number of pitching hits made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.hit_by_pitch_pitching": {
        "name": "hit_by_pitch_pitching",
        "description": "The number of pitching hit by pitch made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.average_pitching": {
        "name": "average_pitching",
        "description": "The number of pitching avg made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.at_bats_pitching": {
        "name": "at_bats_pitching",
        "description": "The number of pitching at bats made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.on_base_percentage_pitching": {
        "name": "on_base_percentage_pitching",
        "description": "The number of pitching obp made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.slugging_percentage_pitching": {
        "name": "slugging_percentage_pitching",
        "description": "The number of pitching slg made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.on_base_plus_slugging_pitching": {
        "name": "on_base_plus_slugging_pitching",
        "description": "The number of pitching ops made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.caught_stealing_pitching": {
        "name": "caught_stealing_pitching",
        "description": "The number of pitching caught stealing made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.stolen_bases_pitching": {
        "name": "stolen_bases_pitching",
        "description": "The number of pitching stolen bases made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.stolen_base_percentage_pitching": {
        "name": "stolen_base_percentage_pitching",
        "description": "The number of pitching stolen base made by the player in `%`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.ground_into_double_play_pitching": {
        "name": "ground_into_double_play_pitching",
        "description": "The number of pitching ground into double play made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.number_of_pitches_pitching": {
        "name": "number_of_pitches_pitching",
        "description": "The number of pitching number of pitches made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.earned_run_average_pitching": {
        "name": "earned_run_average_pitching",
        "description": "The number of pitching era made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.innings_pitched_pitching": {
        "name": "innings_pitched_pitching",
        "description": "The number of pitching innings pitched by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.wins_pitching": {
        "name": "wins_pitching",
        "description": "The number of pitching wins made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.losses_pitching": {
        "name": "losses_pitching",
        "description": "The number of pitching losses made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.saves_pitching": {
        "name": "saves_pitching",
        "description": "The number of pitching saves made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.save_opportunities_pitching": {
        "name": "save_opportunities_pitching",
        "description": "The number of pitching save opportunities made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.holds_pitching": {
        "name": "holds_pitching",
        "description": "The number of pitching holds made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.earned_runs_pitching": {
        "name": "earned_runs_pitching",
        "description": "The number of pitching earned runs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.walks_hits_per_inning_pitching": {
        "name": "walks_hits_per_inning_pitching",
        "description": "The number of pitching whip made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.batters_faced_pitching": {
        "name": "batters_faced_pitching",
        "description": "The number of pitching batters faced made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.games_pitched_pitching": {
        "name": "games_pitched_pitching",
        "description": "The number of pitching games pitched made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.complete_games_pitching": {
        "name": "complete_games_pitching",
        "description": "The number of pitching complete games made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.shutouts_pitching": {
        "name": "shutouts_pitching",
        "description": "The number of pitching shutouts made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.strikes_pitching": {
        "name": "strikes_pitching",
        "description": "The number of pitching strikes made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.strike_percentage_pitching": {
        "name": "strike_percentage_pitching",
        "description": "The number of pitching strike made by the player in `%`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.hit_batsmen_pitching": {
        "name": "hit_batsmen_pitching",
        "description": "The number of pitching hit batsmen made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.balks_pitching": {
        "name": "balks_pitching",
        "description": "The number of pitching balks made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.wild_pitches_pitching": {
        "name": "wild_pitches_pitching",
        "description": "The number of pitching wild pitches made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.pickoffs_pitching": {
        "name": "pickoffs_pitching",
        "description": "The number of pitching pick offs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.ground_outs_to_airouts_pitching": {
        "name": "ground_outs_to_airouts_pitching",
        "description": "The number of pitching ground outs to air outs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.win_percentage_pitching": {
        "name": "win_percentage_pitching",
        "description": "The number of pitching win made by the player in `%`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.pitches_per_inning_pitching": {
        "name": "pitches_per_inning_pitching",
        "description": "The number of pitching pitches per inning made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.games_finished_pitching": {
        "name": "games_finished_pitching",
        "description": "The number of pitching games finished by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.strikeout_walk_ratio_pitching": {
        "name": "strikeout_walk_ratio_pitching",
        "description": "The number of pitching strikeout walk ratio made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.strikeouts_per_9_innings_pitching": {
        "name": "strikeouts_per_9_innings_pitching",
        "description": "The number of pitching strikeouts per 9 innings made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.walks_per_9_innings_pitching": {
        "name": "walks_per_9_innings_pitching",
        "description": "The number of pitching walks per 9 innings made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.hits_per_9_innings_pitching": {
        "name": "hits_per_9_innings_pitching",
        "description": "The number of pitching hits per 9 innings made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.runs_scored_per_9_innings_pitching": {
        "name": "runs_scored_per_9_innings_pitching",
        "description": "The number of pitching runs scored per 9 innings made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.home_runs_per_9_innings_pitching": {
        "name": "home_runs_per_9_innings_pitching",
        "description": "The number of pitching home runs per 9 innings made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.inherited_runners_pitching": {
        "name": "inherited_runners_pitching",
        "description": "The number of pitching inherited runners made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.inherited_runners_scored_pitching": {
        "name": "inherited_runners_scored_pitching",
        "description": "The number of pitching inherited runners scored by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.sacrifice_bunts_pitching": {
        "name": "sacrifice_bunts_pitching",
        "description": "The number of pitching sac bunts made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.sacrifice_flies_pitching": {
        "name": "sacrifice_flies_pitching",
        "description": "The number of pitching sac flies made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.assists_fielding": {
        "name": "assists_fielding",
        "description": "The number of fielding assists made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.put_outs_fielding": {
        "name": "put_outs_fielding",
        "description": "The number of fielding put outs made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.errors_fielding": {
        "name": "errors_fielding",
        "description": "The number of fielding errors made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.chances_fielding": {
        "name": "chances_fielding",
        "description": "The number of fielding chances made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.fielding_fielding": {
        "name": "fielding_fielding",
        "description": "The number of fielding fielding made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.range_factor_per_game_fielding": {
        "name": "range_factor_per_game_fielding",
        "description": "The number of fielding range factor per game made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.innings_fielding": {
        "name": "innings_fielding",
        "description": "The number of fielding innings made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.games_fielding": {
        "name": "games_fielding",
        "description": "The number of fielding games made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.games_started_fielding": {
        "name": "games_started_fielding",
        "description": "The number of fielding games started by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.double_plays_fielding": {
        "name": "double_plays_fielding",
        "description": "The number of fielding double plays made by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.players-statistics.total_appearances": {
        "name": "total_appearances",
        "description": "The number of appearances by the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.cup-bracket.id": {
        "name": "id",
        "description": "The id of the cup bracket",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.9"
        },
        "example": "eq.9"
      },
      "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.74"
        },
        "example": "eq.74"
      },
      "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.65"
        },
        "example": "eq.65"
      },
      "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-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.matches-statistics.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.39"
        },
        "example": "eq.39"
      },
      "rowFilter.matches-statistics.statistics": {
        "name": "statistics",
        "description": "The statistics of the match",
        "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.78"
        },
        "example": "eq.78"
      },
      "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",
          "example": "eq.74"
        },
        "example": "eq.74"
      },
      "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",
          "example": "eq.111"
        },
        "example": "eq.111"
      },
      "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.127"
        },
        "example": "eq.127"
      },
      "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.standings.id": {
        "name": "id",
        "description": "The id of the standing",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.33"
        },
        "example": "eq.33"
      },
      "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.total"
        },
        "example": "eq.total"
      },
      "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.63"
        },
        "example": "eq.63"
      },
      "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.60"
        },
        "example": "eq.60"
      },
      "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.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.63"
        },
        "example": "eq.63"
      },
      "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.127"
        },
        "example": "eq.127"
      },
      "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",
          "example": "eq.38"
        },
        "example": "eq.38"
      },
      "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.40"
        },
        "example": "eq.40"
      },
      "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",
          "example": "eq.60"
        },
        "example": "eq.60"
      },
      "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",
          "example": "eq.65"
        },
        "example": "eq.65"
      },
      "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.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.1180"
        },
        "example": "eq.1180"
      },
      "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.US"
        },
        "example": "eq.US"
      },
      "rowFilter.matches-tv-channels.tv_channels": {
        "name": "tv_channels",
        "description": "The tv channels",
        "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.92"
        },
        "example": "eq.92"
      },
      "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.players-by-team.team_id": {
        "name": "team_id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.362"
        },
        "example": "eq.362"
      },
      "rowFilter.players-by-team.team_name": {
        "name": "team_name",
        "description": "The name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.players-by-team.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.players-by-team.players": {
        "name": "players",
        "description": "The players",
        "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.165538"
        },
        "example": "eq.165538"
      },
      "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.tournaments.id": {
        "name": "id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.20875"
        },
        "example": "eq.20875"
      },
      "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.7183"
        },
        "example": "eq.7183"
      },
      "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.72"
        },
        "example": "eq.72"
      },
      "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.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.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.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.94214"
        },
        "example": "eq.94214"
      },
      "rowFilter.coverage-live.home_away": {
        "name": "home_away",
        "description": "Coverage of home_away",
        "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.european_handicap": {
        "name": "european_handicap",
        "description": "Coverage of european_handicap",
        "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.coverage-live.home_draw_away": {
        "name": "home_draw_away",
        "description": "Coverage of home_draw_away",
        "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.half_time_full_time": {
        "name": "half_time_full_time",
        "description": "Coverage of half_time_full_time",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.half-time-full-time.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.94214"
        },
        "example": "eq.94214"
      },
      "rowFilter.half-time-full-time.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.false"
        },
        "example": "eq.false"
      },
      "rowFilter.half-time-full-time.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "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",
          "example": "eq.94214"
        },
        "example": "eq.94214"
      },
      "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",
          "example": "eq.false"
        },
        "example": "eq.false"
      },
      "rowFilter.odd-even.periods": {
        "name": "periods",
        "description": "Periods",
        "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.home-away-movements.home_away_id": {
        "name": "home_away_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.home-away-movements.movements": {
        "name": "movements",
        "description": "The movements",
        "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.european-handicap.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.94214"
        },
        "example": "eq.94214"
      },
      "rowFilter.european-handicap.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.false"
        },
        "example": "eq.false"
      },
      "rowFilter.european-handicap.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.94214"
        },
        "example": "eq.94214"
      },
      "rowFilter.coverage.home_away": {
        "name": "home_away",
        "description": "Coverage of home_away",
        "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.european_handicap": {
        "name": "european_handicap",
        "description": "Coverage of european_handicap",
        "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.coverage.home_draw_away": {
        "name": "home_draw_away",
        "description": "Coverage of home_draw_away",
        "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.half_time_full_time": {
        "name": "half_time_full_time",
        "description": "Coverage of half_time_full_time",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.home-away.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.94214"
        },
        "example": "eq.94214"
      },
      "rowFilter.home-away.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.false"
        },
        "example": "eq.false"
      },
      "rowFilter.home-away.periods": {
        "name": "periods",
        "description": "Periods",
        "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",
          "example": "eq.94214"
        },
        "example": "eq.94214"
      },
      "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",
          "example": "eq.false"
        },
        "example": "eq.false"
      },
      "rowFilter.over-under.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "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",
          "example": "eq.94214"
        },
        "example": "eq.94214"
      },
      "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",
          "example": "eq.false"
        },
        "example": "eq.false"
      },
      "rowFilter.asian-handicaps.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.european-handicap-movements.european_handicap_id": {
        "name": "european_handicap_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.european-handicap-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.home-draw-away.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.94214"
        },
        "example": "eq.94214"
      },
      "rowFilter.home-draw-away.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.false"
        },
        "example": "eq.false"
      },
      "rowFilter.home-draw-away.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.94458"
        },
        "example": "eq.94458"
      },
      "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.false"
        },
        "example": "eq.false"
      },
      "rowFilter.correct-score.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.half-time-full-time-movements.half_time_full_time_id": {
        "name": "half_time_full_time_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.half-time-full-time-movements.movements": {
        "name": "movements",
        "description": "The movements",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.home-draw-away-movements.home_draw_away_id": {
        "name": "home_draw_away_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.home-draw-away-movements.movements": {
        "name": "movements",
        "description": "The movements",
        "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": {
      "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://baseball.sportmicro.com/leagues`<br /><br />Search the leagues by the `name`<br />`https://baseball.sportmicro.com/leagues?name=like.*Championship*`<br /><br />Get leagues based on the **id**<br />`https://baseball.sportmicro.com/leagues?id=eq.{id}`<br /><br />Get leagues from a specific **class_id**<br />`https://baseball.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"
      },
      "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://baseball.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"
      },
      "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://baseball.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"
      },
      "players": {
        "description": "Players\nThis endpoint allows you to retrieve the 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\nYou can get the image of the player by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet players<br />`https://baseball.sportmicro.com/players`<br /><br />Get players based on the **name**<br />`https://baseball.sportmicro.com/players?name=like.*Cristiano*`<br /><br />Get players based on the **id**<br />`https://baseball.sportmicro.com/players?id=eq.{id}`<br /><br />Get players from a specific **team_id**<br />`https://baseball.sportmicro.com/players?team_id=eq.{team_id}`",
        "properties": {
          "id": {
            "description": "The id of the player\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the player",
            "format": "text",
            "type": "string"
          },
          "first_name": {
            "description": "The first name of the player",
            "format": "text",
            "type": "string"
          },
          "last_name": {
            "description": "The last name of the player",
            "format": "text",
            "type": "string"
          },
          "nickname": {
            "description": "The short name of the player",
            "format": "text",
            "type": "string"
          },
          "player_position": {
            "description": "The position of the player",
            "format": "text",
            "type": "string"
          },
          "player_jersey_number": {
            "description": "The jersey number of the player",
            "format": "text",
            "type": "string"
          },
          "player_height": {
            "description": "The height of the player",
            "format": "integer",
            "type": "integer"
          },
          "preferred_foot": {
            "description": "The preferred foot of the player",
            "format": "text",
            "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": "text",
            "type": "string"
          },
          "shirt_number": {
            "description": "The shirt number of the player",
            "format": "integer",
            "type": "integer"
          },
          "date_of_birth": {
            "description": "The date of the player's birth",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "hash_image": {
            "description": "The name of the image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "team_id": {
            "description": "The id of the team\n\nNote:\nThis is a Foreign Key to `teams.id`.<fk table='teams' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "team_name": {
            "description": "The name of the team",
            "format": "text",
            "type": "string"
          },
          "team_hash_image": {
            "description": "The name image of the team",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "retired_status": {
            "description": "Retired",
            "format": "boolean",
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "matches-lineups": {
        "description": "Lineups\nThis endpoint allows you to retrieve the lineups from matches.\nWith this endpoint you can see the lineups from the match. This endpoint also has `confirmed` filed to check if the lineup is confirmed.\n\nFields in lineup:\n\nField | Explanation\n--- | ---\n`formation` | The formation of the lineup\n`player_color_primary` | The primary color of the players\n`player_color_number` | The number color of the players\n`player_color_outline` | The outline color of the players\n`goalkeeper_color_primary` | The primary color of the goalkeeper\n`goalkeeper_color_number` | The number color of the goalkeeper\n`goalkeeper_color_outline` | The outline color of the goalkeeper\n`players` | The players of the lineup\n\nFields in players:\n\nField | Explanation\n--- | ---\n`player_id` | The id of the player\n`shirt_number` | The shirt number of the player\n`jersey_number` | The jersey number of the player\n`position` | The position of the player\n`substitute` | If the player is substituted\n\nResons for missing the match:\n\nId | Reason\n--- | ---\n0 | Other\n1 | Injured\n2 | Ill\n3 | Suspended\n11 | YellowCard\n12 | YellowRedCard\n13 | RedCard\n21 | OnLoan\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 5 minutes.\n**Recommended Calls**: Limit calls to 1 every 5 minutes.\n\n### Use Cases\nGet lineups based on the **id**<br />`https://baseball.sportmicro.com/matches-lineups?id=eq.{id}`",
        "properties": {
          "id": {
            "description": "The id of the lineup\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "confirmed": {
            "description": "If the lineup is confirmed",
            "format": "boolean",
            "type": "boolean"
          },
          "home_team": {
            "description": "The lineup of the home team",
            "format": "jsonb"
          },
          "away_team": {
            "description": "The lineup of the away team",
            "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://baseball.sportmicro.com/classes`<br /><br />Get class based on the **id**<br />`https://baseball.sportmicro.com/classes?id=eq.{id}`<br /><br />Get classes based on the **alpha**<br />`https://baseball.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"
      },
      "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://baseball.sportmicro.com/referees?id=eq.{id}`<br /><br />Get referees from a specific **country_id**<br />`https://baseball.sportmicro.com/referees?country_id=eq.{country_id}`",
        "properties": {},
        "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://baseball.sportmicro.com/coaches?id=eq.{id}`<br /><br />Get coach from a specific **country_id**<br />`https://baseball.sportmicro.com/coaches?country_id=eq.{country_id}`<br /><br />Get coach from a specific **team_id**<br />`https://baseball.sportmicro.com/coaches?team_id=eq.{team_id}`",
        "properties": {
          "id": {
            "description": "The id of the coach\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the coach",
            "format": "text",
            "type": "string"
          },
          "nickname": {
            "description": "The short name of the coach",
            "format": "text",
            "type": "string"
          },
          "default_formation": {
            "description": "The default formation by the coach",
            "format": "text",
            "type": "string"
          },
          "nationality": {
            "description": "The nationality of the coach",
            "format": "text",
            "type": "string"
          },
          "nationality_iso2": {
            "description": "The alpha2 of the nationality",
            "format": "character varying",
            "maxLength": 2,
            "type": "string"
          },
          "date_of_birth": {
            "description": "The date of the coach's birth",
            "format": "timestamp with time zone",
            "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"
          },
          "team_id": {
            "description": "The id of the team\n\nNote:\nThis is a Foreign Key to `teams.id`.<fk table='teams' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "team_name": {
            "description": "The name of the team",
            "format": "text",
            "type": "string"
          },
          "team_hash_image": {
            "description": "The name image of the team",
            "format": "character varying",
            "maxLength": 64,
            "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 hash image of the class",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "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://baseball.sportmicro.com/agg-news-teams?team_id=eq.{team_id}`",
        "properties": {},
        "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://baseball.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"
      },
      "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://baseball.sportmicro.com/arenas`<br /><br />Get arenas based on the **id**<br />`https://baseball.sportmicro.com/arenas?id=eq.{id}`<br /><br />Get arenas from a specific **country_id**<br />`https://baseball.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"
          },
          "operator": {
            "description": "The operator of the arena",
            "format": "text",
            "type": "string"
          },
          "surface": {
            "description": "The surface of the arena",
            "format": "text",
            "type": "string"
          },
          "cost": {
            "description": "The cost of the arena",
            "format": "text",
            "type": "string"
          },
          "dimensions": {
            "description": "The dimensions 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"
      },
      "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://baseball.sportmicro.com/countries`<br /><br />Get country based on the **id**<br />`https://baseball.sportmicro.com/countries?id=eq.{id}`<br /><br />Get countries based on the **alpha**<br />`https://baseball.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"
      },
      "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://baseball.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"
      },
      "matches-players-statistics": {
        "description": "Players statistics\nThis endpoint allows you to retrieve the players statistics 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 minute.\n**Recommended Calls**: Limit calls to 1 every minute.\n\n### Use Cases\nGet player statistics from a specific **match_id**<br />`https://baseball.sportmicro.com/matches-players-statistics?match_id=eq.{match_id}`<br /><br />Get the best player from a specific **match_id**<br />`https://baseball.sportmicro.com/matches-players-statistics?match_id=eq.{match_id}&order=rating.desc&limit=1`<br /><br />Get player statistics from a specific **match_id** and **team_id**<br />`https://baseball.sportmicro.com/matches-players-statistics?match_id=eq.{match_id}&team_id=eq.{team_id}`<br /><br />Get player statistics from a specific **match_id**, **team_id** and **player_id**<br />`https://baseball.sportmicro.com/matches-players-statistics?match_id=eq.{match_id}&team_id=eq.{team_id}&player_id=eq.{player_id}`",
        "properties": {
          "match_id": {
            "description": "The id of the match",
            "format": "integer",
            "type": "integer"
          },
          "team_id": {
            "description": "The id of the team\n\nNote:\nThis is a Foreign Key to `teams.id`.<fk table='teams' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "player_id": {
            "description": "The id of the player\n\nNote:\nThis is a Foreign Key to `players.id`.<fk table='players' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "position": {
            "description": "The position of the player",
            "format": "text",
            "type": "string"
          },
          "batting_fly_outs": {
            "description": "The number of batting fly outs made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_ground_outs": {
            "description": "The number of batting ground outs made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_runs": {
            "description": "The number of batting runs made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_doubles": {
            "description": "The number of batting doubles made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_triples": {
            "description": "The number of batting triples made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_home_runs": {
            "description": "The number of batting home runs made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_strike_outs": {
            "description": "The number of batting strike outs made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_base_on_balls": {
            "description": "The number of batting base on balls made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_hits": {
            "description": "The number of batting hits made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_hit_by_pitch": {
            "description": "The number of batting hit by pitch by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_rbi": {
            "description": "The number of batting rbi made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_caught_stealing": {
            "description": "The number of batting caught stealing by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_stolen_bases": {
            "description": "The number of batting stolen bases made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_at_bats": {
            "description": "The number of batting at bats made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_left_on_base": {
            "description": "The number of batting left on base made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_sac_bunts": {
            "description": "The number of batting sac bunts made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_sac_flies": {
            "description": "The number of batting sac flies made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_average": {
            "description": "The number of batting average made by the player",
            "format": "integer",
            "type": "integer"
          },
          "batting_list_index": {
            "description": "The number of batting list index made by the player",
            "format": "integer",
            "type": "integer"
          }
        },
        "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"
      },
      "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://baseball.sportmicro.com/agg-news-leagues?league_id=eq.{league_id}`",
        "properties": {},
        "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://baseball.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"
      },
      "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://baseball.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"
      },
      "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://baseball.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"
      },
      "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://baseball.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"
      },
      "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://baseball.sportmicro.com/agg-news-players?player_id=eq.{player_id}`",
        "properties": {},
        "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://baseball.sportmicro.com/media-teams?team_id=eq.{team_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://baseball.sportmicro.com/tv-channels`<br /><br />Get tv channels based on the **name**<br />`https://baseball.sportmicro.com/tv-channels?name=like.*Sportklub*`<br /><br />Get tv channels based on the **id**<br />`https://baseball.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"
      },
      "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://baseball.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"
      },
      "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://baseball.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"
      },
      "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://baseball.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"
      },
      "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://baseball.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"
      },
      "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://baseball.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"
      },
      "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://baseball.sportmicro.com/coaches-career?coach_id=eq.{coach_id}`",
        "properties": {},
        "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://baseball.sportmicro.com/media-players?player_id=eq.{player_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://baseball.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"
      },
      "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://baseball.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"
      },
      "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://baseball.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"
      },
      "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://baseball.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"
      },
      "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://baseball.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"
      },
      "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://baseball.sportmicro.com/leagues-info?league_id=eq.{league_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://baseball.sportmicro.com/seasons`<br /><br />Get seasons based on the **id**<br />`https://baseball.sportmicro.com/seasons?id=eq.{id}`<br /><br />Get seasons from a specific **league_id**<br />`https://baseball.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"
      },
      "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://baseball.sportmicro.com/coaches-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"
          },
          "coaches": {
            "description": "The coaches",
            "format": "jsonb"
          }
        },
        "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://baseball.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"
      },
      "players-statistics": {
        "description": "Statistics\nThis endpoint allows you to retrieve the statistics from players.\n\nFor the type argument you can search by: **overall**, **home** and **away**, but **overall** is most common type for this endpoint.\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.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet statistics from a specific **player_id**<br />`https://baseball.sportmicro.com/players-statistics?player_id=eq.{player_id}`<br /><br />Get top 20 players with most goals from a specific **league_id** and **season_id**<br />`https://baseball.sportmicro.com/players-statistics?league_id=eq.{league_id}&season_id=eq.{season_id}&order=goals.desc&limit=20`<br /><br />Get top 20 players with most rating from a specific **league_id** and **season_id**<br />`https://baseball.sportmicro.com/players-statistics?league_id=eq.{league_id}&season_id=eq.{season_id}&order=rating.desc&limit=20`<br /><br />Get top 20 players with most red cards from a specific **league_id** and **season_id**<br />`https://baseball.sportmicro.com/players-statistics?league_id=eq.{league_id}&season_id=eq.{season_id}&order=red_cards.desc&limit=20`<br /><br />Get top 20 players with most yellow cards from a specific **league_id** and **season_id**<br />`https://baseball.sportmicro.com/players-statistics?league_id=eq.{league_id}&season_id=eq.{season_id}&order=yellow_cards.desc&limit=20`<br /><br />Get top 20 players with most assists from a specific **league_id** and **season_id**<br />`https://baseball.sportmicro.com/players-statistics?league_id=eq.{league_id}&season_id=eq.{season_id}&order=assists.desc&limit=20`<br /><br />Get statistics from a specific **player_id** and **team_id**<br />`https://baseball.sportmicro.com/players-statistics?player_id=eq.{player_id}&team_id=eq.{team_id}`<br /><br />Get statistics from a specific **player_id**, **team_id** and **league_id**<br />`https://baseball.sportmicro.com/players-statistics?player_id=eq.{player_id}&team_id=eq.{team_id}&league_id=eq.{league_id}`<br /><br />Get statistics from a specific **player_id**, **team_id**, **league_id** and **season_id**<br />`https://baseball.sportmicro.com/players-statistics?player_id=eq.{player_id}&team_id=eq.{team_id}&league_id=eq.{league_id}&season_id=eq.{season_id}`<br /><br />Get statistics from a specific **player_id**, **team_id**, **league_id**, **season_id** and **type**<br />`https://baseball.sportmicro.com/players-statistics?player_id=eq.{player_id}&team_id=eq.{team_id}&league_id=eq.{league_id}&season_id=eq.{season_id}&type=eq.{type}`",
        "properties": {
          "id": {
            "description": "The id of the player's statistics\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "player_id": {
            "description": "The id of the player\n\nNote:\nThis is a Foreign Key to `players.id`.<fk table='players' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "team_id": {
            "description": "The id of the team\n\nNote:\nThis is a Foreign Key to `teams.id`.<fk table='teams' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "team_name": {
            "description": "The name of the team",
            "format": "text",
            "type": "string"
          },
          "team_hash_image": {
            "description": "The name image of the team",
            "format": "character varying",
            "maxLength": 64,
            "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"
          },
          "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"
          },
          "type": {
            "description": "The type of the statistics",
            "format": "text",
            "type": "string"
          },
          "games_played_hitting": {
            "description": "The number of hitting games played by the player",
            "format": "numeric",
            "type": "number"
          },
          "ground_outs_hitting": {
            "description": "The number of hitting ground outs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "air_outs_hitting": {
            "description": "The number of hitting air outs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "runs_hitting": {
            "description": "The number of hitting runs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "doubles_hitting": {
            "description": "The number of hitting doubles made by the player",
            "format": "numeric",
            "type": "number"
          },
          "triples_hitting": {
            "description": "The number of hitting triples made by the player",
            "format": "numeric",
            "type": "number"
          },
          "home_runs_hitting": {
            "description": "The number of hitting home runs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "strike_outs_hitting": {
            "description": "The number of hitting strike outs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "walks_hitting": {
            "description": "The number of hitting base on balls made by the player",
            "format": "numeric",
            "type": "number"
          },
          "intentional_walks_hitting": {
            "description": "The number of hitting intentional walks made by the player",
            "format": "numeric",
            "type": "number"
          },
          "hits_hitting": {
            "description": "The number of hitting hits made by the player",
            "format": "numeric",
            "type": "number"
          },
          "hit_by_pitch_hitting": {
            "description": "The number of hitting hit by pitch made by the player",
            "format": "numeric",
            "type": "number"
          },
          "average_hitting": {
            "description": "The number of hitting avg made by the player",
            "format": "numeric",
            "type": "number"
          },
          "at_bats_hitting": {
            "description": "The number of hitting at bats made by the player",
            "format": "numeric",
            "type": "number"
          },
          "on_base_percentage_hitting": {
            "description": "The number of hitting obp made by the player",
            "format": "numeric",
            "type": "number"
          },
          "slugging_percentage_hitting": {
            "description": "The number of hitting slg made by the player",
            "format": "numeric",
            "type": "number"
          },
          "on_base_plus_slugging_hitting": {
            "description": "The number of hitting ops made by the player",
            "format": "numeric",
            "type": "number"
          },
          "caught_stealing_hitting": {
            "description": "The number of hitting caught stealing made by the player",
            "format": "numeric",
            "type": "number"
          },
          "stolen_bases_hitting": {
            "description": "The number of hitting stolen bases made by the player",
            "format": "numeric",
            "type": "number"
          },
          "ground_into_double_play_hitting": {
            "description": "The number of hitting ground into double play made by the player",
            "format": "numeric",
            "type": "number"
          },
          "number_of_pitches_hitting": {
            "description": "The hitting number of itches made by the player",
            "format": "numeric",
            "type": "number"
          },
          "plate_appearances_hitting": {
            "description": "The number of hitting plate appearances by the player",
            "format": "numeric",
            "type": "number"
          },
          "total_bases_hitting": {
            "description": "The number of hitting total bases made by the player",
            "format": "numeric",
            "type": "number"
          },
          "runs_batted_in_hitting": {
            "description": "The number of hitting rbi made by the player",
            "format": "numeric",
            "type": "number"
          },
          "left_on_base_hitting": {
            "description": "The number of hitting left on base made by the player",
            "format": "numeric",
            "type": "number"
          },
          "sacrifice_bunts_hitting": {
            "description": "The number of hitting sac bunts made by the player",
            "format": "numeric",
            "type": "number"
          },
          "sacrifice_flies_hitting": {
            "description": "The number of hitting sac flies made by the player",
            "format": "numeric",
            "type": "number"
          },
          "babip_hitting": {
            "description": "The number of hitting babip made by the player",
            "format": "numeric",
            "type": "number"
          },
          "ground_outs_to_airouts_hitting": {
            "description": "The number of hitting ground outs to air outs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "games_played_pitching": {
            "description": "The number of pitching games played by the player",
            "format": "numeric",
            "type": "number"
          },
          "games_started_pitching": {
            "description": "The number of pitching games started by the player",
            "format": "numeric",
            "type": "number"
          },
          "ground_outs_pitching": {
            "description": "The number of pitching ground outs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "air_outs_pitching": {
            "description": "The number of pitching air outs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "runs_pitching": {
            "description": "The number of pitching runs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "doubles_pitching": {
            "description": "The number of pitching doubles made by the player",
            "format": "numeric",
            "type": "number"
          },
          "triples_pitching": {
            "description": "The number of pitching triples made by the player",
            "format": "numeric",
            "type": "number"
          },
          "home_runs_pitching": {
            "description": "The number of pitching home runs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "strike_outs_pitching": {
            "description": "The number of pitching strike outs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "walks_pitching": {
            "description": "The number of pitching base on balls made by the player",
            "format": "numeric",
            "type": "number"
          },
          "intentional_walks_pitching": {
            "description": "The number of pitching intentional walks made by the player",
            "format": "numeric",
            "type": "number"
          },
          "hits_pitching": {
            "description": "The number of pitching hits made by the player",
            "format": "numeric",
            "type": "number"
          },
          "hit_by_pitch_pitching": {
            "description": "The number of pitching hit by pitch made by the player",
            "format": "numeric",
            "type": "number"
          },
          "average_pitching": {
            "description": "The number of pitching avg made by the player",
            "format": "numeric",
            "type": "number"
          },
          "at_bats_pitching": {
            "description": "The number of pitching at bats made by the player",
            "format": "numeric",
            "type": "number"
          },
          "on_base_percentage_pitching": {
            "description": "The number of pitching obp made by the player",
            "format": "numeric",
            "type": "number"
          },
          "slugging_percentage_pitching": {
            "description": "The number of pitching slg made by the player",
            "format": "numeric",
            "type": "number"
          },
          "on_base_plus_slugging_pitching": {
            "description": "The number of pitching ops made by the player",
            "format": "numeric",
            "type": "number"
          },
          "caught_stealing_pitching": {
            "description": "The number of pitching caught stealing made by the player",
            "format": "numeric",
            "type": "number"
          },
          "stolen_bases_pitching": {
            "description": "The number of pitching stolen bases made by the player",
            "format": "numeric",
            "type": "number"
          },
          "stolen_base_percentage_pitching": {
            "description": "The number of pitching stolen base made by the player in `%`",
            "format": "numeric",
            "type": "number"
          },
          "ground_into_double_play_pitching": {
            "description": "The number of pitching ground into double play made by the player",
            "format": "numeric",
            "type": "number"
          },
          "number_of_pitches_pitching": {
            "description": "The number of pitching number of pitches made by the player",
            "format": "numeric",
            "type": "number"
          },
          "earned_run_average_pitching": {
            "description": "The number of pitching era made by the player",
            "format": "numeric",
            "type": "number"
          },
          "innings_pitched_pitching": {
            "description": "The number of pitching innings pitched by the player",
            "format": "numeric",
            "type": "number"
          },
          "wins_pitching": {
            "description": "The number of pitching wins made by the player",
            "format": "numeric",
            "type": "number"
          },
          "losses_pitching": {
            "description": "The number of pitching losses made by the player",
            "format": "numeric",
            "type": "number"
          },
          "saves_pitching": {
            "description": "The number of pitching saves made by the player",
            "format": "numeric",
            "type": "number"
          },
          "save_opportunities_pitching": {
            "description": "The number of pitching save opportunities made by the player",
            "format": "numeric",
            "type": "number"
          },
          "holds_pitching": {
            "description": "The number of pitching holds made by the player",
            "format": "numeric",
            "type": "number"
          },
          "earned_runs_pitching": {
            "description": "The number of pitching earned runs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "walks_hits_per_inning_pitching": {
            "description": "The number of pitching whip made by the player",
            "format": "numeric",
            "type": "number"
          },
          "batters_faced_pitching": {
            "description": "The number of pitching batters faced made by the player",
            "format": "numeric",
            "type": "number"
          },
          "shutouts_pitching": {
            "description": "The number of pitching shutouts made by the player",
            "format": "numeric",
            "type": "number"
          },
          "strikes_pitching": {
            "description": "The number of pitching strikes made by the player",
            "format": "numeric",
            "type": "number"
          },
          "strike_percentage_pitching": {
            "description": "The number of pitching strike made by the player in `%`",
            "format": "numeric",
            "type": "number"
          },
          "hit_batsmen_pitching": {
            "description": "The number of pitching hit batsmen made by the player",
            "format": "numeric",
            "type": "number"
          },
          "balks_pitching": {
            "description": "The number of pitching balks made by the player",
            "format": "numeric",
            "type": "number"
          },
          "wild_pitches_pitching": {
            "description": "The number of pitching wild pitches made by the player",
            "format": "numeric",
            "type": "number"
          },
          "pickoffs_pitching": {
            "description": "The number of pitching pick offs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "ground_outs_to_airouts_pitching": {
            "description": "The number of pitching ground outs to air outs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "win_percentage_pitching": {
            "description": "The number of pitching win made by the player in `%`",
            "format": "numeric",
            "type": "number"
          },
          "pitches_per_inning_pitching": {
            "description": "The number of pitching pitches per inning made by the player",
            "format": "numeric",
            "type": "number"
          },
          "games_finished_pitching": {
            "description": "The number of pitching games finished by the player",
            "format": "numeric",
            "type": "number"
          },
          "strikeout_walk_ratio_pitching": {
            "description": "The number of pitching strikeout walk ratio made by the player",
            "format": "numeric",
            "type": "number"
          },
          "strikeouts_per_9_innings_pitching": {
            "description": "The number of pitching strikeouts per 9 innings made by the player",
            "format": "numeric",
            "type": "number"
          },
          "walks_per_9_innings_pitching": {
            "description": "The number of pitching walks per 9 innings made by the player",
            "format": "numeric",
            "type": "number"
          },
          "hits_per_9_innings_pitching": {
            "description": "The number of pitching hits per 9 innings made by the player",
            "format": "numeric",
            "type": "number"
          },
          "runs_scored_per_9_innings_pitching": {
            "description": "The number of pitching runs scored per 9 innings made by the player",
            "format": "numeric",
            "type": "number"
          },
          "home_runs_per_9_innings_pitching": {
            "description": "The number of pitching home runs per 9 innings made by the player",
            "format": "numeric",
            "type": "number"
          },
          "inherited_runners_pitching": {
            "description": "The number of pitching inherited runners made by the player",
            "format": "numeric",
            "type": "number"
          },
          "inherited_runners_scored_pitching": {
            "description": "The number of pitching inherited runners scored by the player",
            "format": "numeric",
            "type": "number"
          },
          "sacrifice_bunts_pitching": {
            "description": "The number of pitching sac bunts made by the player",
            "format": "numeric",
            "type": "number"
          },
          "sacrifice_flies_pitching": {
            "description": "The number of pitching sac flies made by the player",
            "format": "numeric",
            "type": "number"
          },
          "assists_fielding": {
            "description": "The number of fielding assists made by the player",
            "format": "numeric",
            "type": "number"
          },
          "put_outs_fielding": {
            "description": "The number of fielding put outs made by the player",
            "format": "numeric",
            "type": "number"
          },
          "errors_fielding": {
            "description": "The number of fielding errors made by the player",
            "format": "numeric",
            "type": "number"
          },
          "chances_fielding": {
            "description": "The number of fielding chances made by the player",
            "format": "numeric",
            "type": "number"
          },
          "fielding_fielding": {
            "description": "The number of fielding fielding made by the player",
            "format": "numeric",
            "type": "number"
          },
          "range_factor_per_game_fielding": {
            "description": "The number of fielding range factor per game made by the player",
            "format": "numeric",
            "type": "number"
          },
          "innings_fielding": {
            "description": "The number of fielding innings made by the player",
            "format": "numeric",
            "type": "number"
          },
          "games_started_fielding": {
            "description": "The number of fielding games started by the player",
            "format": "numeric",
            "type": "number"
          },
          "double_plays_fielding": {
            "description": "The number of fielding double plays made by the player",
            "format": "numeric",
            "type": "number"
          },
          "total_appearances": {
            "description": "The number of appearances by the player",
            "format": "numeric",
            "type": "number"
          }
        },
        "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://baseball.sportmicro.com/cup-bracket?id=eq.{id}`<br /><br />Get cups based on the **season_id**<br />`https://baseball.sportmicro.com/cup-bracket?season_id=eq.{season_id}`<br /><br />Get cups based on the **league_id**<br />`https://baseball.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-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://baseball.sportmicro.com/referees-by-country?country_id=eq.{country_id}`",
        "properties": {},
        "type": "object"
      },
      "matches-statistics": {
        "description": "Statistics\nThis endpoint allows you to retrieve the statistics from matches.\n\nTypes of the statistics:\n**Strike outs**, **Batters faced**, **At bats**, **Left on base**, **ERA**, **Earned runs**, **Doubles**, **Base on balls**, **Assists**, **Runs**, **Hits**, **AVG**, **Innings pitched**, **Home runs**, **Triples**, **RBI**, **OPS**, **SLG**, **Put outs**, **OBP**, **Outs**.\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://baseball.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"
      },
      "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 | Canceled\ncanceled | Cancelled\ncanceled | Abandoned\ndelayed | Start delayed\nfinished | AET\nfinished | Awarded\nfinished | Ended\nfinished | Coverage canceled\ninterrupted | Interrupted\nlive | 6th Inning\nlive | 8th Inning\nlive | 7th Inning\nlive | 9th Inning\npostponed | Postponed\nupcoming | Not started\nlive | 1st Inning\nlive | 2nd Inning\nlive | 3rd Inning\nlive | 4th Inning\nlive | 5th Inning\nlive | 10th Inning\n\nFor **scores** we have fields for covering that: `current`, `display`, `period1`, `period2`, `period3`, `period4`, `overtime`, `series`, `innings_id`, `innings_sum_id`, `normaltime`, `period5`, `period6`, `period7`, `team`, `match_id`, `period8`, `period9`.\n\nFor **time extras or injuries** we have fields for covering that: **current_period_start_timestamp**, **match_id**.\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://baseball.sportmicro.com/matches`<br /><br />Get match based on the **id**<br />`https://baseball.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://baseball.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://baseball.sportmicro.com/matches?status_type=eq.{status_type}`<br /><br />Get matches based on the **season_id**<br />`https://baseball.sportmicro.com/matches?season_id=eq.{season_id}`<br /><br />Get matches based on the **tournament_id**<br />`https://baseball.sportmicro.com/matches?tournament_id=eq.{tournament_id}`<br /><br />Get matches based on the **round_id**<br />`https://baseball.sportmicro.com/matches?round_id=eq.{round_id}`<br /><br />Get matches based on the **arena_id**<br />`https://baseball.sportmicro.com/matches?arena_id=eq.{arena_id}`<br /><br />Get matches based on the **referee_id**<br />`https://baseball.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://baseball.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://baseball.sportmicro.com/matches?home_team_id=eq.{home_team_id}`<br /><br />Get away team matches based on the **away_team_id**<br />`https://baseball.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"
          },
          "attendance": {
            "description": "The number of people watching the match at the arena",
            "format": "integer",
            "type": "integer"
          },
          "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"
          },
          "end_time": {
            "description": "The end 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"
          },
          "previous_leg_match_id": {
            "description": "The id of the previous leg match\n\nNote:\nThis is a Foreign Key to `matches.id`.<fk table='matches' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "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"
      },
      "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://baseball.sportmicro.com/standings`<br /><br />Get standing based on the **id**<br />`https://baseball.sportmicro.com/standings?id=eq.{id}`<br /><br />Get standing from a specific **league_id**<br />`https://baseball.sportmicro.com/standings?league_id=eq.{league_id}`<br /><br />Get standing from a specific **league_id** and **season_id**<br />`https://baseball.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://baseball.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"
      },
      "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://baseball.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://baseball.sportmicro.com/teams`<br /><br />Get team based on the **name**<br />`https://baseball.sportmicro.com/teams?name=like.*Real*`<br /><br />Get team based on the **id**<br />`https://baseball.sportmicro.com/teams?id=eq.{id}`<br /><br />Get teams from a specific **country_id**<br />`https://baseball.sportmicro.com/teams?country_id=eq.{country_id}`<br /><br />Get teams from a specific **category_id**<br />`https://baseball.sportmicro.com/teams?category_id=eq.{category_id}`<br /><br />Get teams from a specific **arena_id**<br />`https://baseball.sportmicro.com/teams?arena_id=eq.{arena_id}`<br /><br />Get teams from a specific **coach_id**<br />`https://baseball.sportmicro.com/teams?coach_id=eq.{coach_id}`<br /><br />Get team from a specific **primary_league_id**<br />`https://baseball.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"
          },
          "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"
          },
          "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"
          },
          "coach_id": {
            "description": "The id of the coach\n\nNote:\nThis is a Foreign Key to `coaches.id`.<fk table='coaches' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "coach_name": {
            "description": "The name of the coach",
            "format": "text",
            "type": "string"
          },
          "coach_hash_image": {
            "description": "The name image of the coach",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "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://baseball.sportmicro.com/matches-tv-channels?match_id=eq.{match_id}`<br /><br />Get tv channels from a specific **match_id** and **alpha**<br />`https://baseball.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"
      },
      "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://baseball.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"
      },
      "players-by-team": {
        "description": "Players by team\nThis endpoint allows you to retrieve the players from a specific team.\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 players from a specific **team_id**<br />`https://baseball.sportmicro.com/players-by-team?team_id=eq.{team_id}`",
        "properties": {
          "team_id": {
            "description": "The id of the team\n\nNote:\nThis is a Foreign Key to `teams.id`.<fk table='teams' column='id'/>",
            "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"
          },
          "players": {
            "description": "The players",
            "format": "jsonb"
          }
        },
        "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://baseball.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"
      },
      "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://baseball.sportmicro.com/tournaments`<br /><br />Get tournaments based on the **id**<br />`https://baseball.sportmicro.com/tournaments?id=eq.{id}`<br /><br />Get tournaments from a specific **league_id**<br />`https://baseball.sportmicro.com/tournaments?league_id=eq.{league_id}`<br /><br />Get tournaments from a specific **class_id**<br />`https://baseball.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"
      },
      "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://baseball.sportmicro.com/odds/asian-handicaps-movements?asian_handicap_id=eq.{asian_handicap_id}`",
        "properties": {},
        "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://baseball.sportmicro.com/odds/odd-even-movements?odd_even_id=eq.{odd_even_id}`",
        "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://baseball.sportmicro.com/odds/coverage-live`<br /><br />Get live odds coverage a specific **match_id**<br />`https://baseball.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"
          },
          "home_away": {
            "description": "Coverage of home_away",
            "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"
          },
          "european_handicap": {
            "description": "Coverage of european_handicap",
            "format": "boolean",
            "type": "boolean"
          },
          "odd_even": {
            "description": "Coverage of odd_even",
            "format": "boolean",
            "type": "boolean"
          },
          "home_draw_away": {
            "description": "Coverage of home_draw_away",
            "format": "boolean",
            "type": "boolean"
          },
          "correct_score": {
            "description": "Coverage of correct_score",
            "format": "boolean",
            "type": "boolean"
          },
          "half_time_full_time": {
            "description": "Coverage of half_time_full_time",
            "format": "boolean",
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "half-time-full-time": {
        "description": "Half time full time odds\nThis endpoint allows you to retrieve the odds from half time full time 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://baseball.sportmicro.com/odds/half-time-full-time?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/half-time-full-time?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/half-time-full-time?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"
      },
      "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://baseball.sportmicro.com/odds/odd-even?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.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://baseball.sportmicro.com/odds/odd-even?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"
      },
      "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://baseball.sportmicro.com/odds/over-under-movements?over_under_id=eq.{over_under_id}`",
        "properties": {},
        "type": "object"
      },
      "home-away-movements": {
        "description": "Home away odds movements\nThis endpoint allows you to retrieve the odds movements from home away 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 **home_away_id**<br />`https://baseball.sportmicro.com/odds/home-away-movements?home_away_id=eq.{home_away_id}`",
        "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://baseball.sportmicro.com/odds/bookmakers`<br /><br />Get information about a specific bookmaker based on the **id**<br />`https://baseball.sportmicro.com/odds/bookmakers?id=eq.{id}`<br /><br />Get the most popular bookmakers<br />`https://baseball.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"
      },
      "european-handicap": {
        "description": "European handicap odds\nThis endpoint allows you to retrieve the odds from european handicap 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://baseball.sportmicro.com/odds/european-handicap?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/european-handicap?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/european-handicap?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"
      },
      "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://baseball.sportmicro.com/odds/coverage`<br /><br />Get odds coverages from a specific **match_id**<br />`https://baseball.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"
          },
          "home_away": {
            "description": "Coverage of home_away",
            "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"
          },
          "european_handicap": {
            "description": "Coverage of european_handicap",
            "format": "boolean",
            "type": "boolean"
          },
          "odd_even": {
            "description": "Coverage of odd_even",
            "format": "boolean",
            "type": "boolean"
          },
          "home_draw_away": {
            "description": "Coverage of home_draw_away",
            "format": "boolean",
            "type": "boolean"
          },
          "correct_score": {
            "description": "Coverage of correct_score",
            "format": "boolean",
            "type": "boolean"
          },
          "half_time_full_time": {
            "description": "Coverage of half_time_full_time",
            "format": "boolean",
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "home-away": {
        "description": "Home away odds\nThis endpoint allows you to retrieve the odds from home away 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://baseball.sportmicro.com/odds/home-away?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/home-away?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/home-away?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"
      },
      "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://baseball.sportmicro.com/odds/over-under?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.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://baseball.sportmicro.com/odds/over-under?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"
      },
      "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://baseball.sportmicro.com/odds/asian-handicaps?match_id=eq.{match_id}`<br /><br />Get live odds from a specific **match_id**<br />`https://baseball.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://baseball.sportmicro.com/odds/asian-handicaps?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"
      },
      "european-handicap-movements": {
        "description": "European handicap odds movements\nThis endpoint allows you to retrieve the odds movements from european handicap 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 **european_handicap_id**<br />`https://baseball.sportmicro.com/odds/european-handicap-movements?european_handicap_id=eq.{european_handicap_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://baseball.sportmicro.com/odds/correct-score-movements?correct_score_id=eq.{correct_score_id}`",
        "properties": {},
        "type": "object"
      },
      "home-draw-away": {
        "description": "Home draw away odds\nThis endpoint allows you to retrieve the odds from home draw away 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://baseball.sportmicro.com/odds/home-draw-away?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/home-draw-away?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://baseball.sportmicro.com/odds/home-draw-away?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://baseball.sportmicro.com/odds/correct-score?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://baseball.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://baseball.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"
      },
      "half-time-full-time-movements": {
        "description": "Half time full time odds movements\nThis endpoint allows you to retrieve the odds movements from half time full time 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 **half_time_full_time_id**<br />`https://baseball.sportmicro.com/odds/half-time-full-time-movements?half_time_full_time_id=eq.{half_time_full_time_id}`",
        "properties": {},
        "type": "object"
      },
      "home-draw-away-movements": {
        "description": "Home draw away odds movements\nThis endpoint allows you to retrieve the odds movements from home draw away 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 **home_draw_away_id**<br />`https://baseball.sportmicro.com/odds/home-draw-away-movements?home_draw_away_id=eq.{home_draw_away_id}`",
        "properties": {},
        "type": "object"
      }
    }
  }
}
