UNPKG

openapi-directory

Version:

Building & bundling https://github.com/APIs-guru/openapi-directory for easy use from JS

1 lines 639 kB
{"openapi":"3.0.0","servers":[{"url":"https://api.pandascore.co/","variables":{}}],"info":{"description":"\n# Introduction\n\nWhether you're looking to build an official Pandascore integration for your service, or you just want to build something awesome, [we can help you get started](/home).\n\nThe API works over the HTTPS protocol, and is accessed from the `api.pandascore.co` domain.\n\n- The current endpoint is [https://api.pandascore.co](https://api.pandascore.co).\n- All data is sent and received as JSON by default.\n- Blank fields are included with `null` values instead of being omitted.\n- All timestamps are returned in ISO-8601 format\n\n### About this documentation\n\nClicking on a query parameter like `filter` or `search` will show you the available options: ![filter](/doc/images/query_param_details.jpg)\n\nYou can also click on a response to see the detailed response schema: ![response](/doc/images/response_schema.jpg)\n\n## Events hierarchy\n\nThe PandaScore API allows you to access data about eSports events by using a certain structure detailed below.\n\n**Leagues**\n\nLeagues are the top level events. They don't have a date and represent a regular competition. A League is composed of one or several series. \nSome League of Legends leagues are: _EU LCS, NA LCS, LCK, etc._ \nSome Dota 2 leagues are: _ESL One, GESC, The International, PGL, etc._\n\n**Series**\n\nA Serie represents an occurrence of a league event. \nThe EU LCS league has two series per year: _spring 2017, summer 2017, spring 2016, summer 2016 etc._ \nSome Dota2 Series examples would be: _Changsha Major, Open Bucharest, Frankfurt, i-League Invitational etc._\n\n**Tournaments**\n\nTournaments groups all the matches of a serie under \"stages\" and \"groups\". \nThe tournaments of the EU LCS of summer 2017 are: _Group A, Group B, Playoffs, etc._ \nSome Dota 2 tournaments are: _Group A, Group B, Playoffs, etc._\n\n**Matches**\n\nFinally we have matches which have two players or teams (depending on the played videogame) and several games (the rounds of the match). \nMatches of the group A in the EU LCS of summer 2017 are: _G2 vs FNC, MSF vs NIP, etc._ \nMatches of the group A in the ESL One, Genting tournamnet are: _Lower Round 1, Quarterfinal, Upper Final, etc._ \n\n**Please note that some matches may be listed as \"TBD vs TBD\" if the matchup is not announced yet, for example the date of the Final match is known but the quarterfinal is still being played.** \n![Structure](/doc/images/structure.png)\n\n## Formats\n\n<!-- The API currently supports the JSON format by default, as well as the XML format. Add the desired extension to your request URL in order to get that format. -->\nThe API currently supports the JSON format by default.\n\nOther formats may be added depending on user needs.\n\n## Pagination\n\nThe Pandascore API paginates all resources on the index method.\n\nRequests that return multiple items will be paginated to 50 items by default. You can specify further pages with the `page[number]` parameter. You can also set a custom page size (up to 100) with the `page[size]` parameter.\n\nThe `Link` HTTP response header contains pagination data with `first`, `previous`, `next` and `last` raw page links when available, under the format\n\n```\nLink: <https://api.pandascore.co/{Resource}?page=X+1>; rel=\"next\", <https://api.pandascore.co/{Resource}?page=X-1>; rel=\"prev\", <https://api.pandascore.co/{Resource}?page=1>; rel=\"first\", <https://api.pandascore.co/{Resource}?page=X+n>; rel=\"last\"\n```\n\nThere is also:\n\n* A `X-Page` header field, which contains the current page.\n* A `X-Per-Page` header field, which contains the current pagination length.\n* A `X-Total` header field, which contains the total count of items across all pages.\n\n## Filtering\n\nThe `filter` query parameter can be used to filter a collection by one or several fields for one or several values. The `filter` parameter takes the field to filter as a key, and the values to filter as the value. Multiples values must be comma-separated (`,`).\n\nFor example, the following is a request for all the champions with a name matching Twitch or Brand exactly, but only with 21 armor:\n\n```\nGET /lol/champions?filter[name]=Brand,Twitch&filter[armor]=21&token=YOUR_ACCESS_TOKEN\n```\n\n## Range\n\nThe `range` parameter is a hash that allows filtering fields by an interval.\nOnly values between the given two comma-separated bounds will be returned. The bounds are inclusive.\n\nFor example, the following is a request for all the champions with `hp` within 500 and 1000:\n\n```\nGET /lol/champions?range[hp]=500,1000&token=YOUR_ACCESS_TOKEN\n```\n\n## Search\n\nThe `search` parameter is a bit like the `filter` parameter, but it will return all results where the values **contain** the given parameter.\n\nNote: this only works on strings.\nSearching with integer values is not supported and `filter` or `range` parameters may be better suited for your needs here.\n\nFor example, to get all the champions with a name containing `\"twi\"`:\n\n```\n$ curl -sg -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' 'https://api.pandascore.co/lol/champions?search[name]=twi' | jq -S '.[].name'\n\"Twitch\"\n\"Twisted Fate\"\n```\n\n## Sorting\n\nAll index endpoints support multiple sort fields with comma-separation (`,`); the fields are applied in the order specified.\n\nThe sort order for each field is ascending unless it is prefixed with a minus (U+002D HYPHEN-MINUS, “-“), in which case it is descending.\n\nFor example, `GET /lol/champions?sort=attackdamage,-name&token=YOUR_ACCESS_TOKEN` will return all the champions sorted by attack damage.\nAny champions with the same attack damage will then be sorted by their names in descending alphabetical order.\n\n## Rate limiting\n\nDepending on your current plan, you will have a different rate limit. Your plan and your current request count [are available on your dashboard](https://pandascore.co/settings).\n\nWith the **free plan**, you have a limit of 1000 requests per hour, others plans have a limit of 4000 requests per hour. The number of remaining requests is available in the `X-Rate-Limit-Remaining` response header.\n\nYour API key is included in all the examples on this page, so you can test any example right away. **Only you can see this value.**\n\n# Authentication\n\nThe authentication on the Pandascore API works with access tokens.\n\nAll developers need to [create an account](https://pandascore.co/users/sign_in) before getting started, in order to get an access token. The access token should not be shared.\n\n**Your token can be found and regenerated from [your dashboard](https://pandascore.co/settings).**\n\nThe access token can be passed in the URL with the `token` query string parameter, or in the `Authorization: Bearer` header field.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n","title":"PandaScore REST API for All Videogames","version":"2.23.1","x-apisguru-categories":["entertainment"],"x-logo":{"url":"https://pandascore.co/apple-touch-icon.png?v=JymjnYBGYY"},"x-origin":[{"format":"openapi","url":"blob:https://developers.pandascore.co/blobId","version":"3.0"}],"x-providerName":"pandascore.co"},"security":[{"BearerToken":[]},{"QueryToken":[]}],"tags":[],"paths":{"/additions":{"get":{"description":"Get the latest additions.\n\nThis endpoint only shows unchanged objects.","operationId":"get_additions","parameters":[{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"},{"description":"Filter by result type(s)","in":"query","name":"type","required":false,"schema":{"$ref":"#/components/schemas/type_over_AdditionIncidents"}},{"description":"Filter out older results","in":"query","name":"since","required":false,"schema":{"$ref":"#/components/schemas/IncidentModifiedAt"}},{"description":"Filter by videogame(s)","in":"query","name":"videogame","required":false,"schema":{"$ref":"#/components/schemas/videogame_over_AdditionIncidents"}}],"responses":{"200":{"$ref":"#/components/responses/AdditionIncidents"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"List additions","tags":["Incidents"]}},"/changes":{"get":{"description":"Get the latest updates.\n\nThis endpoint only provides the latest change for an object. It does not keep track of previous changes.","operationId":"get_changes","parameters":[{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"},{"description":"Filter by result type(s)","in":"query","name":"type","required":false,"schema":{"$ref":"#/components/schemas/type_over_ChangeIncidents"}},{"description":"Filter out older results","in":"query","name":"since","required":false,"schema":{"$ref":"#/components/schemas/IncidentModifiedAt"}},{"description":"Filter by videogame(s)","in":"query","name":"videogame","required":false,"schema":{"$ref":"#/components/schemas/videogame_over_ChangeIncidents"}}],"responses":{"200":{"$ref":"#/components/responses/ChangeIncidents"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"List changes","tags":["Incidents"]}},"/deletions":{"get":{"description":"Get the latest deleted documents","operationId":"get_deletions","parameters":[{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"},{"description":"Filter by result type(s)","in":"query","name":"type","required":false,"schema":{"$ref":"#/components/schemas/type_over_DeletionIncidents"}},{"description":"Filter out older results","in":"query","name":"since","required":false,"schema":{"$ref":"#/components/schemas/IncidentModifiedAt"}},{"description":"Filter by videogame(s)","in":"query","name":"videogame","required":false,"schema":{"$ref":"#/components/schemas/videogame_over_DeletionIncidents"}}],"responses":{"200":{"$ref":"#/components/responses/DeletionIncidents"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"List deletions","tags":["Incidents"]}},"/incidents":{"get":{"description":" Get the latest updates and additions.\n\nThis endpoint only provides the latest incident for an object. It does not keep track of previous incidents.","operationId":"get_incidents","parameters":[{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"},{"description":"Filter by result type(s)","in":"query","name":"type","required":false,"schema":{"$ref":"#/components/schemas/type_over_Incidents"}},{"description":"Filter out older results","in":"query","name":"since","required":false,"schema":{"$ref":"#/components/schemas/IncidentModifiedAt"}},{"description":"Filter by videogame(s)","in":"query","name":"videogame","required":false,"schema":{"$ref":"#/components/schemas/videogame_over_Incidents"}}],"responses":{"200":{"$ref":"#/components/responses/Incidents"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"List changes, additions and deletions","tags":["Incidents"]}},"/leagues":{"get":{"description":"List leagues","operationId":"get_leagues","parameters":[{"description":"Options to search results","example":{"name":"Contenders"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Leagues"},"style":"deepObject"},{"description":"Options to sort results","example":["name","-modified_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Leagues"}},{"description":"Options to select results within ranges","example":{"modified_at":["2025-04-15T13:52:08.798Z","2025-04-15T13:52:08.798Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Leagues"},"style":"deepObject"},{"description":"Options to filter results. String fields are case sensitive","explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Leagues"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Leagues"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"List leagues","tags":["Leagues"]}},"/leagues/{league_id_or_slug}":{"get":{"description":"Get a single league by ID or by slug","operationId":"get_leagues_leagueIdOrSlug","parameters":[{"description":"A league ID or slug","in":"path","name":"league_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/LeagueIDOrSlug"}}],"responses":{"200":{"$ref":"#/components/responses/League"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get a league","tags":["Leagues"]}},"/leagues/{league_id_or_slug}/matches":{"get":{"description":"List matches of the given league","operationId":"get_leagues_leagueIdOrSlug_matches","parameters":[{"description":"A league ID or slug","in":"path","name":"league_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/LeagueIDOrSlug"}},{"description":"Options to filter results. String fields are case sensitive","example":{"detailed_stats":true},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Matches"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"Finals"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Matches"},"style":"deepObject"},{"description":"Options to sort results","example":["tournament_id","scheduled_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Matches"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.798Z","2025-04-15T13:52:08.798Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Matches"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Matches"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get matches for a league","tags":["Leagues"]}},"/leagues/{league_id_or_slug}/matches/past":{"get":{"description":"List past matches for the given league","operationId":"get_leagues_leagueIdOrSlug_matches_past","parameters":[{"description":"A league ID or slug","in":"path","name":"league_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/LeagueIDOrSlug"}},{"description":"Options to filter results. String fields are case sensitive","example":{"detailed_stats":true},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Matches"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"Finals"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Matches"},"style":"deepObject"},{"description":"Options to sort results","example":["tournament_id","scheduled_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Matches"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.798Z","2025-04-15T13:52:08.798Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Matches"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Matches"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get past matches for league","tags":["Leagues"]}},"/leagues/{league_id_or_slug}/matches/running":{"get":{"description":"List currently running matches for the given league","operationId":"get_leagues_leagueIdOrSlug_matches_running","parameters":[{"description":"A league ID or slug","in":"path","name":"league_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/LeagueIDOrSlug"}},{"description":"Options to filter results. String fields are case sensitive","example":{"detailed_stats":true},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Matches"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"Finals"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Matches"},"style":"deepObject"},{"description":"Options to sort results","example":["tournament_id","scheduled_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Matches"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.798Z","2025-04-15T13:52:08.798Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Matches"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Matches"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get running matches for league","tags":["Leagues"]}},"/leagues/{league_id_or_slug}/matches/upcoming":{"get":{"description":"List upcoming matches for the given league","operationId":"get_leagues_leagueIdOrSlug_matches_upcoming","parameters":[{"description":"A league ID or slug","in":"path","name":"league_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/LeagueIDOrSlug"}},{"description":"Options to filter results. String fields are case sensitive","example":{"detailed_stats":true},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Matches"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"Finals"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Matches"},"style":"deepObject"},{"description":"Options to sort results","example":["tournament_id","scheduled_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Matches"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.798Z","2025-04-15T13:52:08.798Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Matches"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Matches"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get upcoming matches for league","tags":["Leagues"]}},"/leagues/{league_id_or_slug}/series":{"get":{"description":"List series for the given league","operationId":"get_leagues_leagueIdOrSlug_series","parameters":[{"description":"A league ID or slug","in":"path","name":"league_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/LeagueIDOrSlug"}},{"description":"Options to filter results. String fields are case sensitive","example":{"winner_id":390,"winner_type":"Team"},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Series"},"style":"deepObject"},{"description":"Options to search results","example":{"slug":"lck"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Series"},"style":"deepObject"},{"description":"Options to sort results","example":["year","-modified_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Series"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.798Z","2025-04-15T13:52:08.798Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Series"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Series"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"List series of a league","tags":["Leagues"]}},"/leagues/{league_id_or_slug}/tournaments":{"get":{"description":"List tournaments of the given league","operationId":"get_leagues_leagueIdOrSlug_tournaments","parameters":[{"description":"A league ID or slug","in":"path","name":"league_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/LeagueIDOrSlug"}},{"description":"Options to filter results. String fields are case sensitive","example":{"serie_id":1808},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_ShortTournaments"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"group"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_ShortTournaments"},"style":"deepObject"},{"description":"Options to sort results","example":["serie_id","-begin_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_ShortTournaments"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.798Z","2025-04-15T13:52:08.798Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_ShortTournaments"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/ShortTournaments"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get tournaments for a league","tags":["Leagues"]}},"/lives":{"get":{"description":"List currently running live matches, available from pandascore with live websocket data.","operationId":"get_lives","parameters":[{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Lives"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"List lives matches","tags":["Matches","Lives"]}},"/matches":{"get":{"description":"List matches","operationId":"get_matches","parameters":[{"description":"Options to filter results. String fields are case sensitive","example":{"detailed_stats":true},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Matches"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"Finals"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Matches"},"style":"deepObject"},{"description":"Options to sort results","example":["tournament_id","scheduled_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Matches"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.798Z","2025-04-15T13:52:08.798Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Matches"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Matches"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"List matches","tags":["Matches"]}},"/matches/past":{"get":{"description":"List past matches","operationId":"get_matches_past","parameters":[{"description":"Options to filter results. String fields are case sensitive","example":{"detailed_stats":true},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Matches"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"Finals"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Matches"},"style":"deepObject"},{"description":"Options to sort results","example":["tournament_id","scheduled_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Matches"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.798Z","2025-04-15T13:52:08.798Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Matches"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Matches"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get past matches","tags":["Matches"]}},"/matches/running":{"get":{"description":"List currently running matches","operationId":"get_matches_running","parameters":[{"description":"Options to filter results. String fields are case sensitive","example":{"detailed_stats":true},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Matches"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"Finals"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Matches"},"style":"deepObject"},{"description":"Options to sort results","example":["tournament_id","scheduled_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Matches"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.798Z","2025-04-15T13:52:08.798Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Matches"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Matches"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get running matches","tags":["Matches"]}},"/matches/upcoming":{"get":{"description":"List upcoming matches","operationId":"get_matches_upcoming","parameters":[{"description":"Options to filter results. String fields are case sensitive","example":{"detailed_stats":true},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Matches"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"Finals"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Matches"},"style":"deepObject"},{"description":"Options to sort results","example":["tournament_id","scheduled_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Matches"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.798Z","2025-04-15T13:52:08.798Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Matches"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Matches"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get upcoming matches","tags":["Matches"]}},"/matches/{match_id_or_slug}":{"get":{"description":"Get a single match by ID or by slug","operationId":"get_matches_matchIdOrSlug","parameters":[{"description":"A match ID or slug","in":"path","name":"match_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/MatchIDOrSlug"}}],"responses":{"200":{"$ref":"#/components/responses/Match"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get a match","tags":["Matches"]}},"/matches/{match_id_or_slug}/opponents":{"get":{"description":"List opponents (player or teams) for the given match","operationId":"get_matches_matchIdOrSlug_opponents","parameters":[{"description":"A match ID or slug","in":"path","name":"match_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/MatchIDOrSlug"}}],"responses":{"200":{"$ref":"#/components/responses/MatchOpponentsObject"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get match's opponents","tags":["Matches"]}},"/players":{"get":{"description":"List players","operationId":"get_players","parameters":[{"description":"Options to filter results. String fields are case sensitive","example":{"hometown":"France"},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Players"},"style":"deepObject"},{"description":"Options to search results","example":{"role":"tank"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Players"},"style":"deepObject"},{"description":"Options to sort results","example":["last_name"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Players"}},{"description":"Options to select results within ranges","example":{"name":["f","i"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Players"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Players"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"List players","tags":["Players"]}},"/players/{player_id_or_slug}":{"get":{"description":"Get a single player by ID or by slug","operationId":"get_players_playerIdOrSlug","parameters":[{"description":"A player ID or slug","in":"path","name":"player_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/PlayerIDOrSlug"}}],"responses":{"200":{"$ref":"#/components/responses/Player"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get a player","tags":["Players"]}},"/players/{player_id_or_slug}/matches":{"get":{"description":"List matches for the given player. Only matches with detailed stats. Available with the plan _Historical data_.","operationId":"get_players_playerIdOrSlug_matches","parameters":[{"description":"A player ID or slug","in":"path","name":"player_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/PlayerIDOrSlug"}},{"description":"Options to filter results. String fields are case sensitive","example":{"detailed_stats":true},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Matches"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"Finals"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Matches"},"style":"deepObject"},{"description":"Options to sort results","example":["tournament_id","scheduled_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Matches"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.799Z","2025-04-15T13:52:08.799Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Matches"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Matches"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get matches for a player","tags":["Players"]}},"/series":{"get":{"description":"List series","operationId":"get_series","parameters":[{"description":"Options to filter results. String fields are case sensitive","example":{"winner_id":390,"winner_type":"Team"},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Series"},"style":"deepObject"},{"description":"Options to search results","example":{"slug":"lck"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Series"},"style":"deepObject"},{"description":"Options to sort results","example":["year","-modified_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Series"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.799Z","2025-04-15T13:52:08.799Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Series"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Series"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"List series","tags":["Series"]}},"/series/past":{"get":{"description":"List past series","operationId":"get_series_past","parameters":[{"description":"Options to filter results. String fields are case sensitive","example":{"winner_id":390,"winner_type":"Team"},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Series"},"style":"deepObject"},{"description":"Options to search results","example":{"slug":"lck"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Series"},"style":"deepObject"},{"description":"Options to sort results","example":["year","-modified_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Series"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.799Z","2025-04-15T13:52:08.799Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Series"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Series"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get past series","tags":["Series"]}},"/series/running":{"get":{"description":"List currently running series","operationId":"get_series_running","parameters":[{"description":"Options to filter results. String fields are case sensitive","example":{"winner_id":390,"winner_type":"Team"},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Series"},"style":"deepObject"},{"description":"Options to search results","example":{"slug":"lck"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Series"},"style":"deepObject"},{"description":"Options to sort results","example":["year","-modified_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Series"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.799Z","2025-04-15T13:52:08.799Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Series"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Series"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get running series","tags":["Series"]}},"/series/upcoming":{"get":{"description":"List upcoming series","operationId":"get_series_upcoming","parameters":[{"description":"Options to filter results. String fields are case sensitive","example":{"winner_id":390,"winner_type":"Team"},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Series"},"style":"deepObject"},{"description":"Options to search results","example":{"slug":"lck"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Series"},"style":"deepObject"},{"description":"Options to sort results","example":["year","-modified_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Series"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.799Z","2025-04-15T13:52:08.799Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Series"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Series"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get upcoming series","tags":["Series"]}},"/series/{serie_id_or_slug}":{"get":{"description":"Get a single serie by ID or by slug","operationId":"get_series_serieIdOrSlug","parameters":[{"description":"A serie ID or slug","in":"path","name":"serie_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/SerieIDOrSlug"}}],"responses":{"200":{"$ref":"#/components/responses/Serie"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get a serie","tags":["Series"]}},"/series/{serie_id_or_slug}/matches":{"get":{"description":"List matches of the given serie","operationId":"get_series_serieIdOrSlug_matches","parameters":[{"description":"A serie ID or slug","in":"path","name":"serie_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/SerieIDOrSlug"}},{"description":"Options to filter results. String fields are case sensitive","example":{"detailed_stats":true},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Matches"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"Finals"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Matches"},"style":"deepObject"},{"description":"Options to sort results","example":["tournament_id","scheduled_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Matches"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.799Z","2025-04-15T13:52:08.799Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Matches"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Matches"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get matches for a serie","tags":["Series"]}},"/series/{serie_id_or_slug}/matches/past":{"get":{"description":"List past matches for the given serie","operationId":"get_series_serieIdOrSlug_matches_past","parameters":[{"description":"A serie ID or slug","in":"path","name":"serie_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/SerieIDOrSlug"}},{"description":"Options to filter results. String fields are case sensitive","example":{"detailed_stats":true},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Matches"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"Finals"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Matches"},"style":"deepObject"},{"description":"Options to sort results","example":["tournament_id","scheduled_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Matches"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.799Z","2025-04-15T13:52:08.799Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Matches"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Matches"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get past matches for serie","tags":["Series"]}},"/series/{serie_id_or_slug}/matches/running":{"get":{"description":"List currently running matches for the given serie","operationId":"get_series_serieIdOrSlug_matches_running","parameters":[{"description":"A serie ID or slug","in":"path","name":"serie_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/SerieIDOrSlug"}},{"description":"Options to filter results. String fields are case sensitive","example":{"detailed_stats":true},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Matches"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"Finals"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Matches"},"style":"deepObject"},{"description":"Options to sort results","example":["tournament_id","scheduled_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Matches"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.799Z","2025-04-15T13:52:08.799Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Matches"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Matches"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get running matches for serie","tags":["Series"]}},"/series/{serie_id_or_slug}/matches/upcoming":{"get":{"description":"List upcoming matches for the given serie","operationId":"get_series_serieIdOrSlug_matches_upcoming","parameters":[{"description":"A serie ID or slug","in":"path","name":"serie_id_or_slug","required":true,"schema":{"$ref":"#/components/schemas/SerieIDOrSlug"}},{"description":"Options to filter results. String fields are case sensitive","example":{"detailed_stats":true},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Matches"},"style":"deepObject"},{"description":"Options to search results","example":{"name":"Finals"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Matches"},"style":"deepObject"},{"description":"Options to sort results","example":["tournament_id","scheduled_at"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_over_Matches"}},{"description":"Options to select results within ranges","example":{"begin_at":["2025-04-15T13:52:08.799Z","2025-04-15T13:52:08.799Z"]},"explode":true,"in":"query","name":"range","required":false,"schema":{"$ref":"#/components/schemas/range_over_Matches"},"style":"deepObject"},{"$ref":"#/components/parameters/Page"},{"$ref":"#/components/parameters/PerPage"}],"responses":{"200":{"$ref":"#/components/responses/Matches"},"400":{"$ref":"#/components/responses/Error400"},"401":{"$ref":"#/components/responses/Error401"},"403":{"$ref":"#/components/responses/Error403"},"404":{"$ref":"#/components/responses/Error404"},"422":{"$ref":"#/components/responses/Error422"}},"summary":"Get upcoming matches for serie","tags":["Series"]}},"/series/{serie_id_or_slug}/players":{"get":{"description":"List players for the given serie","operationId":"get_series_serieIdOrSlug_players","parameters":[{"description":"Options to filter results. String fields are case sensitive","example":{"hometown":"France"},"explode":true,"in":"query","name":"filter","required":false,"schema":{"$ref":"#/components/schemas/filter_over_Players"},"style":"deepObject"},{"description":"Options to search results","example":{"role":"tank"},"explode":true,"in":"query","name":"search","required":false,"schema":{"$ref":"#/components/schemas/search_over_Players"},"style":"deepObject"},{"description":"Options to sort results","example":["last_name"],"in":"query","name":"sort","required":false,"schema":{"$ref":"#/components/schemas/sort_ove