Skip to content

Instantly share code, notes, and snippets.

@Pupix
Created July 18, 2018 22:48
Show Gist options
  • Save Pupix/1078c64c9bc33809eccfd60556411679 to your computer and use it in GitHub Desktop.
Save Pupix/1078c64c9bc33809eccfd60556411679 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
{
"basePath": "/",
"consumes": [
"application/json",
"application/vnd.api+json",
"application/x-yaml",
"application/x-msgpack",
"application/octet-stream",
"application/x-www-form-urlencoded",
"multipart/form-data"
],
"definitions": {
"ActiveBoosts": {
"properties": {
"firstWinOfTheDayStartTime": {
"type": "string"
},
"ipBoostEndDate": {
"type": "string"
},
"ipBoostPerWinCount": {
"format": "int32",
"type": "integer"
},
"ipLoyaltyBoost": {
"format": "int32",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"xpBoostEndDate": {
"type": "string"
},
"xpBoostPerWinCount": {
"format": "int32",
"type": "integer"
},
"xpLoyaltyBoost": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"ActiveBoostsLcdsStoreFulfillmentNotification": {
"properties": {
"data": {
"additionalProperties": true,
"type": "object"
},
"inventoryType": {
"type": "string"
}
},
"type": "object"
},
"ActiveBoostsLcdsSummonerActiveBoostsDTO": {
"properties": {
"ipBoostEndDate": {
"format": "int64",
"type": "integer"
},
"ipBoostPerWinCount": {
"format": "int32",
"type": "integer"
},
"ipLoyaltyBoost": {
"format": "int32",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"xpBoostEndDate": {
"format": "int64",
"type": "integer"
},
"xpBoostPerWinCount": {
"format": "int32",
"type": "integer"
},
"xpLoyaltyBoost": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"AggregationType": {
"enum": [
"none",
"sum",
"average"
],
"type": "string"
},
"AlertDTO": {
"properties": {
"alertTime": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"AllPublicSummonerDataDTO": {
"properties": {
"summoner": {
"$ref": "#/definitions/BasePublicSummonerDTO"
},
"summonerLevelAndPoints": {
"$ref": "#/definitions/SummonerLevelAndPoints"
}
},
"type": "object"
},
"AllSummonerData": {
"properties": {
"summoner": {
"$ref": "#/definitions/PrivateSummonerDTO"
},
"summonerLevelAndPoints": {
"$ref": "#/definitions/SummonerLevelAndPoints"
}
},
"type": "object"
},
"BannedChampion": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"pickTurn": {
"format": "int32",
"type": "integer"
},
"teamId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"BasePublicSummonerDTO": {
"properties": {
"acctId": {
"format": "int64",
"type": "integer"
},
"internalName": {
"type": "string"
},
"name": {
"type": "string"
},
"previousSeasonHighestTier": {
"type": "string"
},
"profileIconId": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"sumId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"BindingAsyncCancelEvent": {
"description": "Represents a cancelled asynchronous operation.",
"properties": {
"asyncToken": {
"description": "Asynchronous operation token",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"BindingAsyncFailureEvent": {
"description": "Represents a failed asynchronous operation.",
"properties": {
"asyncToken": {
"description": "Asynchronous operation token",
"format": "int32",
"type": "integer"
},
"error": {
"description": "Error message",
"type": "string"
}
},
"type": "object"
},
"BindingAsyncState": {
"description": "Possible states of an asynchronous operation.",
"enum": [
"None",
"Running",
"Cancelling",
"Cancelled",
"Succeeded",
"Failed"
],
"type": "string"
},
"BindingCallbackEvent": {
"description": "Represents the parameters of a call to a provided callback.",
"properties": {
"id": {
"description": "ID of the callback being invoked",
"format": "int32",
"type": "integer"
},
"parameters": {
"description": "Callback parameters",
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"BindingFullApiHelp": {
"description": "Describes the exposed native API.",
"properties": {
"events": {
"items": {
"$ref": "#/definitions/BindingFullEventHelp"
},
"type": "array"
},
"functions": {
"items": {
"$ref": "#/definitions/BindingFullFunctionHelp"
},
"type": "array"
},
"types": {
"items": {
"$ref": "#/definitions/BindingFullTypeHelp"
},
"type": "array"
}
},
"type": "object"
},
"BindingFullArgumentHelp": {
"description": "Describes a function parameter.",
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
},
"type": {
"$ref": "#/definitions/BindingFullTypeIdentifier"
}
},
"type": "object"
},
"BindingFullEnumValueHelp": {
"description": "Describes an enumerator.",
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
},
"value": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"BindingFullEventHelp": {
"description": "Describes an event.",
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
},
"nameSpace": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"$ref": "#/definitions/BindingFullTypeIdentifier"
}
},
"type": "object"
},
"BindingFullFieldHelp": {
"description": "Describes a member of a struct.",
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
},
"offset": {
"format": "int32",
"type": "integer"
},
"optional": {
"type": "boolean"
},
"type": {
"$ref": "#/definitions/BindingFullTypeIdentifier"
}
},
"type": "object"
},
"BindingFullFunctionHelp": {
"description": "Describes a function.",
"properties": {
"arguments": {
"items": {
"$ref": "#/definitions/BindingFullArgumentHelp"
},
"type": "array"
},
"async": {
"type": "string"
},
"description": {
"type": "string"
},
"help": {
"type": "string"
},
"name": {
"type": "string"
},
"nameSpace": {
"type": "string"
},
"returns": {
"$ref": "#/definitions/BindingFullTypeIdentifier"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"threadSafe": {
"type": "boolean"
}
},
"type": "object"
},
"BindingFullTypeHelp": {
"description": "Describes a struct or enum type.",
"properties": {
"description": {
"type": "string"
},
"fields": {
"items": {
"$ref": "#/definitions/BindingFullFieldHelp"
},
"type": "array"
},
"name": {
"type": "string"
},
"nameSpace": {
"type": "string"
},
"size": {
"format": "int32",
"type": "integer"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"values": {
"items": {
"$ref": "#/definitions/BindingFullEnumValueHelp"
},
"type": "array"
}
},
"type": "object"
},
"BindingFullTypeIdentifier": {
"description": "Describes the type of a value.",
"properties": {
"elementType": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"BindingGenericAsyncEvent": {
"description": "Represents generic data for an asynchronous event.",
"properties": {
"asyncToken": {
"description": "Asynchronous operation token",
"format": "int32",
"type": "integer"
},
"data": {
"additionalProperties": true,
"description": "Event data",
"type": "object"
}
},
"type": "object"
},
"BindingGenericEvent": {
"description": "Represents generic data for an event.",
"properties": {
"data": {
"additionalProperties": true,
"description": "Event data",
"type": "object"
}
},
"type": "object"
},
"BindingHelpFormat": {
"description": "Help format for binding functions and types.",
"enum": [
"Full",
"Epytext"
],
"type": "string"
},
"BoostTeamSkinRentalDTO": {
"properties": {
"availableSkins": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"ipReward": {
"format": "int64",
"type": "integer"
},
"ipRewardForPurchaser": {
"format": "int64",
"type": "integer"
},
"price": {
"format": "int64",
"type": "integer"
},
"skinUnlockMode": {
"type": "string"
},
"summonerName": {
"type": "string"
},
"unlocked": {
"type": "boolean"
}
},
"type": "object"
},
"Bracket": {
"properties": {
"currentLoserRound": {
"format": "int32",
"type": "integer"
},
"currentRound": {
"format": "int32",
"type": "integer"
},
"id": {
"format": "int64",
"type": "integer"
},
"loserBracketMatches": {
"items": {
"$ref": "#/definitions/BracketMatch"
},
"type": "array"
},
"matches": {
"items": {
"$ref": "#/definitions/BracketMatch"
},
"type": "array"
},
"phaseId": {
"format": "int64",
"type": "integer"
},
"rosters": {
"items": {
"$ref": "#/definitions/BracketRoster"
},
"type": "array"
},
"size": {
"format": "int32",
"type": "integer"
},
"tournamentId": {
"format": "int64",
"type": "integer"
},
"version": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"BracketMatch": {
"properties": {
"forfeitRosterId": {
"format": "int64",
"type": "integer"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"gameStartTime": {
"format": "int64",
"type": "integer"
},
"id": {
"format": "int64",
"type": "integer"
},
"loserBracket": {
"type": "boolean"
},
"order": {
"format": "int32",
"type": "integer"
},
"rosterId1": {
"format": "int64",
"type": "integer"
},
"rosterId2": {
"format": "int64",
"type": "integer"
},
"round": {
"format": "int32",
"type": "integer"
},
"roundStartTime": {
"format": "int64",
"type": "integer"
},
"status": {
"$ref": "#/definitions/ClientBracketMatchStatus"
},
"winnerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"BracketRoster": {
"properties": {
"logo": {
"format": "int32",
"type": "integer"
},
"logoColor": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"rosterId": {
"format": "int64",
"type": "integer"
},
"shortName": {
"type": "string"
}
},
"type": "object"
},
"BroadcastNotification": {
"properties": {
"broadcastMessages": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"BuildInfo": {
"properties": {
"branch": {
"type": "string"
},
"branchFull": {
"type": "string"
},
"codeBuildId": {
"format": "int32",
"type": "integer"
},
"contentBuildId": {
"format": "int32",
"type": "integer"
},
"gameBranch": {
"type": "string"
},
"gameBranchFull": {
"type": "string"
},
"gameDataBuildId": {
"format": "int32",
"type": "integer"
},
"patchline": {
"type": "string"
},
"patchlineVisibleName": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"ChampSelectLcdsGameDTO": {
"properties": {
"bannedChampions": {
"items": {
"$ref": "#/definitions/BannedChampion"
},
"type": "array"
},
"gameMutators": {
"items": {
"type": "string"
},
"type": "array"
},
"gameState": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
},
"optimisticLock": {
"format": "int64",
"type": "integer"
},
"pickTurn": {
"format": "int32",
"type": "integer"
},
"playerChampionSelections": {
"items": {
"$ref": "#/definitions/ChampSelectLcdsPlayerChampionSelectionDTO"
},
"type": "array"
},
"queueTypeName": {
"type": "string"
},
"roomName": {
"type": "string"
},
"roomPassword": {
"type": "string"
},
"spectatorDelay": {
"format": "int64",
"type": "integer"
},
"statusOfParticipants": {
"type": "string"
},
"teamOne": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
"teamTwo": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"ChampSelectLcdsGameTimerDTO": {
"properties": {
"currentGameState": {
"type": "string"
},
"remainingTimeInMillis": {
"format": "double",
"type": "number"
}
},
"type": "object"
},
"ChampSelectLcdsObfuscatedParticipant": {
"properties": {
"gameUniqueId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"ChampSelectLcdsPlayerChampionSelectionDTO": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"selectedSkinIndex": {
"format": "int32",
"type": "integer"
},
"spell1Id": {
"format": "int32",
"type": "integer"
},
"spell2Id": {
"format": "int32",
"type": "integer"
},
"summonerInternalName": {
"type": "string"
}
},
"type": "object"
},
"ChampSelectLcdsPlayerParticipant": {
"properties": {
"pickMode": {
"format": "int32",
"type": "integer"
},
"pickTurn": {
"format": "int32",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerInternalName": {
"type": "string"
},
"summonerName": {
"type": "string"
}
},
"type": "object"
},
"ChampSelectLcdsPointSummary": {
"properties": {
"currentPoints": {
"format": "int32",
"type": "integer"
},
"maxRolls": {
"format": "int32",
"type": "integer"
},
"numberOfRolls": {
"format": "int32",
"type": "integer"
},
"pointsCostToRoll": {
"format": "int32",
"type": "integer"
},
"pointsToNextRoll": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"ChampSelectLcdsPotentialTradersDTO": {
"properties": {
"potentialTraders": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"ChampSelectLcdsRollResult": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"pointSummary": {
"$ref": "#/definitions/ChampSelectLcdsPointSummary"
}
},
"type": "object"
},
"ChampSelectLcdsTradeContractDTO": {
"properties": {
"requesterChampionId": {
"format": "int32",
"type": "integer"
},
"requesterInternalSummonerName": {
"type": "string"
},
"responderChampionId": {
"format": "int32",
"type": "integer"
},
"responderInternalSummonerName": {
"type": "string"
},
"state": {
"type": "string"
}
},
"type": "object"
},
"ChampionMasteryPublicDTO": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"championLevel": {
"format": "int32",
"type": "integer"
},
"championPoints": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"ChampionScoutingDTO": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"gameCount": {
"format": "int32",
"type": "integer"
},
"kda": {
"format": "float",
"type": "number"
},
"winCount": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"ClashEventData": {
"properties": {
"bracket": {
"format": "int64",
"type": "integer"
},
"earnedDate": {
"type": "string"
},
"playerUUIDs": {
"items": {
"type": "string"
},
"type": "array"
},
"rewardSpec": {
"$ref": "#/definitions/ClashRewardSpec"
},
"rewardType": {
"type": "string"
},
"seasonId": {
"format": "int32",
"type": "integer"
},
"teamLogoChromaId": {
"type": "string"
},
"teamLogoName": {
"type": "string"
},
"teamName": {
"type": "string"
},
"theme": {
"type": "string"
},
"tier": {
"type": "string"
},
"tournamentId": {
"format": "int64",
"type": "integer"
},
"tournamentName": {
"type": "string"
}
},
"type": "object"
},
"ClashRewardConfigClient": {
"properties": {
"entries": {
"items": {
"$ref": "#/definitions/ClashRewardConfigEntry"
},
"type": "array"
},
"grantToSub": {
"type": "boolean"
},
"keyDef": {
"items": {
"$ref": "#/definitions/ClashRewardKeyType"
},
"type": "array"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ClashRewardConfigEntry": {
"properties": {
"key": {
"type": "string"
},
"vals": {
"items": {
"$ref": "#/definitions/ClashRewardOutput"
},
"type": "array"
}
},
"type": "object"
},
"ClashRewardDefinition": {
"properties": {
"rewardSpec": {
"$ref": "#/definitions/ClashRewardSpec"
},
"rewardType": {
"$ref": "#/definitions/ClashRewardType"
}
},
"type": "object"
},
"ClashRewardKeyType": {
"enum": [
"TIER",
"CUP",
"TOKENS",
"LOWEST_POSITION",
"WINS",
"THEME_VP",
"SEASON_VP",
"SEASON_FLAG_COUNT"
],
"type": "string"
},
"ClashRewardOutput": {
"properties": {
"alternative": {
"$ref": "#/definitions/ClashRewardDefinition"
},
"grant": {
"$ref": "#/definitions/ClashRewardTime"
},
"primary": {
"$ref": "#/definitions/ClashRewardDefinition"
},
"show": {
"$ref": "#/definitions/ClashRewardTime"
}
},
"type": "object"
},
"ClashRewardSpec": {
"properties": {
"bracket": {
"type": "string"
},
"cup": {
"type": "string"
},
"gem": {
"type": "string"
},
"level": {
"type": "string"
},
"name": {
"type": "string"
},
"pedestal": {
"type": "string"
},
"quantity": {
"type": "string"
},
"seasonId": {
"type": "string"
},
"theme": {
"type": "string"
},
"tier": {
"type": "string"
}
},
"type": "object"
},
"ClashRewardTime": {
"enum": [
"NONE",
"EOG",
"EOB",
"EOT"
],
"type": "string"
},
"ClashRewardType": {
"enum": [
"TROPHY",
"FLAG",
"FRAME",
"LOGO",
"LOOT",
"VP"
],
"type": "string"
},
"ClientBracketMatchStatus": {
"enum": [
"UPCOMING",
"STARTED",
"COMPLETED"
],
"type": "string"
},
"ClientDynamicConfig": {
"properties": {
"compressed": {
"type": "boolean"
},
"configs": {
"type": "string"
},
"delta": {
"type": "boolean"
}
},
"type": "object"
},
"ClientRequestError": {
"enum": [
"ALREADY_MEMBER",
"ALREADY_INVITED",
"ALREADY_SUGGESTED",
"ALREADY_DECLINE_WITHDRAW",
"ALREADY_VOTE_WITHDRAW",
"ALREADY_IN_PHASE",
"CAPTAIN_NOT_ALLOWED",
"CANNOT_SUB",
"CLASH_BANNED",
"CLASH_BANNED_INVITEE",
"ELIGIBILITY_SERVER_ERROR",
"FAIL_INVITE",
"FAIL_SUGGESTINVITE",
"HONOR_INELIGIBILITY",
"LOGO_NOT_ALLOWED",
"LOGOCOLOR_NOT_ALLOWED",
"IN_OTHER_ROSTER",
"IN_OTHER_PENDINGROSTER",
"IN_OTHER_PENDINGSUB",
"IN_OTHER_PHASE_OF_PERIOD",
"INACTIVE_REGISTRATION",
"INACTIVE_PHASE",
"INTERNAL_ERROR",
"INVALID_ROSTER",
"INVALID_BUY_BACK",
"INVALID_SUB",
"INVALID_TOURNAMENT",
"INVALID_PHASE",
"INVALID_INVITEE",
"INVALID_ROSTER_MEMBER_SIZE",
"INVALID_POSITION",
"INVALID_LOGO",
"INVALID_LOGOCOLOR",
"INVALID_NAME",
"INVALID_SHORTNAME",
"INVALID_CHECKELIGIBILITY_SIZE",
"INVALID_BRACKET",
"INVALID_MATCHID",
"INVALID_PLAYER",
"INVALID_Tier",
"INVALID_WITHDRAW",
"INVALID_MATCHSTATUS_FORGAMEEND",
"INVALID_REWARD_CONFIG_NAME",
"INVALID_SEASON",
"MAX_INVITED",
"MAX_SUBED",
"MAX_ROSTER_FETCHSIZE",
"MAX_SUB_SIZE",
"SUB_IN_OTHER_ROSTER",
"NO_SAME_PLAYER",
"NO_AVAILABLE_PHASE",
"NOT_CAPTAIN",
"NOT_MEMBER",
"NOT_INVITEE",
"NOT_SEED_INTO_LEAGUE",
"NOT_ENOUGH_TICKETS",
"NOT_ALLOWED_DELETE_TOURNAMENT",
"NOT_ALLOWED_DELETE_TOURNAMENT_REWARD_CONFIG",
"NO_PERMISSION",
"NO_MORE_RECOMMEND",
"OVER_SUGGESTION_INVITE",
"OVER_INVITE",
"PENDING_ROSTER_NOT_READY",
"PENDING_ROSTER_FULL",
"PENDING_ROSTER_CLOSE",
"ROSTER_ELIMINATED",
"ROSTER_DISBAND_NOT_ALLOWED",
"SUGGEST_INVITEE_NOT_EXIST",
"SMS_NOT_VERIFIED",
"TICKET_ALREADY_SET",
"TICKET_OFFER_NOT_EXIST",
"TICKET_OFFER_OVER_LIMIT",
"TICKET_NOT_SET",
"VOICE_NOT_AVAILABLE",
"WITHDRAW_NOT_ALLOWED",
"WITHDRAW_CANCEL_NOT_ALLOWED",
"WITHDRAW_LOCKOUT"
],
"type": "string"
},
"CollectionsLcdsChampionDTO": {
"properties": {
"active": {
"type": "boolean"
},
"botEnabled": {
"type": "boolean"
},
"championId": {
"format": "int32",
"type": "integer"
},
"championSkins": {
"items": {
"$ref": "#/definitions/CollectionsLcdsChampionSkinDTO"
},
"type": "array"
},
"endDate": {
"format": "int64",
"type": "integer"
},
"freeToPlay": {
"type": "boolean"
},
"freeToPlayReward": {
"type": "boolean"
},
"owned": {
"type": "boolean"
},
"purchaseDate": {
"format": "int64",
"type": "integer"
},
"purchased": {
"format": "int64",
"type": "integer"
},
"rankedPlayEnabled": {
"type": "boolean"
},
"sources": {
"items": {
"type": "string"
},
"type": "array"
},
"winCountRemaining": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"CollectionsLcdsChampionSkinDTO": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"endDate": {
"format": "int64",
"type": "integer"
},
"freeToPlayReward": {
"type": "boolean"
},
"lastSelected": {
"type": "boolean"
},
"owned": {
"type": "boolean"
},
"purchaseDate": {
"format": "int64",
"type": "integer"
},
"skinId": {
"format": "int32",
"type": "integer"
},
"sources": {
"items": {
"type": "string"
},
"type": "array"
},
"stillObtainable": {
"type": "boolean"
},
"winCountRemaining": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"CollectionsLcdsClientDynamicConfigurationNotification": {
"properties": {
"configs": {
"type": "string"
},
"delta": {
"type": "boolean"
}
},
"type": "object"
},
"CollectionsLcdsRentalUpdateNotification": {
"properties": {
"data": {
"additionalProperties": true,
"type": "object"
},
"inventoryType": {
"type": "string"
}
},
"type": "object"
},
"CollectionsLcdsSimpleMessage": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"msgId": {
"type": "string"
},
"params": {
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"CollectionsLcdsSlotEntry": {
"properties": {
"runeId": {
"format": "int32",
"type": "integer"
},
"runeSlotId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"CollectionsLcdsSpellBookDTO": {
"properties": {
"bookPages": {
"items": {
"$ref": "#/definitions/CollectionsLcdsSpellBookPageDTO"
},
"type": "array"
},
"dateString": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"CollectionsLcdsSpellBookPageDTO": {
"properties": {
"createDate": {
"format": "int64",
"type": "integer"
},
"current": {
"type": "boolean"
},
"name": {
"type": "string"
},
"pageId": {
"format": "int32",
"type": "integer"
},
"slotEntries": {
"items": {
"$ref": "#/definitions/CollectionsLcdsSlotEntry"
},
"type": "array"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"CollectionsLcdsStoreFulfillmentNotification": {
"properties": {
"data": {
"additionalProperties": true,
"type": "object"
},
"inventoryType": {
"type": "string"
}
},
"type": "object"
},
"CollectionsLcdsSummonerIcon": {
"properties": {
"iconId": {
"format": "int32",
"type": "integer"
},
"purchaseDate": {
"format": "int64",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"CollectionsLcdsSummonerIconInventoryDTO": {
"properties": {
"dateString": {
"type": "string"
},
"summonerIcons": {
"items": {
"$ref": "#/definitions/CollectionsLcdsSummonerIcon"
},
"type": "array"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"CollectionsLcdsSummonerRune": {
"properties": {
"purchaseDate": {
"format": "int64",
"type": "integer"
},
"purchased": {
"format": "int64",
"type": "integer"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"runeId": {
"format": "int32",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"CollectionsLcdsSummonerRuneInventory": {
"properties": {
"dateString": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerRunes": {
"items": {
"$ref": "#/definitions/CollectionsLcdsSummonerRune"
},
"type": "array"
}
},
"type": "object"
},
"ContentItemIdentifier": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"CraftLootRefTransactionDTO": {
"properties": {
"lootNameRefIds": {
"items": {
"$ref": "#/definitions/LootNameRefId"
},
"type": "array"
},
"recipeName": {
"type": "string"
},
"repeat": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"DownloadUrlRequestV2": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"platformId": {
"type": "string"
}
},
"type": "object"
},
"DownloadUrlResponseV2": {
"properties": {
"url": {
"type": "string"
}
},
"type": "object"
},
"DynamicCelebrationMessagingNotificationResource": {
"properties": {
"celebrationBody": {
"type": "string"
},
"celebrationMessage": {
"type": "string"
},
"celebrationTitle": {
"type": "string"
},
"celebrationType": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"type": "string"
},
"itemQuantity": {
"type": "string"
},
"msgId": {
"type": "string"
},
"status": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"EndOfGameLcdsClientReportV1": {
"properties": {
"comments": {
"type": "string"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"offenderSummonerId": {
"format": "int64",
"type": "integer"
},
"offenses": {
"type": "string"
}
},
"type": "object"
},
"EndOfGameLcdsEndOfGameStats": {
"properties": {
"basePoints": {
"format": "int32",
"type": "integer"
},
"battleBoostIpEarned": {
"format": "int32",
"type": "integer"
},
"boostIpEarned": {
"format": "int32",
"type": "integer"
},
"boostXpEarned": {
"format": "int32",
"type": "integer"
},
"causedEarlySurrender": {
"type": "boolean"
},
"coOpVsAiMinutesLeftToday": {
"format": "int32",
"type": "integer"
},
"coOpVsAiMsecsUntilReset": {
"format": "int32",
"type": "integer"
},
"completionBonusPoints": {
"format": "int32",
"type": "integer"
},
"customMinutesLeftToday": {
"format": "int32",
"type": "integer"
},
"customMsecsUntilReset": {
"format": "int32",
"type": "integer"
},
"difficulty": {
"type": "string"
},
"earlySurrenderAccomplice": {
"type": "boolean"
},
"elo": {
"format": "int32",
"type": "integer"
},
"eloChange": {
"format": "int32",
"type": "integer"
},
"experienceEarned": {
"format": "int32",
"type": "integer"
},
"experienceTotal": {
"format": "int32",
"type": "integer"
},
"firstWinBonus": {
"format": "int32",
"type": "integer"
},
"gameEndedInEarlySurrender": {
"type": "boolean"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"gameLength": {
"format": "int32",
"type": "integer"
},
"gameMode": {
"type": "string"
},
"gameMutators": {
"items": {
"type": "string"
},
"type": "array"
},
"gameType": {
"type": "string"
},
"imbalancedTeamsNoPoints": {
"type": "boolean"
},
"invalid": {
"type": "boolean"
},
"ipEarned": {
"format": "int32",
"type": "integer"
},
"ipTotal": {
"format": "int32",
"type": "integer"
},
"leveledUp": {
"type": "boolean"
},
"loyaltyBoostIpEarned": {
"format": "int32",
"type": "integer"
},
"loyaltyBoostXpEarned": {
"format": "int32",
"type": "integer"
},
"myTeamInfo": {
"$ref": "#/definitions/EndOfGameLcdsTeamInfo"
},
"myTeamStatus": {
"type": "string"
},
"newSpells": {
"items": {
"$ref": "#/definitions/EndOfGameLcdsSpell"
},
"type": "array"
},
"odinBonusIp": {
"format": "int32",
"type": "integer"
},
"otherTeamInfo": {
"$ref": "#/definitions/EndOfGameLcdsTeamInfo"
},
"otherTeamPlayerParticipantStats": {
"items": {
"$ref": "#/definitions/EndOfGameLcdsPlayerParticipantStatsSummary"
},
"type": "array"
},
"partyRewardsBonusIpEarned": {
"format": "int32",
"type": "integer"
},
"pointsPenalties": {
"items": {
"$ref": "#/definitions/EndOfGameLcdsPointsPenalty"
},
"type": "array"
},
"previousLevel": {
"format": "int64",
"type": "integer"
},
"previousXpTotal": {
"format": "int64",
"type": "integer"
},
"queueBonusEarned": {
"format": "int32",
"type": "integer"
},
"queueType": {
"type": "string"
},
"ranked": {
"type": "boolean"
},
"reportGameId": {
"format": "int64",
"type": "integer"
},
"roomName": {
"type": "string"
},
"roomPassword": {
"type": "string"
},
"rpEarned": {
"format": "int32",
"type": "integer"
},
"sendStatsToTournamentProvider": {
"type": "boolean"
},
"skinId": {
"format": "int32",
"type": "integer"
},
"skinIndex": {
"format": "int32",
"type": "integer"
},
"summonerName": {
"type": "string"
},
"talentPointsGained": {
"format": "int32",
"type": "integer"
},
"teamEarlySurrendered": {
"type": "boolean"
},
"teamPlayerParticipantStats": {
"items": {
"$ref": "#/definitions/EndOfGameLcdsPlayerParticipantStatsSummary"
},
"type": "array"
},
"timeUntilNextFirstWinBonus": {
"format": "int32",
"type": "integer"
},
"userId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"EndOfGameLcdsHarassmentReport": {
"properties": {
"comment": {
"type": "string"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"offense": {
"type": "string"
},
"reportSource": {
"type": "string"
},
"reportedSummonerId": {
"format": "int64",
"type": "integer"
},
"reportingSummonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"EndOfGameLcdsPlayerParticipantStatsSummary": {
"properties": {
"botPlayer": {
"type": "boolean"
},
"championId": {
"format": "int32",
"type": "integer"
},
"elo": {
"format": "int32",
"type": "integer"
},
"eloChange": {
"format": "int32",
"type": "integer"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"leaver": {
"type": "boolean"
},
"leaves": {
"format": "int32",
"type": "integer"
},
"level": {
"format": "int32",
"type": "integer"
},
"losses": {
"format": "int32",
"type": "integer"
},
"profileIconId": {
"format": "int32",
"type": "integer"
},
"skinIndex": {
"format": "int32",
"type": "integer"
},
"skinName": {
"type": "string"
},
"spell1Id": {
"format": "int32",
"type": "integer"
},
"spell2Id": {
"format": "int32",
"type": "integer"
},
"statistics": {
"items": {
"$ref": "#/definitions/EndOfGameLcdsRawStatDTO"
},
"type": "array"
},
"summonerName": {
"type": "string"
},
"teamId": {
"format": "int32",
"type": "integer"
},
"userId": {
"format": "int64",
"type": "integer"
},
"wins": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"EndOfGameLcdsPointsPenalty": {
"properties": {
"penalty": {
"format": "double",
"type": "number"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"EndOfGameLcdsRawStatDTO": {
"properties": {
"statTypeName": {
"type": "string"
},
"value": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"EndOfGameLcdsSpell": {
"properties": {
"spellId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"EndOfGameLcdsTeamId": {
"properties": {
"fullId": {
"type": "string"
}
},
"type": "object"
},
"EndOfGameLcdsTeamInfo": {
"properties": {
"memberStatusString": {
"type": "string"
},
"name": {
"type": "string"
},
"secondsUntilEligibleForDeletion": {
"format": "int64",
"type": "integer"
},
"tag": {
"type": "string"
},
"teamId": {
"$ref": "#/definitions/EndOfGameLcdsTeamId"
}
},
"type": "object"
},
"EndOfGameStats": {
"properties": {
"timeUntilNextFirstWinBonus": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"EntitlementsToken": {
"properties": {
"accessToken": {
"type": "string"
},
"entitlements": {
"items": {
"type": "string"
},
"type": "array"
},
"issuer": {
"type": "string"
},
"subject": {
"type": "string"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"EogLcdsGameDTO": {
"properties": {
"bannedChampions": {
"items": {
"$ref": "#/definitions/BannedChampion"
},
"type": "array"
},
"gameState": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"teamOne": {
"items": {
"$ref": "#/definitions/PlayerParticipant"
},
"type": "array"
},
"teamTwo": {
"items": {
"$ref": "#/definitions/PlayerParticipant"
},
"type": "array"
}
},
"type": "object"
},
"FailedInvite": {
"properties": {
"exception": {
"$ref": "#/definitions/ClientRequestError"
},
"playerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"FellowPlayerInfo": {
"properties": {
"championId": {
"format": "int64",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"teamId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"GameQueuesLcdsAllowSpectators": {
"enum": [
"NONE",
"LOBBYONLY",
"DROPINONLY",
"ALL"
],
"type": "string"
},
"GameQueuesLcdsGameQueueConfig": {
"properties": {
"blockedMinutesThreshold": {
"format": "int32",
"type": "integer"
},
"botsCanSpawnOnBlueSide": {
"type": "boolean"
},
"cacheName": {
"type": "string"
},
"disallowFreeChampions": {
"type": "boolean"
},
"gameMode": {
"type": "string"
},
"gameMutators": {
"items": {
"type": "string"
},
"type": "array"
},
"gameTypeConfigId": {
"format": "int32",
"type": "integer"
},
"id": {
"format": "int32",
"type": "integer"
},
"lastToggledOffTime": {
"format": "int64",
"type": "integer"
},
"lastToggledOnTime": {
"format": "int64",
"type": "integer"
},
"mapSelectionAlgorithm": {
"type": "string"
},
"matchingThrottleConfig": {
"$ref": "#/definitions/GameQueuesLcdsMatchingThrottleConfig"
},
"maxLevel": {
"format": "int32",
"type": "integer"
},
"maxSummonerLevelForFirstWinOfTheDay": {
"format": "int32",
"type": "integer"
},
"maximumParticipantListSize": {
"format": "int32",
"type": "integer"
},
"minLevel": {
"format": "int32",
"type": "integer"
},
"minimumParticipantListSize": {
"format": "int32",
"type": "integer"
},
"minimumQueueDodgeDelayTime": {
"format": "int32",
"type": "integer"
},
"numPlayersPerTeam": {
"format": "int32",
"type": "integer"
},
"pointsConfigKey": {
"type": "string"
},
"queueBonusKey": {
"type": "string"
},
"queueState": {
"type": "string"
},
"queueStateString": {
"type": "string"
},
"randomizeTeamSizes": {
"type": "boolean"
},
"ranked": {
"type": "boolean"
},
"supportedMapIds": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"teamOnly": {
"type": "boolean"
},
"thresholdEnabled": {
"type": "boolean"
},
"thresholdSize": {
"format": "int64",
"type": "integer"
},
"type": {
"type": "string"
},
"typeString": {
"type": "string"
}
},
"type": "object"
},
"GameQueuesLcdsMatchingThrottleConfig": {
"properties": {
"cacheName": {
"type": "string"
},
"limit": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"GameflowLcdsGameDTO": {
"properties": {
"gameMode": {
"type": "string"
},
"gameState": {
"type": "string"
},
"gameType": {
"type": "string"
},
"gameTypeConfigId": {
"format": "int32",
"type": "integer"
},
"id": {
"format": "int64",
"type": "integer"
},
"mapId": {
"format": "int32",
"type": "integer"
},
"maxNumPlayers": {
"format": "int32",
"type": "integer"
},
"playerChampionSelections": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
"queueTypeName": {
"type": "string"
},
"spectatorDelay": {
"format": "int32",
"type": "integer"
},
"teamOne": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
"teamTwo": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"GameflowLcdsPlayerCredentialsDto": {
"properties": {
"encryptionKey": {
"type": "string"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"observer": {
"type": "boolean"
},
"observerEncryptionKey": {
"type": "string"
},
"observerServerIp": {
"type": "string"
},
"observerServerPort": {
"type": "integer"
},
"serverIp": {
"type": "string"
},
"serverPort": {
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"GameflowLcdsReconnectInfoDto": {
"properties": {
"game": {
"$ref": "#/definitions/GameflowLcdsGameDTO"
},
"playerCredentials": {
"$ref": "#/definitions/GameflowLcdsPlayerCredentialsDto"
},
"reconnectDelay": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"GcloudVoiceChatAudioPropertiesResource": {
"properties": {
"fastEnergyMeter": {
"format": "double",
"type": "number"
},
"isLoopbackEnabled": {
"type": "boolean"
},
"isMicActive": {
"type": "boolean"
},
"isSpeakerActive": {
"type": "boolean"
},
"micEnergy": {
"format": "int32",
"type": "integer"
},
"micVolume": {
"format": "int32",
"type": "integer"
},
"noiseFloorMeter": {
"format": "double",
"type": "number"
},
"speakerEnergy": {
"format": "int32",
"type": "integer"
},
"speakerVolume": {
"format": "int32",
"type": "integer"
},
"speechThresholdMeter": {
"format": "double",
"type": "number"
}
},
"type": "object"
},
"GcloudVoiceChatCallStatsResource": {
"properties": {
"callId": {
"type": "string"
},
"captureDeviceConsecutivelyReadCount": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"codecName": {
"type": "string"
},
"currentBars": {
"format": "int64",
"type": "integer"
},
"currentOpusBandwidth": {
"format": "int64",
"type": "integer"
},
"currentOpusBitRate": {
"format": "int64",
"type": "integer"
},
"currentOpusComplexity": {
"format": "int64",
"type": "integer"
},
"currentOpusMaxPacketSize": {
"format": "int64",
"type": "integer"
},
"currentOpusVbrMode": {
"format": "int64",
"type": "integer"
},
"incomingDiscarded": {
"format": "int64",
"type": "integer"
},
"incomingOutOfTime": {
"format": "int64",
"type": "integer"
},
"incomingPacketloss": {
"format": "int64",
"type": "integer"
},
"incomingReceived": {
"format": "int64",
"type": "integer"
},
"lastLatencyMeasured": {
"format": "double",
"type": "number"
},
"latencyMeasurementCount": {
"format": "int64",
"type": "integer"
},
"latencyPacketsDropped": {
"format": "int64",
"type": "integer"
},
"latencyPacketsLost": {
"format": "int64",
"type": "integer"
},
"latencyPacketsMalformed": {
"format": "int64",
"type": "integer"
},
"latencyPacketsNegativeLatency": {
"format": "int64",
"type": "integer"
},
"latencyPacketsSent": {
"format": "int64",
"type": "integer"
},
"latencySum": {
"format": "double",
"type": "number"
},
"maxLatency": {
"format": "double",
"type": "number"
},
"minLatency": {
"format": "double",
"type": "number"
},
"outgoingSent": {
"format": "int64",
"type": "integer"
},
"plcOn": {
"format": "int64",
"type": "integer"
},
"plcSyntheticFrames": {
"format": "int64",
"type": "integer"
},
"rFactor": {
"format": "double",
"type": "number"
},
"renderDeviceErrors": {
"format": "int64",
"type": "integer"
},
"renderDeviceOverruns": {
"format": "int64",
"type": "integer"
},
"renderDeviceUnderruns": {
"format": "int64",
"type": "integer"
},
"sampleIntervalBegin": {
"format": "double",
"type": "number"
},
"sampleIntervalEnd": {
"format": "double",
"type": "number"
}
},
"type": "object"
},
"GcloudVoiceChatCodecSettingsResource": {
"properties": {
"codecBandwidth": {
"format": "int32",
"type": "integer"
},
"codecBitrate": {
"format": "int32",
"type": "integer"
},
"codecComplexity": {
"format": "int32",
"type": "integer"
},
"codecVbrMode": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"GcloudVoiceChatConfigResource": {
"properties": {
"accessTokenUri": {
"type": "string"
},
"authTokenUri": {
"type": "string"
},
"jwt2gvtUrl": {
"type": "string"
},
"logLevel": {
"format": "int32",
"type": "integer"
},
"logLevelName": {
"type": "string"
},
"logsPath": {
"type": "string"
},
"provider": {
"type": "string"
},
"useExternalAuth": {
"type": "boolean"
},
"voiceDomain": {
"type": "string"
},
"voiceServerUri": {
"type": "string"
}
},
"type": "object"
},
"GcloudVoiceChatDeviceResource": {
"properties": {
"handle": {
"type": "string"
},
"is_current_device": {
"type": "boolean"
},
"is_default": {
"type": "boolean"
},
"is_effective_device": {
"type": "boolean"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"GcloudVoiceChatParticipantResource": {
"properties": {
"energy": {
"format": "int32",
"type": "integer"
},
"id": {
"type": "string"
},
"isMuted": {
"type": "boolean"
},
"isSpeaking": {
"type": "boolean"
},
"name": {
"type": "string"
},
"speakingTimestamp": {
"format": "int32",
"type": "integer"
},
"volume": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"GcloudVoiceChatPushToTalkResource": {
"properties": {
"pttEnabled": {
"type": "boolean"
},
"pttKeyBinding": {
"type": "string"
}
},
"type": "object"
},
"GcloudVoiceChatRsoAuthorizationResource": {
"properties": {
"currentAccountId": {
"format": "int64",
"type": "integer"
},
"currentPlatformId": {
"type": "string"
},
"subject": {
"type": "string"
}
},
"type": "object"
},
"GcloudVoiceChatSessionResource": {
"properties": {
"id": {
"type": "string"
},
"isMuted": {
"type": "boolean"
},
"isTransmitEnabled": {
"type": "boolean"
},
"participants": {
"items": {
"$ref": "#/definitions/GcloudVoiceChatParticipantResource"
},
"type": "array"
},
"status": {
"$ref": "#/definitions/GcloudVoiceChatSessionStatus"
},
"volume": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"GcloudVoiceChatSessionStatus": {
"enum": [
"active",
"onHold"
],
"type": "string"
},
"GcloudVoiceChatSettingsResource": {
"properties": {
"currentCaptureDeviceHandle": {
"type": "string"
},
"currentRenderDeviceHandle": {
"type": "string"
},
"localMicMuted": {
"type": "boolean"
},
"loopbackEnabled": {
"type": "boolean"
},
"micLevel": {
"format": "int32",
"type": "integer"
},