├── .github └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── examples ├── champion-mastery-v4.getAllChampionMasteries │ ├── NA1_LugnutsK_SBM8Ubipo4ge2yj7bhEzL7yvV0C9Oc1XA2l6v5okGMA_nCw_2023-05-15.json │ └── NA1_ma5tery_halYkDsduaKgskJLY6SkiFezLnzLlrCk16KaSbNSi_Ypxv0_2023-05-15.json ├── league-v4.getChallengerLeague │ └── JP1_RANKED_SOLO_5x5_2023-07-19.json ├── lol-challenges-v1.getPlayerData │ ├── 4xPsE9pqq6q8e69oSjQE8ziKPWKRV_xMB_hZQsyeEUEpfqqy73K5TyJUp_LGEZZgdtm5afrt_tj4MQ.json │ ├── Gc3LMhkddRPSXSeongWwb_TXZKwJb4_eFchAAye78NrYySNxk6DWaB0-QsCg8twRv6wYQ8hAOlxyhQ.json │ ├── LA1_P8MNl5iZwdDTj_Sei-WkF6dnsoBK47x7aUtrbjP6R0o6gtGdm0tDhgBgphpPk8ogKUXkJ5aBjN3thw.json │ └── NA1_P8MNl5iZwdDTj_Sei-WkF6dnsoBK47x7aUtrbjP6R0o6gtGdm0tDhgBgphpPk8ogKUXkJ5aBjN3thw.json ├── match-v5.getMatch │ ├── EUW1_5765650307.json │ ├── EUW1_6349186754.json │ ├── EUW1_6511808246.json │ ├── EUW1_6569580003.json │ ├── EUW1_6834713231.json │ ├── EUW1_6852390800.json │ ├── EUW1_6869252626.json │ ├── EUW1_7261321891.json │ ├── JP1_390576646.json │ ├── JP1_390607492.json │ ├── JP1_390609829.json │ ├── JP1_390614378.json │ ├── JP1_390621320.json │ ├── JP1_390626149.json │ ├── JP1_390638767.json │ ├── JP1_390643123.json │ ├── JP1_391732436.json │ ├── JP1_392648207.json │ ├── JP1_394224572.json │ ├── JP1_397348569.json │ ├── JP1_400700181.json │ ├── JP1_405073638.json │ ├── JP1_419115017.json │ ├── JP1_433066634.json │ ├── JP1_444997552.json │ ├── JP1_445141671.json │ ├── JP1_447303353.json │ ├── JP1_450685262.json │ ├── JP1_455137806.json │ ├── JP1_456819992.json │ ├── JP1_457196409.json │ ├── JP1_457311633.json │ ├── JP1_477847236.json │ ├── JP1_491776434.json │ ├── JP1_497158018.json │ ├── JP1_498473890.json │ ├── JP1_517549376.json │ ├── JP1_518347273.json │ ├── JP1_518437246.json │ ├── JP1_546614216.json │ ├── KR_6604607115.json │ ├── LA1_1568057368.json │ ├── NA1_4196060228.json │ ├── NA1_4196075871.json │ ├── NA1_4204342773.json │ ├── NA1_4207411591.json │ ├── NA1_4208070194.json │ ├── NA1_4208459441.json │ ├── NA1_4209286145.json │ ├── NA1_4209556127.json │ ├── NA1_4210589360.json │ ├── NA1_4211424165.json │ ├── NA1_4212715433.json │ ├── NA1_4228742554.json │ ├── NA1_4234748497.json │ ├── NA1_4234762763.json │ ├── NA1_4265913704.json │ ├── NA1_4924008147.json │ ├── NA1_5018382378.json │ ├── NA1_5018422066.json │ ├── NA1_5027407435.json │ ├── NA1_5245486208.json │ ├── RU_490603994.json │ ├── SG2_31726207.json │ ├── TH2_24825892.json │ ├── TW2_205251003.json │ └── challenges.js ├── match-v5.getTimeline │ ├── EUW1_5765650307.json │ ├── EUW1_6349186754.json │ ├── EUW1_6511808246.json │ ├── EUW1_6569580003.json │ ├── EUW1_6834713231.json │ ├── EUW1_6852390800.json │ ├── EUW1_6869252626.json │ ├── EUW1_7261321891.json │ ├── JP1_405073638.json │ ├── JP1_433066634.json │ ├── JP1_444997552.json │ ├── JP1_445141671.json │ ├── JP1_446360502.json │ ├── JP1_447303353.json │ ├── JP1_450685262.json │ ├── JP1_455137806.json │ ├── JP1_456819992.json │ ├── JP1_457196409.json │ ├── JP1_457311633.json │ ├── JP1_477847236.json │ ├── JP1_491776434.json │ ├── JP1_497158018.json │ ├── JP1_498473890.json │ ├── JP1_517549376.json │ ├── JP1_518347273.json │ ├── JP1_518437246.json │ ├── JP1_546614216.json │ ├── KR_5207698410.json │ ├── KR_5207774191.json │ ├── KR_5207900239.json │ ├── KR_6604607115.json │ ├── LA1_1568057368.json │ ├── NA1_3923257498.json │ ├── NA1_3923326200.json │ ├── NA1_3923330655.json │ ├── NA1_3923487226.json │ ├── NA1_3924501754.json │ ├── NA1_3924866010.json │ ├── NA1_3925576023.json │ ├── NA1_4209556127.json │ ├── NA1_4228742554.json │ ├── NA1_4234748497.json │ ├── NA1_4234762763.json │ ├── NA1_4265913704.json │ ├── NA1_4924008147.json │ ├── NA1_5018382378.json │ ├── NA1_5018422066.json │ ├── NA1_5027407435.json │ ├── NA1_5245486208.json │ ├── RU_490603994.json │ ├── SG2_31726207.json │ ├── TH2_24825892.json │ └── TW2_205251003.json ├── spectator-v4.getFeaturedGames │ └── NA1_2024-01-15T19-21-57.json ├── tft-match-v1.getMatch │ ├── EUW1_6455483163.json │ ├── EUW1_6807630149.json │ ├── EUW1_6850752429.json │ ├── EUW1_6956870524.json │ ├── EUW1_7172265457.json │ ├── EUW1_7288129746.json │ ├── JP1_510452964.json │ └── NA1_4685209714.json ├── val-content-v1.getContent │ └── zh-CN_2023-09-21.json ├── val-match-v1.getMatch │ ├── 0c44a3d9-c26d-4175-a70e-030342c83435.json │ ├── 4c196b0a-b396-46ae-a937-b4c52ee83f9a.json │ ├── 5a6bc914-2d9a-473e-a95c-f983d9459476.json │ ├── 62d80939-3123-409b-9509-3663cf7c5dc1.json │ ├── 7baff623-acd7-4944-93ba-6298a495bc48.json │ ├── b979be9e-aeb1-419e-981d-d7d2472649a2.json │ ├── c086129c-e538-43cf-ae93-7148d0d01182.json │ └── db6033b7-fede-41ea-8c33-63bd31a68be7.json └── val-ranked-v1.getLeaderboard │ └── 573f53ac-41a5-3a7d-d9ce-d6a6298e5704.json ├── index.js ├── package.json ├── scripts └── getOptional.js ├── src ├── api.js ├── arrayFill.js ├── data │ ├── README.md │ ├── dto01BoolFields.jsonc │ ├── dtoDescriptionTypeOverrides.jsonc │ ├── dtoEnums.jsonc │ ├── dtoExtraFields.jsonc │ ├── dtoOptional.jsonc │ ├── endpointPlatformsAvailableOverrides.jsonc │ ├── endpointSharedDtos.jsonc │ ├── matchV5Old.json │ ├── methodDtoRenames.jsonc │ ├── methodOptional.jsonc │ ├── methodParamEnums.jsonc │ ├── methodReturnOverrides.jsonc │ ├── routesTable.jsonc │ └── schemaOverrides.jsonc ├── deepEqual.js ├── endpoint.js ├── enums │ ├── gameModes.jsonc │ ├── gameTypes.jsonc │ ├── maps.jsonc │ ├── queueTypes.jsonc │ ├── queues.jsonc │ └── seasons.jsonc ├── method.js ├── openapi-3.0.0.js ├── region.js ├── schema.js ├── swaggerspec-2.0.js └── types.js └── version.ps1 /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/README.md -------------------------------------------------------------------------------- /examples/champion-mastery-v4.getAllChampionMasteries/NA1_LugnutsK_SBM8Ubipo4ge2yj7bhEzL7yvV0C9Oc1XA2l6v5okGMA_nCw_2023-05-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/champion-mastery-v4.getAllChampionMasteries/NA1_LugnutsK_SBM8Ubipo4ge2yj7bhEzL7yvV0C9Oc1XA2l6v5okGMA_nCw_2023-05-15.json -------------------------------------------------------------------------------- /examples/champion-mastery-v4.getAllChampionMasteries/NA1_ma5tery_halYkDsduaKgskJLY6SkiFezLnzLlrCk16KaSbNSi_Ypxv0_2023-05-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/champion-mastery-v4.getAllChampionMasteries/NA1_ma5tery_halYkDsduaKgskJLY6SkiFezLnzLlrCk16KaSbNSi_Ypxv0_2023-05-15.json -------------------------------------------------------------------------------- /examples/league-v4.getChallengerLeague/JP1_RANKED_SOLO_5x5_2023-07-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/league-v4.getChallengerLeague/JP1_RANKED_SOLO_5x5_2023-07-19.json -------------------------------------------------------------------------------- /examples/lol-challenges-v1.getPlayerData/4xPsE9pqq6q8e69oSjQE8ziKPWKRV_xMB_hZQsyeEUEpfqqy73K5TyJUp_LGEZZgdtm5afrt_tj4MQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/lol-challenges-v1.getPlayerData/4xPsE9pqq6q8e69oSjQE8ziKPWKRV_xMB_hZQsyeEUEpfqqy73K5TyJUp_LGEZZgdtm5afrt_tj4MQ.json -------------------------------------------------------------------------------- /examples/lol-challenges-v1.getPlayerData/Gc3LMhkddRPSXSeongWwb_TXZKwJb4_eFchAAye78NrYySNxk6DWaB0-QsCg8twRv6wYQ8hAOlxyhQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/lol-challenges-v1.getPlayerData/Gc3LMhkddRPSXSeongWwb_TXZKwJb4_eFchAAye78NrYySNxk6DWaB0-QsCg8twRv6wYQ8hAOlxyhQ.json -------------------------------------------------------------------------------- /examples/lol-challenges-v1.getPlayerData/LA1_P8MNl5iZwdDTj_Sei-WkF6dnsoBK47x7aUtrbjP6R0o6gtGdm0tDhgBgphpPk8ogKUXkJ5aBjN3thw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/lol-challenges-v1.getPlayerData/LA1_P8MNl5iZwdDTj_Sei-WkF6dnsoBK47x7aUtrbjP6R0o6gtGdm0tDhgBgphpPk8ogKUXkJ5aBjN3thw.json -------------------------------------------------------------------------------- /examples/lol-challenges-v1.getPlayerData/NA1_P8MNl5iZwdDTj_Sei-WkF6dnsoBK47x7aUtrbjP6R0o6gtGdm0tDhgBgphpPk8ogKUXkJ5aBjN3thw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/lol-challenges-v1.getPlayerData/NA1_P8MNl5iZwdDTj_Sei-WkF6dnsoBK47x7aUtrbjP6R0o6gtGdm0tDhgBgphpPk8ogKUXkJ5aBjN3thw.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/EUW1_5765650307.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/EUW1_5765650307.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/EUW1_6349186754.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/EUW1_6349186754.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/EUW1_6511808246.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/EUW1_6511808246.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/EUW1_6569580003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/EUW1_6569580003.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/EUW1_6834713231.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/EUW1_6834713231.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/EUW1_6852390800.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/EUW1_6852390800.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/EUW1_6869252626.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/EUW1_6869252626.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/EUW1_7261321891.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/EUW1_7261321891.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_390576646.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_390576646.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_390607492.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_390607492.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_390609829.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_390609829.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_390614378.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_390614378.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_390621320.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_390621320.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_390626149.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_390626149.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_390638767.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_390638767.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_390643123.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_390643123.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_391732436.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_391732436.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_392648207.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_392648207.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_394224572.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_394224572.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_397348569.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_397348569.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_400700181.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_400700181.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_405073638.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_405073638.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_419115017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_419115017.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_433066634.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_433066634.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_444997552.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_444997552.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_445141671.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_445141671.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_447303353.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_447303353.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_450685262.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_450685262.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_455137806.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_455137806.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_456819992.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_456819992.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_457196409.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_457196409.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_457311633.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_457311633.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_477847236.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_477847236.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_491776434.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_491776434.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_497158018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_497158018.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_498473890.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_498473890.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_517549376.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_517549376.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_518347273.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_518347273.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_518437246.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_518437246.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/JP1_546614216.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/JP1_546614216.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/KR_6604607115.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/KR_6604607115.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/LA1_1568057368.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/LA1_1568057368.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4196060228.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4196060228.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4196075871.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4196075871.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4204342773.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4204342773.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4207411591.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4207411591.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4208070194.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4208070194.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4208459441.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4208459441.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4209286145.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4209286145.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4209556127.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4209556127.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4210589360.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4210589360.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4211424165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4211424165.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4212715433.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4212715433.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4228742554.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4228742554.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4234748497.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4234748497.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4234762763.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4234762763.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4265913704.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4265913704.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_4924008147.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_4924008147.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_5018382378.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_5018382378.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_5018422066.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_5018422066.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_5027407435.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_5027407435.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/NA1_5245486208.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/NA1_5245486208.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/RU_490603994.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/RU_490603994.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/SG2_31726207.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/SG2_31726207.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/TH2_24825892.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/TH2_24825892.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/TW2_205251003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/TW2_205251003.json -------------------------------------------------------------------------------- /examples/match-v5.getMatch/challenges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getMatch/challenges.js -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/EUW1_5765650307.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/EUW1_5765650307.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/EUW1_6349186754.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/EUW1_6349186754.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/EUW1_6511808246.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/EUW1_6511808246.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/EUW1_6569580003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/EUW1_6569580003.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/EUW1_6834713231.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/EUW1_6834713231.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/EUW1_6852390800.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/EUW1_6852390800.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/EUW1_6869252626.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/EUW1_6869252626.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/EUW1_7261321891.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/EUW1_7261321891.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_405073638.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_405073638.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_433066634.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_433066634.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_444997552.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_444997552.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_445141671.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_445141671.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_446360502.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_446360502.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_447303353.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_447303353.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_450685262.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_450685262.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_455137806.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_455137806.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_456819992.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_456819992.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_457196409.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_457196409.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_457311633.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_457311633.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_477847236.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_477847236.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_491776434.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_491776434.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_497158018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_497158018.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_498473890.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_498473890.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_517549376.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_517549376.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_518347273.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_518347273.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_518437246.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_518437246.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/JP1_546614216.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/JP1_546614216.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/KR_5207698410.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/KR_5207698410.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/KR_5207774191.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/KR_5207774191.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/KR_5207900239.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/KR_5207900239.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/KR_6604607115.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/KR_6604607115.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/LA1_1568057368.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/LA1_1568057368.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_3923257498.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_3923257498.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_3923326200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_3923326200.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_3923330655.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_3923330655.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_3923487226.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_3923487226.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_3924501754.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_3924501754.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_3924866010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_3924866010.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_3925576023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_3925576023.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_4209556127.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_4209556127.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_4228742554.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_4228742554.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_4234748497.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_4234748497.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_4234762763.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_4234762763.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_4265913704.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_4265913704.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_4924008147.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_4924008147.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_5018382378.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_5018382378.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_5018422066.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_5018422066.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_5027407435.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_5027407435.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/NA1_5245486208.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/NA1_5245486208.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/RU_490603994.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/RU_490603994.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/SG2_31726207.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/SG2_31726207.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/TH2_24825892.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/TH2_24825892.json -------------------------------------------------------------------------------- /examples/match-v5.getTimeline/TW2_205251003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/match-v5.getTimeline/TW2_205251003.json -------------------------------------------------------------------------------- /examples/spectator-v4.getFeaturedGames/NA1_2024-01-15T19-21-57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/spectator-v4.getFeaturedGames/NA1_2024-01-15T19-21-57.json -------------------------------------------------------------------------------- /examples/tft-match-v1.getMatch/EUW1_6455483163.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/tft-match-v1.getMatch/EUW1_6455483163.json -------------------------------------------------------------------------------- /examples/tft-match-v1.getMatch/EUW1_6807630149.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/tft-match-v1.getMatch/EUW1_6807630149.json -------------------------------------------------------------------------------- /examples/tft-match-v1.getMatch/EUW1_6850752429.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/tft-match-v1.getMatch/EUW1_6850752429.json -------------------------------------------------------------------------------- /examples/tft-match-v1.getMatch/EUW1_6956870524.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/tft-match-v1.getMatch/EUW1_6956870524.json -------------------------------------------------------------------------------- /examples/tft-match-v1.getMatch/EUW1_7172265457.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/tft-match-v1.getMatch/EUW1_7172265457.json -------------------------------------------------------------------------------- /examples/tft-match-v1.getMatch/EUW1_7288129746.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/tft-match-v1.getMatch/EUW1_7288129746.json -------------------------------------------------------------------------------- /examples/tft-match-v1.getMatch/JP1_510452964.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/tft-match-v1.getMatch/JP1_510452964.json -------------------------------------------------------------------------------- /examples/tft-match-v1.getMatch/NA1_4685209714.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/tft-match-v1.getMatch/NA1_4685209714.json -------------------------------------------------------------------------------- /examples/val-content-v1.getContent/zh-CN_2023-09-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/val-content-v1.getContent/zh-CN_2023-09-21.json -------------------------------------------------------------------------------- /examples/val-match-v1.getMatch/0c44a3d9-c26d-4175-a70e-030342c83435.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/val-match-v1.getMatch/0c44a3d9-c26d-4175-a70e-030342c83435.json -------------------------------------------------------------------------------- /examples/val-match-v1.getMatch/4c196b0a-b396-46ae-a937-b4c52ee83f9a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/val-match-v1.getMatch/4c196b0a-b396-46ae-a937-b4c52ee83f9a.json -------------------------------------------------------------------------------- /examples/val-match-v1.getMatch/5a6bc914-2d9a-473e-a95c-f983d9459476.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/val-match-v1.getMatch/5a6bc914-2d9a-473e-a95c-f983d9459476.json -------------------------------------------------------------------------------- /examples/val-match-v1.getMatch/62d80939-3123-409b-9509-3663cf7c5dc1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/val-match-v1.getMatch/62d80939-3123-409b-9509-3663cf7c5dc1.json -------------------------------------------------------------------------------- /examples/val-match-v1.getMatch/7baff623-acd7-4944-93ba-6298a495bc48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/val-match-v1.getMatch/7baff623-acd7-4944-93ba-6298a495bc48.json -------------------------------------------------------------------------------- /examples/val-match-v1.getMatch/b979be9e-aeb1-419e-981d-d7d2472649a2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/val-match-v1.getMatch/b979be9e-aeb1-419e-981d-d7d2472649a2.json -------------------------------------------------------------------------------- /examples/val-match-v1.getMatch/c086129c-e538-43cf-ae93-7148d0d01182.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/val-match-v1.getMatch/c086129c-e538-43cf-ae93-7148d0d01182.json -------------------------------------------------------------------------------- /examples/val-match-v1.getMatch/db6033b7-fede-41ea-8c33-63bd31a68be7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/val-match-v1.getMatch/db6033b7-fede-41ea-8c33-63bd31a68be7.json -------------------------------------------------------------------------------- /examples/val-ranked-v1.getLeaderboard/573f53ac-41a5-3a7d-d9ce-d6a6298e5704.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/examples/val-ranked-v1.getLeaderboard/573f53ac-41a5-3a7d-d9ce-d6a6298e5704.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/package.json -------------------------------------------------------------------------------- /scripts/getOptional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/scripts/getOptional.js -------------------------------------------------------------------------------- /src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/api.js -------------------------------------------------------------------------------- /src/arrayFill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/arrayFill.js -------------------------------------------------------------------------------- /src/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/data/README.md -------------------------------------------------------------------------------- /src/data/dto01BoolFields.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/data/dto01BoolFields.jsonc -------------------------------------------------------------------------------- /src/data/dtoDescriptionTypeOverrides.jsonc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/data/dtoEnums.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/data/dtoEnums.jsonc -------------------------------------------------------------------------------- /src/data/dtoExtraFields.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/data/dtoExtraFields.jsonc -------------------------------------------------------------------------------- /src/data/dtoOptional.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/data/dtoOptional.jsonc -------------------------------------------------------------------------------- /src/data/endpointPlatformsAvailableOverrides.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/data/endpointPlatformsAvailableOverrides.jsonc -------------------------------------------------------------------------------- /src/data/endpointSharedDtos.jsonc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/data/matchV5Old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/data/matchV5Old.json -------------------------------------------------------------------------------- /src/data/methodDtoRenames.jsonc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/data/methodOptional.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/data/methodOptional.jsonc -------------------------------------------------------------------------------- /src/data/methodParamEnums.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/data/methodParamEnums.jsonc -------------------------------------------------------------------------------- /src/data/methodReturnOverrides.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/data/methodReturnOverrides.jsonc -------------------------------------------------------------------------------- /src/data/routesTable.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/data/routesTable.jsonc -------------------------------------------------------------------------------- /src/data/schemaOverrides.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/data/schemaOverrides.jsonc -------------------------------------------------------------------------------- /src/deepEqual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/deepEqual.js -------------------------------------------------------------------------------- /src/endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/endpoint.js -------------------------------------------------------------------------------- /src/enums/gameModes.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/enums/gameModes.jsonc -------------------------------------------------------------------------------- /src/enums/gameTypes.jsonc: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/enums/maps.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/enums/maps.jsonc -------------------------------------------------------------------------------- /src/enums/queueTypes.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/enums/queueTypes.jsonc -------------------------------------------------------------------------------- /src/enums/queues.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/enums/queues.jsonc -------------------------------------------------------------------------------- /src/enums/seasons.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/enums/seasons.jsonc -------------------------------------------------------------------------------- /src/method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/method.js -------------------------------------------------------------------------------- /src/openapi-3.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/openapi-3.0.0.js -------------------------------------------------------------------------------- /src/region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/region.js -------------------------------------------------------------------------------- /src/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/schema.js -------------------------------------------------------------------------------- /src/swaggerspec-2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/swaggerspec-2.0.js -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/src/types.js -------------------------------------------------------------------------------- /version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingweiSamuel/riotapi-schema/HEAD/version.ps1 --------------------------------------------------------------------------------