Created
July 18, 2018 22:48
-
-
Save Pupix/1078c64c9bc33809eccfd60556411679 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
}, | |
"speakerLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"vadHangoverTime": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"vadSensitivity": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"GcloudVoiceChatStateResource": { | |
"properties": { | |
"connected": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"GcloudVoiceChatUpdateCodecSettingsResource": { | |
"properties": { | |
"codecBandwidth": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"codecBitrate": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"codecComplexity": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"codecVbrMode": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"GcloudVoiceChatUpdateParticipantResource": { | |
"properties": { | |
"isMuted": { | |
"type": "boolean" | |
}, | |
"volume": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"GcloudVoiceChatUpdateSettingsResource": { | |
"properties": { | |
"currentCaptureDeviceHandle": { | |
"type": "string" | |
}, | |
"currentRenderDeviceHandle": { | |
"type": "string" | |
}, | |
"localMicMuted": { | |
"type": "boolean" | |
}, | |
"loopbackEnabled": { | |
"type": "boolean" | |
}, | |
"micLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"speakerLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"vadHangoverTime": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"vadSensitivity": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"GcloudVoiceChatVoiceErrorCounterResource": { | |
"properties": { | |
"count": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"error": { | |
"$ref": "#/definitions/GcloudVoiceChatVoiceErrorResource" | |
}, | |
"timeOfLastError": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"GcloudVoiceChatVoiceErrorResource": { | |
"properties": { | |
"errorString": { | |
"type": "string" | |
}, | |
"responseType": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"responseTypeString": { | |
"type": "string" | |
}, | |
"returnCode": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"statusCode": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"statusString": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"Highlight": { | |
"properties": { | |
"fileSizeBytes": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"filepath": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"mtimeIso8601": { | |
"type": "string" | |
}, | |
"mtimeMsUtc": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"url": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"HighlightsConfig": { | |
"properties": { | |
"invalidHighlightNameCharacters": { | |
"type": "string" | |
}, | |
"isHighlightsEnabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"HighlightsDynamicConfig": { | |
"properties": { | |
"Enabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"HighlightsSettingsData": { | |
"properties": { | |
"highlights-folder-path": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"HighlightsSettingsResource": { | |
"properties": { | |
"data": { | |
"$ref": "#/definitions/HighlightsSettingsData" | |
} | |
}, | |
"type": "object" | |
}, | |
"IdsDTO": { | |
"properties": { | |
"missionIds": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"seriesIds": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"KickoutMessage": { | |
"properties": { | |
"message": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LCDSBroadcastNotification": { | |
"properties": { | |
"broadcastMessages": { | |
"items": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LCDSChampionReward": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"skins": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LCDSLoyaltyRewards": { | |
"properties": { | |
"champions": { | |
"items": { | |
"$ref": "#/definitions/LCDSChampionReward" | |
}, | |
"type": "array" | |
}, | |
"ipBoost": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"xpBoost": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LCDSLoyaltyStateChangeNotification": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"notificationCategory": { | |
"$ref": "#/definitions/LCDSLoyaltyStateChangeNotificationCategory" | |
}, | |
"rewards": { | |
"$ref": "#/definitions/LCDSLoyaltyRewards" | |
} | |
}, | |
"type": "object" | |
}, | |
"LCDSLoyaltyStateChangeNotificationCategory": { | |
"enum": [ | |
"legacy", | |
"grant", | |
"expiry", | |
"change", | |
"revoke", | |
"disabled" | |
], | |
"type": "string" | |
}, | |
"LCDSPlayerMessagingSimpleMessage": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"bodyCode": { | |
"type": "string" | |
}, | |
"msgId": { | |
"type": "string" | |
}, | |
"params": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"titleCode": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LCDSPlayerMessagingSimpleMessageResponse": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"command": { | |
"type": "string" | |
}, | |
"msgId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsBotParticipant": { | |
"properties": { | |
"botSkillLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerInternalName": { | |
"type": "string" | |
}, | |
"summonerName": { | |
"type": "string" | |
}, | |
"teamId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsFailedJoinPlayer": { | |
"properties": { | |
"reasonFailed": { | |
"type": "string" | |
}, | |
"summoner": { | |
"$ref": "#/definitions/LcdsSummoner" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsGameDTO": { | |
"properties": { | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameMutators": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"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" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"observers": { | |
"items": { | |
"$ref": "#/definitions/LcdsPlayerParticipant" | |
}, | |
"type": "array" | |
}, | |
"optimisticLock": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"ownerSummary": { | |
"$ref": "#/definitions/LcdsPlayerParticipant" | |
}, | |
"passbackDataPacket": { | |
"type": "string" | |
}, | |
"passbackUrl": { | |
"type": "string" | |
}, | |
"practiceGameRewardsDisabledReasons": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"roomName": { | |
"type": "string" | |
}, | |
"roomPassword": { | |
"type": "string" | |
}, | |
"spectatorsAllowed": { | |
"type": "string" | |
}, | |
"teamOne": { | |
"items": { | |
"$ref": "#/definitions/LcdsPlayerParticipant" | |
}, | |
"type": "array" | |
}, | |
"teamTwo": { | |
"items": { | |
"$ref": "#/definitions/LcdsPlayerParticipant" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsGameInviteBaseRuntimeException": { | |
"properties": { | |
"rootCauseClassname": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsGameMap": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"displayName": { | |
"type": "string" | |
}, | |
"mapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minCustomPlayers": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"totalPlayers": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsGameNotification": { | |
"properties": { | |
"messageArgument": { | |
"type": "string" | |
}, | |
"messageCode": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsInvitationRequest": { | |
"properties": { | |
"gameMetaData": { | |
"type": "string" | |
}, | |
"invitationId": { | |
"type": "string" | |
}, | |
"invitationState": { | |
"$ref": "#/definitions/LcdsInvitationState" | |
}, | |
"invitePayload": { | |
"type": "string" | |
}, | |
"inviteType": { | |
"type": "string" | |
}, | |
"inviter": { | |
"$ref": "#/definitions/LcdsInviter" | |
}, | |
"owner": { | |
"$ref": "#/definitions/LcdsPlayer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsInvitationState": { | |
"enum": [ | |
"ACTIVE", | |
"ON_HOLD", | |
"REVOKED" | |
], | |
"type": "string" | |
}, | |
"LcdsInviteFailed": { | |
"properties": { | |
"exception": { | |
"$ref": "#/definitions/LcdsGameInviteBaseRuntimeException" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsInvitePrivileges": { | |
"properties": { | |
"canInvite": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsInvitee": { | |
"properties": { | |
"inviteeState": { | |
"$ref": "#/definitions/LcdsInviteeState" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsInviteeState": { | |
"enum": [ | |
"CREATOR", | |
"PENDING", | |
"DECLINED", | |
"ACCEPTED", | |
"ACCEPT_FAILED", | |
"JOINED", | |
"QUIT", | |
"KICKED", | |
"BANNED" | |
], | |
"type": "string" | |
}, | |
"LcdsInviter": { | |
"properties": { | |
"previousSeasonHighestTier": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsLobbyStatus": { | |
"properties": { | |
"chatKey": { | |
"type": "string" | |
}, | |
"gameMetaData": { | |
"type": "string" | |
}, | |
"invitationId": { | |
"type": "string" | |
}, | |
"invitees": { | |
"items": { | |
"$ref": "#/definitions/LcdsInvitee" | |
}, | |
"type": "array" | |
}, | |
"members": { | |
"items": { | |
"$ref": "#/definitions/LcdsMember" | |
}, | |
"type": "array" | |
}, | |
"owner": { | |
"$ref": "#/definitions/LcdsPlayer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsMember": { | |
"properties": { | |
"hasDelegatedInvitePower": { | |
"type": "boolean" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsPayloadDto": { | |
"properties": { | |
"body": { | |
"type": "string" | |
}, | |
"headers": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"method": { | |
"type": "string" | |
}, | |
"path": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsPlayer": { | |
"properties": { | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsPlayerParticipant": { | |
"properties": { | |
"botSkillLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerInternalName": { | |
"type": "string" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsPracticeGameConfig": { | |
"properties": { | |
"allowSpectators": { | |
"type": "string" | |
}, | |
"gameMap": { | |
"$ref": "#/definitions/LcdsGameMap" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameMutators": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"gameName": { | |
"type": "string" | |
}, | |
"gamePassword": { | |
"type": "string" | |
}, | |
"gameTypeConfig": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxNumPlayers": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"passbackDataPacket": { | |
"type": "string" | |
}, | |
"passbackUrl": { | |
"type": "string" | |
}, | |
"region": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsPracticeGameSearchResult": { | |
"properties": { | |
"allowSpectators": { | |
"type": "string" | |
}, | |
"gameMap": { | |
"$ref": "#/definitions/LcdsGameMap" | |
}, | |
"gameMapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"maxNumPlayers": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"owner": { | |
"$ref": "#/definitions/LcdsPlayerParticipant" | |
}, | |
"pickType": { | |
"type": "string" | |
}, | |
"privateGame": { | |
"type": "boolean" | |
}, | |
"spectatorCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"team1Count": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"team2Count": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsRemovalReason": { | |
"enum": [ | |
"KICKED", | |
"DESTROYED", | |
"PROGRESSED" | |
], | |
"type": "string" | |
}, | |
"LcdsRemovedFromLobbyNotification": { | |
"properties": { | |
"removalReason": { | |
"$ref": "#/definitions/LcdsRemovalReason" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsSimpleMessage": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"msgId": { | |
"type": "string" | |
}, | |
"params": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsSimpleMessageResponse": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"command": { | |
"type": "string" | |
}, | |
"msgId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsStartChampSelectDto": { | |
"properties": { | |
"invalidPlayers": { | |
"items": { | |
"$ref": "#/definitions/LcdsFailedJoinPlayer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LcdsSummoner": { | |
"properties": { | |
"name": { | |
"type": "string" | |
}, | |
"sumId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeagueTierAndRankDTO": { | |
"properties": { | |
"playerOrTeamId": { | |
"type": "string" | |
}, | |
"playerOrTeamName": { | |
"type": "string" | |
}, | |
"queueType": { | |
"$ref": "#/definitions/LeaguesLcdsQueueType" | |
}, | |
"rank": { | |
"$ref": "#/definitions/LeaguesLcdsLeagueRank" | |
}, | |
"tier": { | |
"$ref": "#/definitions/LeaguesLcdsLeagueTier" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsAggregatedStat": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"statType": { | |
"type": "string" | |
}, | |
"value": { | |
"format": "float", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsAggregatedStats": { | |
"properties": { | |
"key": { | |
"$ref": "#/definitions/LeaguesLcdsAggregatedStatsKey" | |
}, | |
"lifetimeStatistics": { | |
"items": { | |
"$ref": "#/definitions/LeaguesLcdsAggregatedStat" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsAggregatedStatsKey": { | |
"properties": { | |
"gameMode": { | |
"type": "string" | |
}, | |
"userId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsChampionStatInfo": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"stats": { | |
"items": { | |
"$ref": "#/definitions/LeaguesLcdsAggregatedStat" | |
}, | |
"type": "array" | |
}, | |
"totalGamesPlayed": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsLeagueItemDTO": { | |
"properties": { | |
"apexDaysUntilDecay": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"demotionWarning": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"displayDecayWarning": { | |
"type": "boolean" | |
}, | |
"freshBlood": { | |
"type": "boolean" | |
}, | |
"hotStreak": { | |
"type": "boolean" | |
}, | |
"inactive": { | |
"type": "boolean" | |
}, | |
"inactivityStatus": { | |
"type": "string" | |
}, | |
"leaguePoints": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"losses": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"miniSeries": { | |
"$ref": "#/definitions/LeaguesLcdsMiniSeriesDTO" | |
}, | |
"playerOrTeamId": { | |
"type": "string" | |
}, | |
"playerOrTeamName": { | |
"type": "string" | |
}, | |
"previousDayLeaguePosition": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"queueType": { | |
"$ref": "#/definitions/LeaguesLcdsQueueType" | |
}, | |
"rank": { | |
"$ref": "#/definitions/LeaguesLcdsLeagueRank" | |
}, | |
"tier": { | |
"$ref": "#/definitions/LeaguesLcdsLeagueTier" | |
}, | |
"timeUntilInactivityStatusChanges": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"veteran": { | |
"type": "boolean" | |
}, | |
"wins": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsLeagueListDTO": { | |
"properties": { | |
"entries": { | |
"items": { | |
"$ref": "#/definitions/LeaguesLcdsLeagueItemDTO" | |
}, | |
"type": "array" | |
}, | |
"maxLeagueSize": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"nextApexUpdate": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"queue": { | |
"$ref": "#/definitions/LeaguesLcdsQueueType" | |
}, | |
"requestorsName": { | |
"type": "string" | |
}, | |
"tier": { | |
"$ref": "#/definitions/LeaguesLcdsLeagueTier" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsLeagueRank": { | |
"enum": [ | |
"I", | |
"II", | |
"III", | |
"IV", | |
"V" | |
], | |
"type": "string" | |
}, | |
"LeaguesLcdsLeagueTier": { | |
"enum": [ | |
"BRONZE", | |
"SILVER", | |
"GOLD", | |
"PLATINUM", | |
"DIAMOND", | |
"MASTER", | |
"CHALLENGER" | |
], | |
"type": "string" | |
}, | |
"LeaguesLcdsMiniSeriesDTO": { | |
"properties": { | |
"losses": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"progress": { | |
"type": "string" | |
}, | |
"target": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"timeLeftToPlayMillis": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"wins": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsPlayerAggregatedStats": { | |
"properties": { | |
"aggregatedStats": { | |
"$ref": "#/definitions/LeaguesLcdsAggregatedStats" | |
}, | |
"playerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsQueueType": { | |
"enum": [ | |
"RANKED_SOLO_5x5", | |
"RANKED_FLEX_SR", | |
"RANKED_FLEX_TT" | |
], | |
"type": "string" | |
}, | |
"LeaguesLcdsRosterDTO": { | |
"properties": { | |
"memberList": { | |
"items": { | |
"$ref": "#/definitions/LeaguesLcdsTeamMemberInfoDTO" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsSimpleMessage": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"msgId": { | |
"type": "string" | |
}, | |
"params": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsSummonerLeagueItemsDTO": { | |
"properties": { | |
"summonerLeagues": { | |
"items": { | |
"$ref": "#/definitions/LeaguesLcdsLeagueItemDTO" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsSummonerLeagueListDTO": { | |
"properties": { | |
"entries": { | |
"items": { | |
"$ref": "#/definitions/LeaguesLcdsLeagueItemDTO" | |
}, | |
"type": "array" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"nextApexUpdate": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"queue": { | |
"$ref": "#/definitions/LeaguesLcdsQueueType" | |
}, | |
"requestorsName": { | |
"type": "string" | |
}, | |
"requestorsRank": { | |
"$ref": "#/definitions/LeaguesLcdsLeagueRank" | |
}, | |
"tier": { | |
"$ref": "#/definitions/LeaguesLcdsLeagueTier" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsSummonerLeaguesDTO": { | |
"properties": { | |
"summonerLeagues": { | |
"items": { | |
"$ref": "#/definitions/LeaguesLcdsSummonerLeagueListDTO" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsTeamAggregatedStats": { | |
"properties": { | |
"id": { | |
"$ref": "#/definitions/LeaguesLcdsTeamIdDTO" | |
}, | |
"playerAggregatedStatsList": { | |
"items": { | |
"$ref": "#/definitions/LeaguesLcdsPlayerAggregatedStats" | |
}, | |
"type": "array" | |
}, | |
"queueType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsTeamDTO": { | |
"properties": { | |
"name": { | |
"type": "string" | |
}, | |
"roster": { | |
"$ref": "#/definitions/LeaguesLcdsRosterDTO" | |
}, | |
"teamId": { | |
"$ref": "#/definitions/LeaguesLcdsTeamIdDTO" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsTeamIdDTO": { | |
"properties": { | |
"fullId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesLcdsTeamMemberInfoDTO": { | |
"properties": { | |
"playerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaguesSimpleMessageResponse": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"command": { | |
"type": "string" | |
}, | |
"msgId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaverBusterLcdsMatchmakingNotification": { | |
"properties": { | |
"playerJoinFailures": { | |
"items": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaverBusterLcdsSimpleMessage": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"msgId": { | |
"type": "string" | |
}, | |
"params": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaverBusterNotificationResource": { | |
"properties": { | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"msgId": { | |
"type": "string" | |
}, | |
"punishedGamesRemaining": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": { | |
"$ref": "#/definitions/LeaverBusterNotificationType" | |
} | |
}, | |
"type": "object" | |
}, | |
"LeaverBusterNotificationType": { | |
"enum": [ | |
"Invalid", | |
"TaintedWarning", | |
"PunishmentIncurred", | |
"PunishedGamesRemaining", | |
"Reforming" | |
], | |
"type": "string" | |
}, | |
"LeaverBusterSimpleMessageResponse": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"command": { | |
"type": "string" | |
}, | |
"msgId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LobbyClientDynamicConfigurationNotification": { | |
"properties": { | |
"configs": { | |
"type": "string" | |
}, | |
"delta": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LogEvent": { | |
"description": "Describes a log entry.", | |
"properties": { | |
"message": { | |
"type": "string" | |
}, | |
"severity": { | |
"$ref": "#/definitions/LogSeverityLevels" | |
} | |
}, | |
"type": "object" | |
}, | |
"LogSeverityLevels": { | |
"description": "Allowable severity levels for log events.", | |
"enum": [ | |
"Okay", | |
"Warning", | |
"Error", | |
"Always" | |
], | |
"type": "string" | |
}, | |
"LoginDataPacket": { | |
"properties": { | |
"timeUntilFirstWinOfDay": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"idToken": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolAccountVerificationAVSConfig": { | |
"properties": { | |
"Enabled": { | |
"type": "boolean" | |
}, | |
"PasswordEnabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAccountVerificationAuthenticateRequest": { | |
"properties": { | |
"password": { | |
"type": "string" | |
}, | |
"username": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAccountVerificationAuthenticateResponse": { | |
"properties": { | |
"message": { | |
"type": "string" | |
}, | |
"status": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"success": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAccountVerificationDeviceResponse": { | |
"properties": { | |
"message": { | |
"type": "string" | |
}, | |
"status": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"success": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAccountVerificationInvalidateResponse": { | |
"properties": { | |
"message": { | |
"type": "string" | |
}, | |
"smsTokenExpireDurationInSec": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"status": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"success": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAccountVerificationIsVerifiedResponse": { | |
"properties": { | |
"message": { | |
"type": "string" | |
}, | |
"status": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"success": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAccountVerificationLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolAccountVerificationLoginSessionState" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"username": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAccountVerificationLoginSessionState": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolAccountVerificationSendTokenRequest": { | |
"properties": { | |
"device": { | |
"type": "string" | |
}, | |
"locale": { | |
"type": "string" | |
}, | |
"mediator": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAccountVerificationSendTokenResponse": { | |
"properties": { | |
"message": { | |
"type": "string" | |
}, | |
"smsTokenExpireDurationInSec": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"status": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"success": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAccountVerificationVerifyRequest": { | |
"properties": { | |
"mediator": { | |
"type": "string" | |
}, | |
"token": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAccountVerificationVerifyResponse": { | |
"properties": { | |
"message": { | |
"type": "string" | |
}, | |
"status": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"success": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAcsAcsChampionGames": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"lane": { | |
"type": "string" | |
}, | |
"queue": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"role": { | |
"type": "string" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAcsAcsChampionGamesCollection": { | |
"properties": { | |
"champions": { | |
"items": { | |
"$ref": "#/definitions/LolAcsAcsChampionGames" | |
}, | |
"type": "array" | |
}, | |
"gameCount": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAcsAcsEndPoint": { | |
"properties": { | |
"url": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAcsLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gasToken": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"idToken": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolAcsLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolAcsLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolBannersBannerFlag": { | |
"properties": { | |
"earnedDateIso8601": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"level": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"seasonId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"theme": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolBannersBannerFrame": { | |
"properties": { | |
"level": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolBannersCapClashFlagEntitlementPayload": { | |
"properties": { | |
"rewardSpec": { | |
"$ref": "#/definitions/LolBannersClashV2FlagRewardSpec" | |
}, | |
"rewardType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolBannersCapClashFrameEntitlementPayload": { | |
"properties": { | |
"rewardSpec": { | |
"$ref": "#/definitions/LolBannersClashV2FrameRewardSpec" | |
}, | |
"rewardType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolBannersClashV2FlagRewardSpec": { | |
"properties": { | |
"level": { | |
"type": "string" | |
}, | |
"seasonId": { | |
"type": "string" | |
}, | |
"theme": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolBannersClashV2FrameRewardSpec": { | |
"properties": { | |
"level": { | |
"type": "string" | |
}, | |
"seasonId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolBannersInventoryItemWithPayload": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"payload": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"purchaseDate": { | |
"type": "string" | |
}, | |
"uuid": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolBannersInventoryItemsByType": { | |
"properties": { | |
"TOURNAMENT_FLAG": { | |
"items": { | |
"$ref": "#/definitions/LolBannersTournamentFlagInventoryItem" | |
}, | |
"type": "array" | |
}, | |
"TOURNAMENT_FRAME": { | |
"items": { | |
"$ref": "#/definitions/LolBannersTournamentFrameInventoryItem" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolBannersInventoryResponse": { | |
"properties": { | |
"items": { | |
"$ref": "#/definitions/LolBannersInventoryItemsByType" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolBannersLoadoutsSlot": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolBannersSummonerProfileUpdate": { | |
"properties": { | |
"key": { | |
"type": "string" | |
}, | |
"value": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolBannersTournamentFlagInventoryItem": { | |
"properties": { | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"payload": { | |
"$ref": "#/definitions/LolBannersCapClashFlagEntitlementPayload" | |
}, | |
"purchaseDate": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolBannersTournamentFrameInventoryItem": { | |
"properties": { | |
"payload": { | |
"$ref": "#/definitions/LolBannersCapClashFrameEntitlementPayload" | |
}, | |
"purchaseDate": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCareerStatsCareerStatsQueueType": { | |
"enum": [ | |
"draft5", | |
"rank5flex", | |
"rank5solo", | |
"blind5", | |
"aram", | |
"blind3", | |
"rank3flex", | |
"other" | |
], | |
"type": "string" | |
}, | |
"LolCareerStatsChampionMatchup": { | |
"properties": { | |
"championGeneralWinRate": { | |
"format": "float", | |
"type": "number" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"matchupWinRate": { | |
"format": "float", | |
"type": "number" | |
}, | |
"opponentChampionId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"position": { | |
"$ref": "#/definitions/LolCareerStatsSummonersRiftPosition" | |
}, | |
"winrateRank": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCareerStatsChampionQueueStatsResponse": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"position": { | |
"$ref": "#/definitions/LolCareerStatsSummonersRiftPosition" | |
}, | |
"queueType": { | |
"$ref": "#/definitions/LolCareerStatsCareerStatsQueueType" | |
}, | |
"rankTier": { | |
"$ref": "#/definitions/LolCareerStatsRankedTier" | |
}, | |
"stats": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCareerStatsChampionStatistics": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championMatchups": { | |
"items": { | |
"$ref": "#/definitions/LolCareerStatsChampionMatchup" | |
}, | |
"type": "array" | |
}, | |
"experts": { | |
"items": { | |
"$ref": "#/definitions/LolCareerStatsExpertPlayer" | |
}, | |
"type": "array" | |
}, | |
"queueStats": { | |
"items": { | |
"$ref": "#/definitions/LolCareerStatsStatisticsByQueue" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCareerStatsEntitlementsToken": { | |
"properties": { | |
"entitlements": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCareerStatsExpertPlayer": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"expertRank": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numOfGames": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"position": { | |
"$ref": "#/definitions/LolCareerStatsSummonersRiftPosition" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
}, | |
"winRate": { | |
"format": "float", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCareerStatsMatchupQueryRequest": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"position": { | |
"$ref": "#/definitions/LolCareerStatsSummonersRiftPosition" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCareerStatsPositionStatistics": { | |
"properties": { | |
"experts": { | |
"items": { | |
"$ref": "#/definitions/LolCareerStatsExpertPlayer" | |
}, | |
"type": "array" | |
}, | |
"position": { | |
"$ref": "#/definitions/LolCareerStatsSummonersRiftPosition" | |
}, | |
"queueStats": { | |
"items": { | |
"$ref": "#/definitions/LolCareerStatsStatisticsByQueue" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCareerStatsPositionStatsQueryRequest": { | |
"properties": { | |
"position": { | |
"$ref": "#/definitions/LolCareerStatsSummonersRiftPosition" | |
}, | |
"queueType": { | |
"$ref": "#/definitions/LolCareerStatsCareerStatsQueueType" | |
}, | |
"rankTier": { | |
"$ref": "#/definitions/LolCareerStatsRankedTier" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCareerStatsRankedTier": { | |
"enum": [ | |
"ALL", | |
"UNRANKED", | |
"BRONZE", | |
"SILVER", | |
"GOLD", | |
"PLATINUM", | |
"DIAMOND", | |
"MASTER", | |
"CHALLENGER" | |
], | |
"type": "string" | |
}, | |
"LolCareerStatsStatisticsByQueue": { | |
"properties": { | |
"queueType": { | |
"$ref": "#/definitions/LolCareerStatsCareerStatsQueueType" | |
}, | |
"stats": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCareerStatsStatisticsPercentilesResponse": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"position": { | |
"$ref": "#/definitions/LolCareerStatsSummonersRiftPosition" | |
}, | |
"queueType": { | |
"$ref": "#/definitions/LolCareerStatsCareerStatsQueueType" | |
}, | |
"rankTier": { | |
"$ref": "#/definitions/LolCareerStatsRankedTier" | |
}, | |
"stats": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCareerStatsStatsQueryRequest": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"position": { | |
"$ref": "#/definitions/LolCareerStatsSummonersRiftPosition" | |
}, | |
"queueType": { | |
"$ref": "#/definitions/LolCareerStatsCareerStatsQueueType" | |
}, | |
"rankTier": { | |
"$ref": "#/definitions/LolCareerStatsRankedTier" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCareerStatsSummonersRiftPosition": { | |
"enum": [ | |
"ALL", | |
"UNKNOWN", | |
"TOP", | |
"JUNGLE", | |
"MID", | |
"BOTTOM", | |
"SUPPORT" | |
], | |
"type": "string" | |
}, | |
"LolCatalogCatalogItem": { | |
"properties": { | |
"active": { | |
"type": "boolean" | |
}, | |
"inactiveDate": { | |
"type": "string" | |
}, | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"prices": { | |
"items": { | |
"$ref": "#/definitions/LolCatalogItemCost" | |
}, | |
"type": "array" | |
}, | |
"releaseDate": { | |
"type": "string" | |
}, | |
"sale": { | |
"$ref": "#/definitions/LolCatalogSale" | |
}, | |
"subInventoryType": { | |
"type": "string" | |
}, | |
"tags": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCatalogCatalogPluginItem": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"imagePath": { | |
"type": "string" | |
}, | |
"inactiveDate": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"owned": { | |
"type": "boolean" | |
}, | |
"prices": { | |
"items": { | |
"$ref": "#/definitions/LolCatalogCatalogPluginPrice" | |
}, | |
"type": "array" | |
}, | |
"purchaseDate": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"releaseDate": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCatalogCatalogPluginPrice": { | |
"properties": { | |
"cost": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currency": { | |
"type": "string" | |
}, | |
"sale": { | |
"$ref": "#/definitions/LolCatalogCatalogPluginSale" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCatalogCatalogPluginSale": { | |
"properties": { | |
"cost": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"discount": { | |
"format": "float", | |
"type": "number" | |
}, | |
"endDate": { | |
"type": "string" | |
}, | |
"startDate": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCatalogGameDataSummonerEmote": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inventoryIcon": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCatalogInventoryEmote": { | |
"properties": { | |
"itemId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"ownershipType": { | |
"$ref": "#/definitions/LolCatalogInventoryOwnership" | |
}, | |
"purchaseDate": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCatalogInventoryOwnership": { | |
"enum": [ | |
"OWNED", | |
"RENTED", | |
"F2P" | |
], | |
"type": "string" | |
}, | |
"LolCatalogItemCost": { | |
"properties": { | |
"cost": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currency": { | |
"type": "string" | |
}, | |
"discount": { | |
"format": "float", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCatalogSale": { | |
"properties": { | |
"endDate": { | |
"type": "string" | |
}, | |
"prices": { | |
"items": { | |
"$ref": "#/definitions/LolCatalogItemCost" | |
}, | |
"type": "array" | |
}, | |
"startDate": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectChampSelectAction": { | |
"properties": { | |
"actorCellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"completed": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectChampSelectBannableChampions": { | |
"properties": { | |
"championIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectChampSelectBannedChampions": { | |
"properties": { | |
"myTeamBans": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"numBans": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"theirTeamBans": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectChampSelectChatRoomDetails": { | |
"properties": { | |
"chatRoomName": { | |
"type": "string" | |
}, | |
"chatRoomPassword": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectChampSelectDisabledChampions": { | |
"properties": { | |
"championIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectChampSelectMySelection": { | |
"properties": { | |
"selectedSkinId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"spell1Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"spell2Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"wardSkinId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectChampSelectPickableChampions": { | |
"properties": { | |
"championIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectChampSelectPickableSkins": { | |
"properties": { | |
"skinIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectChampSelectPlayerSelection": { | |
"properties": { | |
"assignedPosition": { | |
"type": "string" | |
}, | |
"cellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championPickIntent": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"playerType": { | |
"type": "string" | |
}, | |
"selectedSkinId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"spell1Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"spell2Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"team": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"wardSkinId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectChampSelectSession": { | |
"properties": { | |
"actions": { | |
"items": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "array" | |
}, | |
"allowBattleBoost": { | |
"type": "boolean" | |
}, | |
"allowDuplicatePicks": { | |
"type": "boolean" | |
}, | |
"allowRerolling": { | |
"type": "boolean" | |
}, | |
"allowSkinSelection": { | |
"type": "boolean" | |
}, | |
"bans": { | |
"$ref": "#/definitions/LolChampSelectChampSelectBannedChampions" | |
}, | |
"benchChampionIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"benchEnabled": { | |
"type": "boolean" | |
}, | |
"boostableSkinCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"chatDetails": { | |
"$ref": "#/definitions/LolChampSelectChampSelectChatRoomDetails" | |
}, | |
"counter": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isSpectating": { | |
"type": "boolean" | |
}, | |
"localPlayerCellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"myTeam": { | |
"items": { | |
"$ref": "#/definitions/LolChampSelectChampSelectPlayerSelection" | |
}, | |
"type": "array" | |
}, | |
"rerollsRemaining": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"theirTeam": { | |
"items": { | |
"$ref": "#/definitions/LolChampSelectChampSelectPlayerSelection" | |
}, | |
"type": "array" | |
}, | |
"timer": { | |
"$ref": "#/definitions/LolChampSelectChampSelectTimer" | |
}, | |
"trades": { | |
"items": { | |
"$ref": "#/definitions/LolChampSelectChampSelectTradeContract" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectChampSelectTimer": { | |
"properties": { | |
"adjustedTimeLeftInPhase": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"adjustedTimeLeftInPhaseInSec": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"internalNowInEpochMs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isInfinite": { | |
"type": "boolean" | |
}, | |
"phase": { | |
"type": "string" | |
}, | |
"timeLeftInPhase": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"timeLeftInPhaseInSec": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"totalTimeInPhase": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectChampSelectTradeContract": { | |
"properties": { | |
"cellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolChampSelectChampSelectTradeState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectChampSelectTradeState": { | |
"enum": [ | |
"AVAILABLE", | |
"BUSY", | |
"INVALID", | |
"RECEIVED", | |
"SENT" | |
], | |
"type": "string" | |
}, | |
"LolChampSelectLegacyChampSelectAction": { | |
"properties": { | |
"actorCellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"completed": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"pickTurn": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyChampSelectBannableChampions": { | |
"properties": { | |
"championIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyChampSelectBannedChampions": { | |
"properties": { | |
"myTeamBans": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"numBans": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"theirTeamBans": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyChampSelectChatRoomDetails": { | |
"properties": { | |
"chatRoomName": { | |
"type": "string" | |
}, | |
"chatRoomPassword": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyChampSelectMySelection": { | |
"properties": { | |
"selectedSkinId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"spell1Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"spell2Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"wardSkinId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyChampSelectPickableChampions": { | |
"properties": { | |
"championIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyChampSelectPlayerSelection": { | |
"properties": { | |
"assignedPosition": { | |
"type": "string" | |
}, | |
"cellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championPickIntent": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"playerType": { | |
"type": "string" | |
}, | |
"selectedSkinId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"spell1Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"spell2Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"team": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"wardSkinId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyChampSelectSession": { | |
"properties": { | |
"actions": { | |
"items": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "array" | |
}, | |
"allowBattleBoost": { | |
"type": "boolean" | |
}, | |
"allowRerolling": { | |
"type": "boolean" | |
}, | |
"allowSkinSelection": { | |
"type": "boolean" | |
}, | |
"bans": { | |
"$ref": "#/definitions/LolChampSelectLegacyChampSelectBannedChampions" | |
}, | |
"chatDetails": { | |
"$ref": "#/definitions/LolChampSelectLegacyChampSelectChatRoomDetails" | |
}, | |
"isSpectating": { | |
"type": "boolean" | |
}, | |
"localPlayerCellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"myTeam": { | |
"items": { | |
"$ref": "#/definitions/LolChampSelectLegacyChampSelectPlayerSelection" | |
}, | |
"type": "array" | |
}, | |
"rerollsRemaining": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"theirTeam": { | |
"items": { | |
"$ref": "#/definitions/LolChampSelectLegacyChampSelectPlayerSelection" | |
}, | |
"type": "array" | |
}, | |
"timer": { | |
"$ref": "#/definitions/LolChampSelectLegacyChampSelectTimer" | |
}, | |
"trades": { | |
"items": { | |
"$ref": "#/definitions/LolChampSelectLegacyChampSelectTradeContract" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyChampSelectTimer": { | |
"properties": { | |
"adjustedTimeLeftInPhase": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"adjustedTimeLeftInPhaseInSec": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"internalNowInEpochMs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isInfinite": { | |
"type": "boolean" | |
}, | |
"phase": { | |
"type": "string" | |
}, | |
"timeLeftInPhase": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"timeLeftInPhaseInSec": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"totalTimeInPhase": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyChampSelectTradeContract": { | |
"properties": { | |
"cellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolChampSelectLegacyChampSelectTradeState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyChampSelectTradeState": { | |
"enum": [ | |
"AVAILABLE", | |
"BUSY", | |
"INVALID", | |
"RECEIVED", | |
"SENT" | |
], | |
"type": "string" | |
}, | |
"LolChampSelectLegacyCollectionsChampion": { | |
"properties": { | |
"freeToPlay": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolChampSelectLegacyCollectionsOwnership" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyCollectionsOwnership": { | |
"properties": { | |
"freeToPlayReward": { | |
"type": "boolean" | |
}, | |
"owned": { | |
"type": "boolean" | |
}, | |
"rental": { | |
"$ref": "#/definitions/LolChampSelectLegacyCollectionsRental" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyCollectionsRental": { | |
"properties": { | |
"rented": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyGameflowGameClient": { | |
"properties": { | |
"running": { | |
"type": "boolean" | |
}, | |
"visible": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyGameflowGameData": { | |
"properties": { | |
"queue": { | |
"$ref": "#/definitions/LolChampSelectLegacyQueue" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyGameflowGameDodge": { | |
"properties": { | |
"dodgeIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolChampSelectLegacyGameflowGameDodgeState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyGameflowGameDodgeState": { | |
"enum": [ | |
"Invalid", | |
"PartyDodged", | |
"StrangerDodged", | |
"TournamentDodged" | |
], | |
"type": "string" | |
}, | |
"LolChampSelectLegacyGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolChampSelectLegacyGameflowSession": { | |
"properties": { | |
"gameClient": { | |
"$ref": "#/definitions/LolChampSelectLegacyGameflowGameClient" | |
}, | |
"gameData": { | |
"$ref": "#/definitions/LolChampSelectLegacyGameflowGameData" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolChampSelectLegacyGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyLobbyStatus": { | |
"properties": { | |
"allowedPlayAgain": { | |
"type": "boolean" | |
}, | |
"isCustom": { | |
"type": "boolean" | |
}, | |
"isLeader": { | |
"type": "boolean" | |
}, | |
"isSpectator": { | |
"type": "boolean" | |
}, | |
"memberSummonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"connected": { | |
"type": "boolean" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolChampSelectLegacyLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolChampSelectLegacyPlayerStatus": { | |
"properties": { | |
"currentLobbyStatus": { | |
"$ref": "#/definitions/LolChampSelectLegacyLobbyStatus" | |
}, | |
"lastQueuedLobbyStatus": { | |
"$ref": "#/definitions/LolChampSelectLegacyLobbyStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyQueue": { | |
"properties": { | |
"areFreeChampionsAllowed": { | |
"type": "boolean" | |
}, | |
"gameTypeConfig": { | |
"$ref": "#/definitions/LolChampSelectLegacyQueueGameTypeConfig" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyQueueGameTypeConfig": { | |
"properties": { | |
"allowTrades": { | |
"type": "boolean" | |
}, | |
"battleBoost": { | |
"type": "boolean" | |
}, | |
"maxAllowableBans": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacySummoner": { | |
"properties": { | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampSelectLegacyTeamBoost": { | |
"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" | |
}, | |
"LolChampSelectTeamBoost": { | |
"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" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"unlocked": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsCollectionsChampion": { | |
"properties": { | |
"active": { | |
"type": "boolean" | |
}, | |
"alias": { | |
"type": "string" | |
}, | |
"banVoPath": { | |
"type": "string" | |
}, | |
"botEnabled": { | |
"type": "boolean" | |
}, | |
"chooseVoPath": { | |
"type": "string" | |
}, | |
"disabledQueues": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"freeToPlay": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolChampionsCollectionsOwnership" | |
}, | |
"passive": { | |
"$ref": "#/definitions/LolChampionsCollectionsChampionSpell" | |
}, | |
"purchased": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rankedPlayEnabled": { | |
"type": "boolean" | |
}, | |
"roles": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"skins": { | |
"items": { | |
"$ref": "#/definitions/LolChampionsCollectionsChampionSkin" | |
}, | |
"type": "array" | |
}, | |
"spells": { | |
"items": { | |
"$ref": "#/definitions/LolChampionsCollectionsChampionSpell" | |
}, | |
"type": "array" | |
}, | |
"squarePortraitPath": { | |
"type": "string" | |
}, | |
"stingerSfxPath": { | |
"type": "string" | |
}, | |
"title": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsCollectionsChampionChroma": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"chromaPath": { | |
"type": "string" | |
}, | |
"colors": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"disabled": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"lastSelected": { | |
"type": "boolean" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolChampionsCollectionsOwnership" | |
}, | |
"stillObtainable": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsCollectionsChampionMinimal": { | |
"properties": { | |
"active": { | |
"type": "boolean" | |
}, | |
"alias": { | |
"type": "string" | |
}, | |
"banVoPath": { | |
"type": "string" | |
}, | |
"botEnabled": { | |
"type": "boolean" | |
}, | |
"chooseVoPath": { | |
"type": "string" | |
}, | |
"disabledQueues": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"freeToPlay": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolChampionsCollectionsOwnership" | |
}, | |
"purchased": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rankedPlayEnabled": { | |
"type": "boolean" | |
}, | |
"roles": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"squarePortraitPath": { | |
"type": "string" | |
}, | |
"stingerSfxPath": { | |
"type": "string" | |
}, | |
"title": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsCollectionsChampionPlayableCounts": { | |
"properties": { | |
"championsFreeToPlay": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championsFreeToPlayReward": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championsOwned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championsRented": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsCollectionsChampionSkin": { | |
"properties": { | |
"cardPath": { | |
"type": "string" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"chromaPath": { | |
"type": "string" | |
}, | |
"chromas": { | |
"items": { | |
"$ref": "#/definitions/LolChampionsCollectionsChampionChroma" | |
}, | |
"type": "array" | |
}, | |
"disabled": { | |
"type": "boolean" | |
}, | |
"emblems": { | |
"items": { | |
"$ref": "#/definitions/LolChampionsCollectionsChampionSkinEmblem" | |
}, | |
"type": "array" | |
}, | |
"featuresText": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isBase": { | |
"type": "boolean" | |
}, | |
"lastSelected": { | |
"type": "boolean" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolChampionsCollectionsOwnership" | |
}, | |
"rarityGemPath": { | |
"type": "string" | |
}, | |
"skinType": { | |
"type": "string" | |
}, | |
"splashPath": { | |
"type": "string" | |
}, | |
"splashVideoPath": { | |
"type": "string" | |
}, | |
"stillObtainable": { | |
"type": "boolean" | |
}, | |
"tilePath": { | |
"type": "string" | |
}, | |
"uncenteredSplashPath": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsCollectionsChampionSkinEmblem": { | |
"properties": { | |
"emblemPath": { | |
"$ref": "#/definitions/LolChampionsCollectionsChampionSkinEmblemPath" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"positions": { | |
"$ref": "#/definitions/LolChampionsCollectionsChampionSkinEmblemPosition" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsCollectionsChampionSkinEmblemPath": { | |
"properties": { | |
"large": { | |
"type": "string" | |
}, | |
"small": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsCollectionsChampionSkinEmblemPosition": { | |
"properties": { | |
"horizontal": { | |
"type": "string" | |
}, | |
"vertical": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsCollectionsChampionSkinMinimal": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"chromaPath": { | |
"type": "string" | |
}, | |
"disabled": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isBase": { | |
"type": "boolean" | |
}, | |
"lastSelected": { | |
"type": "boolean" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolChampionsCollectionsOwnership" | |
}, | |
"splashPath": { | |
"type": "string" | |
}, | |
"stillObtainable": { | |
"type": "boolean" | |
}, | |
"tilePath": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsCollectionsChampionSpell": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsCollectionsOwnership": { | |
"properties": { | |
"freeToPlayReward": { | |
"type": "boolean" | |
}, | |
"owned": { | |
"type": "boolean" | |
}, | |
"rental": { | |
"$ref": "#/definitions/LolChampionsCollectionsRental" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsCollectionsRental": { | |
"properties": { | |
"endDate": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"purchaseDate": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rented": { | |
"type": "boolean" | |
}, | |
"winCountRemaining": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsGameDataChampion": { | |
"properties": { | |
"alias": { | |
"type": "string" | |
}, | |
"banVoPath": { | |
"type": "string" | |
}, | |
"chooseVoPath": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"passive": { | |
"$ref": "#/definitions/LolChampionsGameDataChampionSpell" | |
}, | |
"roles": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"skins": { | |
"items": { | |
"$ref": "#/definitions/LolChampionsGameDataChampionSkin" | |
}, | |
"type": "array" | |
}, | |
"spells": { | |
"items": { | |
"$ref": "#/definitions/LolChampionsGameDataChampionSpell" | |
}, | |
"type": "array" | |
}, | |
"squarePortraitPath": { | |
"type": "string" | |
}, | |
"stingerSfxPath": { | |
"type": "string" | |
}, | |
"title": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsGameDataChampionChroma": { | |
"properties": { | |
"chromaPath": { | |
"type": "string" | |
}, | |
"colors": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsGameDataChampionSkin": { | |
"properties": { | |
"cardPath": { | |
"type": "string" | |
}, | |
"chromaPath": { | |
"type": "string" | |
}, | |
"chromas": { | |
"items": { | |
"$ref": "#/definitions/LolChampionsGameDataChampionChroma" | |
}, | |
"type": "array" | |
}, | |
"emblems": { | |
"items": { | |
"$ref": "#/definitions/LolChampionsCollectionsChampionSkinEmblem" | |
}, | |
"type": "array" | |
}, | |
"featuresText": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"rarityGemPath": { | |
"type": "string" | |
}, | |
"skinType": { | |
"type": "string" | |
}, | |
"splashPath": { | |
"type": "string" | |
}, | |
"splashVideoPath": { | |
"type": "string" | |
}, | |
"tilePath": { | |
"type": "string" | |
}, | |
"uncenteredSplashPath": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsGameDataChampionSpell": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsGameDataChampionSummary": { | |
"properties": { | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsLcdsDynamicClientConfig": { | |
"properties": { | |
"DisabledChampions": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"connected": { | |
"type": "boolean" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolChampionsLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolChampionsPlayerNotification": { | |
"properties": { | |
"backgroundUrl": { | |
"type": "string" | |
}, | |
"critical": { | |
"type": "boolean" | |
}, | |
"data": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"detailKey": { | |
"type": "string" | |
}, | |
"iconUrl": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"source": { | |
"type": "string" | |
}, | |
"state": { | |
"type": "string" | |
}, | |
"titleKey": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChampionsSummoner": { | |
"properties": { | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatActiveConversationResource": { | |
"properties": { | |
"id": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatAuthResourcePlain": { | |
"properties": { | |
"gasToken": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"password": { | |
"type": "string" | |
}, | |
"username": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatAuthResourceRsoAccessToken": { | |
"properties": { | |
"expiry": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"scopes": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"token": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatAuthType": { | |
"enum": [ | |
"plain", | |
"rsoCreate", | |
"rsoRefresh" | |
], | |
"type": "string" | |
}, | |
"LolChatBlockedPlayerResource": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatChampSelection": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"selectedSkinIndex": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerInternalName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatChatDomainConfig": { | |
"properties": { | |
"ChampSelectDomainName": { | |
"type": "string" | |
}, | |
"ClubDomainName": { | |
"type": "string" | |
}, | |
"CustomGameDomainName": { | |
"type": "string" | |
}, | |
"CustomTeamDomainName": { | |
"type": "string" | |
}, | |
"P2PDomainName": { | |
"type": "string" | |
}, | |
"PostGameDomainName": { | |
"type": "string" | |
}, | |
"PrivateDomainName": { | |
"type": "string" | |
}, | |
"PublicDomainName": { | |
"type": "string" | |
}, | |
"RankedTeamDomainName": { | |
"type": "string" | |
}, | |
"TeamBuilderDomainName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatChatPlatformLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gasToken": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"idToken": { | |
"type": "string" | |
}, | |
"isNewPlayer": { | |
"type": "boolean" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolChatChatPlatformLoginSessionState" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"userAuthToken": { | |
"type": "string" | |
}, | |
"username": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatChatPlatformLoginSessionState": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolChatChatRankedData": { | |
"properties": { | |
"rankedData": { | |
"items": { | |
"$ref": "#/definitions/LolChatChatRankedEntry" | |
}, | |
"type": "array" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatChatRankedEntry": { | |
"properties": { | |
"division": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"games": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"leagueName": { | |
"type": "string" | |
}, | |
"rankedQueue": { | |
"$ref": "#/definitions/LolChatChatRankedQueue" | |
}, | |
"rankedTier": { | |
"$ref": "#/definitions/LolChatChatRankedTier" | |
}, | |
"wins": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatChatRankedQueue": { | |
"enum": [ | |
"INVALID", | |
"RANKED_FLEX_TT", | |
"RANKED_FLEX_SR", | |
"RANKED_SOLO_5x5", | |
"RANKED_TEAM_3x3", | |
"RANKED_TEAM_5x5" | |
], | |
"type": "string" | |
}, | |
"LolChatChatRankedTier": { | |
"enum": [ | |
"NOT_RANKED", | |
"PROVISIONAL", | |
"BRONZE", | |
"SILVER", | |
"GOLD", | |
"PLATINUM", | |
"DIAMOND", | |
"MASTER", | |
"CHALLENGER" | |
], | |
"type": "string" | |
}, | |
"LolChatChatServiceDynamicClientConfig": { | |
"properties": { | |
"ChatDomain": { | |
"$ref": "#/definitions/LolChatChatDomainConfig" | |
}, | |
"LcuSocial": { | |
"$ref": "#/definitions/LolChatLcuSocialConfig" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatChatSummoner": { | |
"properties": { | |
"displayName": { | |
"type": "string" | |
}, | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatConversationMessageResource": { | |
"properties": { | |
"body": { | |
"type": "string" | |
}, | |
"fromId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"isHistorical": { | |
"type": "boolean" | |
}, | |
"timestamp": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatConversationResource": { | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"inviterId": { | |
"type": "string" | |
}, | |
"isMuted": { | |
"type": "boolean" | |
}, | |
"lastMessage": { | |
"$ref": "#/definitions/LolChatConversationMessageResource" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"password": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
}, | |
"unreadMessageCount": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatDebugResource": { | |
"properties": { | |
"asyncWaitInterval": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"enableChatFiltering": { | |
"type": "boolean" | |
}, | |
"failAllChatLogin": { | |
"type": "boolean" | |
}, | |
"failNextChatLogin": { | |
"type": "boolean" | |
}, | |
"failNextChatLogout": { | |
"type": "boolean" | |
}, | |
"failNextKeepAlive": { | |
"type": "boolean" | |
}, | |
"isXMPPLoggingEnabled": { | |
"type": "boolean" | |
}, | |
"keepAliveInterval": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxReconnectInterval": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minReconnectInterval": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"silenceChatWhileInGame": { | |
"type": "boolean" | |
}, | |
"triggerChatDisconnect": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatErrorResource": { | |
"properties": { | |
"code": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"from": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"message": { | |
"type": "string" | |
}, | |
"text": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatFriendCountsResource": { | |
"properties": { | |
"numFriends": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsAvailable": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsAway": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsInChampSelect": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsInGame": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsInQueue": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsMobile": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsOnline": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatFriendRequestDirection": { | |
"enum": [ | |
"in", | |
"out", | |
"both" | |
], | |
"type": "string" | |
}, | |
"LolChatFriendRequestResource": { | |
"properties": { | |
"direction": { | |
"$ref": "#/definitions/LolChatFriendRequestDirection" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"note": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatFriendResource": { | |
"properties": { | |
"availability": { | |
"type": "string" | |
}, | |
"displayGroupId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"groupId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"icon": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isP2PConversationMuted": { | |
"type": "boolean" | |
}, | |
"lastSeenOnlineTimestamp": { | |
"type": "string" | |
}, | |
"lol": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"note": { | |
"type": "string" | |
}, | |
"statusMessage": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatGameDataChampionSummary": { | |
"properties": { | |
"alias": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatGameflowGameData": { | |
"properties": { | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerChampionSelections": { | |
"items": { | |
"$ref": "#/definitions/LolChatChampSelection" | |
}, | |
"type": "array" | |
}, | |
"queue": { | |
"$ref": "#/definitions/LolChatQueue" | |
}, | |
"teamOne": { | |
"items": { | |
"$ref": "#/definitions/LolChatTeamPlayerEntry" | |
}, | |
"type": "array" | |
}, | |
"teamTwo": { | |
"items": { | |
"$ref": "#/definitions/LolChatTeamPlayerEntry" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatGameflowGameMap": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolChatGameflowSession": { | |
"properties": { | |
"gameData": { | |
"$ref": "#/definitions/LolChatGameflowGameData" | |
}, | |
"map": { | |
"$ref": "#/definitions/LolChatGameflowGameMap" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolChatGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatGroupResource": { | |
"properties": { | |
"collapsed": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isMetaGroup": { | |
"type": "boolean" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"priority": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatLcuSocialConfig": { | |
"properties": { | |
"AggressiveScanning": { | |
"type": "boolean" | |
}, | |
"ForceChatFilter": { | |
"type": "boolean" | |
}, | |
"QueueJobGraceSeconds": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"ReplaceRichMessages": { | |
"type": "boolean" | |
}, | |
"SilenceChatWhileInGame": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatLobbyMember": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isOwner": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatLobbyPlayerStatus": { | |
"properties": { | |
"currentLobbyStatus": { | |
"$ref": "#/definitions/LolChatLobbyStatus" | |
}, | |
"lastQueuedLobbyStatus": { | |
"$ref": "#/definitions/LolChatLobbyStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatLobbyStatus": { | |
"properties": { | |
"customSpectatorPolicy": { | |
"$ref": "#/definitions/LolChatQueueCustomGameSpectatorPolicy" | |
}, | |
"isCustom": { | |
"type": "boolean" | |
}, | |
"isLeader": { | |
"type": "boolean" | |
}, | |
"isPracticeTool": { | |
"type": "boolean" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatPlayerPreferences": { | |
"properties": { | |
"data": { | |
"type": "string" | |
}, | |
"hash": { | |
"type": "string" | |
}, | |
"modified": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatPluginRegionLocaleChangedEvent": { | |
"properties": { | |
"locale": { | |
"type": "string" | |
}, | |
"region": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatQueue": { | |
"properties": { | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameTypeConfig": { | |
"$ref": "#/definitions/LolChatQueueGameTypeConfig" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatQueueCustomGameSpectatorPolicy": { | |
"enum": [ | |
"NotAllowed", | |
"LobbyAllowed", | |
"FriendsAllowed", | |
"AllAllowed" | |
], | |
"type": "string" | |
}, | |
"LolChatQueueGameTypeConfig": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatSanitizeRequest": { | |
"properties": { | |
"aggressiveScan": { | |
"type": "boolean" | |
}, | |
"level": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"texts": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatSanitizeResponse": { | |
"properties": { | |
"modified": { | |
"type": "boolean" | |
}, | |
"texts": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatSanitizerStatus": { | |
"properties": { | |
"locale": { | |
"type": "string" | |
}, | |
"platformID": { | |
"type": "string" | |
}, | |
"ready": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatSessionResource": { | |
"properties": { | |
"sessionExpire": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"sessionState": { | |
"$ref": "#/definitions/LolChatSessionState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatSessionState": { | |
"enum": [ | |
"initializing", | |
"connected", | |
"loaded", | |
"disconnected", | |
"shuttingdown" | |
], | |
"type": "string" | |
}, | |
"LolChatSettingsResource": { | |
"properties": { | |
"data": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatSpectateGameInfoResource": { | |
"properties": { | |
"allowObserveMode": { | |
"type": "string" | |
}, | |
"dropInSpectateGameId": { | |
"type": "string" | |
}, | |
"gameQueueType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatTeamPlayerEntry": { | |
"properties": { | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerInternalName": { | |
"type": "string" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolChatUserResource": { | |
"properties": { | |
"availability": { | |
"type": "string" | |
}, | |
"icon": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lastSeenOnlineTimestamp": { | |
"type": "string" | |
}, | |
"lol": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"statusMessage": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashBlockedPlayerResource": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashBracket": { | |
"properties": { | |
"currentLoserRound": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"currentRound": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isComplete": { | |
"type": "boolean" | |
}, | |
"loserBracketMatches": { | |
"items": { | |
"$ref": "#/definitions/BracketMatch" | |
}, | |
"type": "array" | |
}, | |
"matches": { | |
"items": { | |
"$ref": "#/definitions/BracketMatch" | |
}, | |
"type": "array" | |
}, | |
"period": { | |
"format": "int32", | |
"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" | |
}, | |
"LolClashBracketReadyNotification": { | |
"properties": { | |
"bracketId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashChangeIconRequest": { | |
"properties": { | |
"iconColorId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"iconId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashChangeNameRequest": { | |
"properties": { | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashClashConfig": { | |
"properties": { | |
"DarkModeEntitlement": { | |
"type": "string" | |
}, | |
"EnabledState": { | |
"$ref": "#/definitions/LolClashClashState" | |
}, | |
"IconConfig": { | |
"type": "string" | |
}, | |
"IsPlaymodeRestrictionEnabled": { | |
"type": "boolean" | |
}, | |
"UseIndividualEntitlement": { | |
"type": "boolean" | |
}, | |
"Visibility": { | |
"$ref": "#/definitions/LolClashClashVisibility" | |
}, | |
"VoiceEnabled": { | |
"type": "boolean" | |
}, | |
"VoiceEobQuitDelaySeconds": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"VoiceNoDelayAutoStartSeconds": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"VoiceRandomStartMaxSeconds": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"VoiceRandomStartMinSeconds": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"VoiceRetryCountLimit": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"VoiceRetryDelaySeconds": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashClashState": { | |
"enum": [ | |
"DarkDisabled", | |
"DarkEnabled", | |
"Disabled", | |
"Enabled" | |
], | |
"type": "string" | |
}, | |
"LolClashClashVisibility": { | |
"enum": [ | |
"Hidden", | |
"DarkVisible", | |
"Visible" | |
], | |
"type": "string" | |
}, | |
"LolClashClientFailedInvite": { | |
"properties": { | |
"exception": { | |
"type": "string" | |
}, | |
"playerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashClubsSummoner": { | |
"properties": { | |
"displayName": { | |
"type": "string" | |
}, | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashEntitlementsToken": { | |
"properties": { | |
"accessToken": { | |
"type": "string" | |
}, | |
"entitlements": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"token": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashEogPlayerUpdateDTO": { | |
"properties": { | |
"bid": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"bracketSize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"earnedRewards": { | |
"items": { | |
"$ref": "#/definitions/ClashRewardDefinition" | |
}, | |
"type": "array" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lowestPosition": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rewardProgress": { | |
"items": { | |
"$ref": "#/definitions/ClashRewardDefinition" | |
}, | |
"type": "array" | |
}, | |
"seasonVp": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"themeVp": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"tier": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"winner": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashFoundationError": { | |
"enum": [ | |
"CLASH_NOT_INITIALIZED", | |
"CLASH_DISABLED", | |
"DESERIALIZATION_FAILED", | |
"GAMEFLOW_UNAVAILABLE" | |
], | |
"type": "string" | |
}, | |
"LolClashGameflowAvailability": { | |
"properties": { | |
"isAvailable": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashGameflowGameDodge": { | |
"properties": { | |
"dodgeIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolClashMatchmakingDodgeState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolClashGameflowSession": { | |
"properties": { | |
"phase": { | |
"$ref": "#/definitions/LolClashGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashInviteSubRequest": { | |
"properties": { | |
"replacedSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"substituteSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashKdaClassification": { | |
"enum": [ | |
"LOW", | |
"AVERAGE", | |
"HIGH" | |
], | |
"type": "string" | |
}, | |
"LolClashKickRequest": { | |
"properties": { | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashLoginSession": { | |
"properties": { | |
"state": { | |
"$ref": "#/definitions/LolClashLoginSessionState" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashLoginSessionState": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolClashMatchmakingDodgeData": { | |
"properties": { | |
"dodgerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolClashMatchmakingDodgeState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashMatchmakingDodgeState": { | |
"enum": [ | |
"Invalid", | |
"PartyDodged", | |
"StrangerDodged", | |
"TournamentDodged" | |
], | |
"type": "string" | |
}, | |
"LolClashMatchmakingDodgeWarning": { | |
"enum": [ | |
"None", | |
"Warning", | |
"Penalty" | |
], | |
"type": "string" | |
}, | |
"LolClashMatchmakingReadyCheckResource": { | |
"properties": { | |
"declinerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"dodgeWarning": { | |
"$ref": "#/definitions/LolClashMatchmakingDodgeWarning" | |
}, | |
"playerResponse": { | |
"$ref": "#/definitions/LolClashMatchmakingReadyCheckResponse" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolClashMatchmakingReadyCheckState" | |
}, | |
"timer": { | |
"format": "float", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashMatchmakingReadyCheckResponse": { | |
"enum": [ | |
"None", | |
"Accepted", | |
"Declined" | |
], | |
"type": "string" | |
}, | |
"LolClashMatchmakingReadyCheckState": { | |
"enum": [ | |
"Invalid", | |
"InProgress", | |
"EveryoneReady", | |
"StrangerNotReady", | |
"PartyNotReady", | |
"Error" | |
], | |
"type": "string" | |
}, | |
"LolClashMatchmakingSearchResource": { | |
"properties": { | |
"dodgeData": { | |
"$ref": "#/definitions/LolClashMatchmakingDodgeData" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"readyCheck": { | |
"$ref": "#/definitions/LolClashMatchmakingReadyCheckResource" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashNoShowPingDTO": { | |
"properties": { | |
"dodgeTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"matchId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashNoShowPingResponse": { | |
"properties": { | |
"data": { | |
"type": "string" | |
}, | |
"dodgeTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"matchId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashNoShowPingResponseData": { | |
"properties": { | |
"dodgeTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameflowState": { | |
"$ref": "#/definitions/LolClashGameflowPhase" | |
}, | |
"isPlaymodeRestricted": { | |
"type": "boolean" | |
}, | |
"readyCheckInfo": { | |
"$ref": "#/definitions/LolClashReadyCheckInfo" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashNotifyReason": { | |
"enum": [ | |
"SUGGESTION", | |
"DECLINE_SUGGESTION", | |
"ACCEPT_SUGGESTION", | |
"REVOKE_SUGGESTION", | |
"READY", | |
"UNREADY", | |
"OWNER_CLOSE", | |
"DISMISS", | |
"OWNER_TRANSFER", | |
"CHANGE_LOGO", | |
"CHANGE_NAME", | |
"CHANGE_SHORTNAME", | |
"CHANGE_POSITION", | |
"CHANGE_NAMETAGLOGO", | |
"INVITE", | |
"RESENT_INVITE", | |
"DECLINE_INVITE", | |
"ACCEPT_INVITE", | |
"REVOKE_INVITE", | |
"LEAVE", | |
"CAPTAIN_LEAVE", | |
"KICK", | |
"SET_TICKET", | |
"OFFER_TICKET", | |
"REVOKED_TICKET", | |
"DECLINE_TICKET", | |
"ACCEPT_TICKET" | |
], | |
"type": "string" | |
}, | |
"LolClashPendingRosterNotification": { | |
"properties": { | |
"notifyReason": { | |
"$ref": "#/definitions/LolClashNotifyReason" | |
}, | |
"pendingRoster": { | |
"$ref": "#/definitions/PendingRosterDTO" | |
}, | |
"sourcePlayerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"targetPlayerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashPlayerChatRoster": { | |
"properties": { | |
"endTimeMs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"iconColorId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"iconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"invitationId": { | |
"type": "string" | |
}, | |
"isRegistered": { | |
"type": "boolean" | |
}, | |
"key": { | |
"type": "string" | |
}, | |
"logoUrl": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"playerState": { | |
"$ref": "#/definitions/LolClashPlayerState" | |
}, | |
"shortName": { | |
"type": "string" | |
}, | |
"startTimeMs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"tournamentState": { | |
"$ref": "#/definitions/LolClashTournamentState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashPlayerData": { | |
"properties": { | |
"isClashBanned": { | |
"type": "boolean" | |
}, | |
"tickets": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"tier": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashPlayerNotification": { | |
"properties": { | |
"backgroundUrl": { | |
"type": "string" | |
}, | |
"created": { | |
"type": "string" | |
}, | |
"critical": { | |
"type": "boolean" | |
}, | |
"data": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"detailKey": { | |
"type": "string" | |
}, | |
"dismissible": { | |
"type": "boolean" | |
}, | |
"expires": { | |
"type": "string" | |
}, | |
"iconUrl": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"source": { | |
"type": "string" | |
}, | |
"state": { | |
"type": "string" | |
}, | |
"titleKey": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashPlayerNotificationData": { | |
"properties": { | |
"notification": { | |
"$ref": "#/definitions/LolClashPlayerNotification" | |
}, | |
"notifyReason": { | |
"$ref": "#/definitions/LolClashNotifyReason" | |
}, | |
"rosterNotifyReason": { | |
"$ref": "#/definitions/LolClashRosterNotifyReason" | |
}, | |
"sourceSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"targetSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashPlayerRewards": { | |
"properties": { | |
"seasonVp": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"themeVp": { | |
"items": { | |
"$ref": "#/definitions/LolClashThemeVp" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashPlayerState": { | |
"enum": [ | |
"NO_ROSTER", | |
"HAS_ROSTER", | |
"BRACKET_ROSTER", | |
"ELIMINATED" | |
], | |
"type": "string" | |
}, | |
"LolClashPlayerTournamentData": { | |
"properties": { | |
"bracketId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rosterId": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolClashPlayerState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashPlaymodeRestrictedInfo": { | |
"properties": { | |
"isRestricted": { | |
"type": "boolean" | |
}, | |
"phaseId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"presenceState": { | |
"$ref": "#/definitions/LolClashPresenceState" | |
}, | |
"readyForVoice": { | |
"type": "boolean" | |
}, | |
"rosterId": { | |
"type": "string" | |
}, | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashPresenceState": { | |
"enum": [ | |
"NONE", | |
"LOCKED_IN", | |
"SCOUTING" | |
], | |
"type": "string" | |
}, | |
"LolClashQueue": { | |
"properties": { | |
"areFreeChampionsAllowed": { | |
"type": "boolean" | |
}, | |
"category": { | |
"$ref": "#/definitions/LolClashQueueGameCategory" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"detailedDescription": { | |
"type": "string" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameMutator": { | |
"type": "string" | |
}, | |
"gameTypeConfig": { | |
"$ref": "#/definitions/LolClashQueueGameTypeConfig" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isRanked": { | |
"type": "boolean" | |
}, | |
"isTeamBuilderManaged": { | |
"type": "boolean" | |
}, | |
"isTeamOnly": { | |
"type": "boolean" | |
}, | |
"mapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"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" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"numPlayersPerTeam": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"queueAvailability": { | |
"$ref": "#/definitions/LolClashQueueAvailability" | |
}, | |
"queueRewards": { | |
"$ref": "#/definitions/LolClashQueueReward" | |
}, | |
"shortName": { | |
"type": "string" | |
}, | |
"spectatorEnabled": { | |
"type": "boolean" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashQueueAvailability": { | |
"enum": [ | |
"Available", | |
"PlatformDisabled", | |
"DoesntMeetRequirements" | |
], | |
"type": "string" | |
}, | |
"LolClashQueueGameCategory": { | |
"enum": [ | |
"None", | |
"Custom", | |
"PvP", | |
"VersusAi" | |
], | |
"type": "string" | |
}, | |
"LolClashQueueGameTypeConfig": { | |
"properties": { | |
"advancedLearningQuests": { | |
"type": "boolean" | |
}, | |
"allowTrades": { | |
"type": "boolean" | |
}, | |
"banMode": { | |
"type": "string" | |
}, | |
"banTimerDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"battleBoost": { | |
"type": "boolean" | |
}, | |
"crossTeamChampionPool": { | |
"type": "boolean" | |
}, | |
"deathMatch": { | |
"type": "boolean" | |
}, | |
"doNotRemove": { | |
"type": "boolean" | |
}, | |
"duplicatePick": { | |
"type": "boolean" | |
}, | |
"exclusivePick": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"learningQuests": { | |
"type": "boolean" | |
}, | |
"mainPickTimerDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxAllowableBans": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"onboardCoopBeginner": { | |
"type": "boolean" | |
}, | |
"pickMode": { | |
"type": "string" | |
}, | |
"postPickTimerDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"reroll": { | |
"type": "boolean" | |
}, | |
"teamChampionPool": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashQueueReward": { | |
"properties": { | |
"isChampionPointsEnabled": { | |
"type": "boolean" | |
}, | |
"isIpEnabled": { | |
"type": "boolean" | |
}, | |
"isXpEnabled": { | |
"type": "boolean" | |
}, | |
"partySizeIpRewards": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRMSMessage": { | |
"properties": { | |
"payload": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRankedScoutingMember": { | |
"properties": { | |
"championScoutingData": { | |
"items": { | |
"$ref": "#/definitions/LolClashRankedScoutingTopChampion" | |
}, | |
"type": "array" | |
}, | |
"playerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRankedScoutingTopChampion": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"kda": { | |
"type": "string" | |
}, | |
"kdaClassification": { | |
"$ref": "#/definitions/LolClashKdaClassification" | |
}, | |
"rank": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"winCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"winRate": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashReadyCheckInfo": { | |
"properties": { | |
"acceptError": { | |
"type": "string" | |
}, | |
"isAcceptSuccessful": { | |
"type": "boolean" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"readyCheckResource": { | |
"$ref": "#/definitions/LolClashMatchmakingReadyCheckResource" | |
}, | |
"timestampLastClashGameflowDodge": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"timestampReceived": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"timestampResponseComplete": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRegisteredRosterNotification": { | |
"properties": { | |
"notifyReason": { | |
"$ref": "#/definitions/LolClashRosterNotifyReason" | |
}, | |
"roster": { | |
"$ref": "#/definitions/RosterDTO" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRoster": { | |
"properties": { | |
"availableLogos": { | |
"items": { | |
"$ref": "#/definitions/RewardLogo" | |
}, | |
"type": "array" | |
}, | |
"captainSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currentBracketWins": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"highTierVariance": { | |
"type": "boolean" | |
}, | |
"iconColorId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"iconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"invitationId": { | |
"type": "string" | |
}, | |
"isActiveInCurrentPhase": { | |
"type": "boolean" | |
}, | |
"isClashBanned": { | |
"type": "boolean" | |
}, | |
"isCurrentBracketComplete": { | |
"type": "boolean" | |
}, | |
"isEliminated": { | |
"type": "boolean" | |
}, | |
"isRegistered": { | |
"type": "boolean" | |
}, | |
"losses": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"members": { | |
"items": { | |
"$ref": "#/definitions/LolClashRosterMember" | |
}, | |
"type": "array" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"numCompletedPeriods": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"phaseInfos": { | |
"items": { | |
"$ref": "#/definitions/LolClashRosterPhaseInfo" | |
}, | |
"type": "array" | |
}, | |
"points": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"shortName": { | |
"type": "string" | |
}, | |
"suggestedInvites": { | |
"items": { | |
"$ref": "#/definitions/LolClashSuggestedInvite" | |
}, | |
"type": "array" | |
}, | |
"tier": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"wins": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"withdraw": { | |
"$ref": "#/definitions/RosterWithdraw" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRosterDetails": { | |
"properties": { | |
"iconColorId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"iconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"shortName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRosterDynamicStateNotification": { | |
"properties": { | |
"notifyReason": { | |
"$ref": "#/definitions/LolClashRosterNotifyReason" | |
}, | |
"rosterDynamicState": { | |
"$ref": "#/definitions/RosterDynamicStateDTO" | |
}, | |
"sourcePlayerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRosterMatchAggregatedStats": { | |
"properties": { | |
"durationMs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"kills": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"loserBracket": { | |
"type": "boolean" | |
}, | |
"opponentIconColorId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"opponentIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"opponentKills": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"opponentShortName": { | |
"type": "string" | |
}, | |
"playerChampionIds": { | |
"additionalProperties": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "object" | |
}, | |
"round": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"win": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRosterMember": { | |
"properties": { | |
"currentBuyin": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"incomingOffers": { | |
"items": { | |
"$ref": "#/definitions/LolClashTicketOffer" | |
}, | |
"type": "array" | |
}, | |
"isSubForOtherTeam": { | |
"type": "boolean" | |
}, | |
"isSubbedOut": { | |
"type": "boolean" | |
}, | |
"isSubstitute": { | |
"type": "boolean" | |
}, | |
"position": { | |
"$ref": "#/definitions/Position" | |
}, | |
"previousBuyin": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"replacedSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolClashRosterMemberState" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"tier": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRosterMemberState": { | |
"enum": [ | |
"PENDING", | |
"NOT_READY", | |
"FORCED_NOT_READY", | |
"READY" | |
], | |
"type": "string" | |
}, | |
"LolClashRosterNotifyReason": { | |
"enum": [ | |
"ROSTER_SET_TICKET", | |
"ROSTER_OFFER_TICKET", | |
"ROSTER_ACCEPT_TICKET", | |
"ROSTER_DECLINE_TICKET", | |
"ROSTER_REVOKED_TICKET", | |
"BYE_AUTO_WIN", | |
"BRACKET_READY", | |
"CHANGE_POSITION", | |
"EOG_PLAYER_UPDATE", | |
"REGISTERED", | |
"RESTRICTION_AUTO_WIN", | |
"PHASE_UNREADY", | |
"PHASE_READY", | |
"PHASE_CHECKIN", | |
"GAME_COMPLETED", | |
"GAME_STARTED", | |
"GAME_STARTED_ERROR", | |
"QUEUE_DODGE", | |
"LOSER_ROUND_COMPLETE", | |
"OWNER_TRANSFER", | |
"SUB_INVITE", | |
"SUB_ACCEPT", | |
"SUB_DECLINE", | |
"SUB_REVOKE", | |
"SUB_SUGGEST", | |
"SUB_ACCEPTSUGGEST", | |
"SUB_DECLINESUGGEST", | |
"SUB_RECLAIM", | |
"SUB_LEAVE", | |
"MEMBER_SUBBED", | |
"MEMBER_SUB_REVOKE", | |
"MEMBER_SUB_RECLAIM", | |
"VOTE_WITHDRAW_UPDATE", | |
"VOTE_WITHDRAW_DISMISS", | |
"WITHDRAW", | |
"WINNER_ROUND_COMPLETE", | |
"NO_SHOW_PING", | |
"BANNED_SMURF", | |
"BANNED_SMURF_TEAMMATE", | |
"BANNED_SMURF_OPPONENT", | |
"SUB_INVITE_SELF" | |
], | |
"type": "string" | |
}, | |
"LolClashRosterPeriodAggregatedStats": { | |
"properties": { | |
"bracketSize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"matchStats": { | |
"items": { | |
"$ref": "#/definitions/LolClashRosterMatchAggregatedStats" | |
}, | |
"type": "array" | |
}, | |
"period": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"playerBids": { | |
"additionalProperties": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "object" | |
}, | |
"time": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRosterPhaseInfo": { | |
"properties": { | |
"isBracketComplete": { | |
"type": "boolean" | |
}, | |
"period": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"phaseId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRosterPlayerAggregatedStats": { | |
"properties": { | |
"rawStatsMax": { | |
"additionalProperties": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "object" | |
}, | |
"rawStatsSum": { | |
"additionalProperties": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "object" | |
}, | |
"sub": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRosterPlayerNotification": { | |
"properties": { | |
"notifyReason": { | |
"$ref": "#/definitions/LolClashRosterNotifyReason" | |
}, | |
"playerNotificationDTO": { | |
"$ref": "#/definitions/PlayerDTO" | |
}, | |
"roster": { | |
"$ref": "#/definitions/RosterDTO" | |
}, | |
"sourcePlayerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRosterStats": { | |
"properties": { | |
"endTimeMs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"periodStats": { | |
"items": { | |
"$ref": "#/definitions/LolClashRosterPeriodAggregatedStats" | |
}, | |
"type": "array" | |
}, | |
"playerStats": { | |
"additionalProperties": { | |
"$ref": "#/definitions/LolClashRosterPlayerAggregatedStats" | |
}, | |
"type": "object" | |
}, | |
"rosterIconColorId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rosterIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rosterId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rosterName": { | |
"type": "string" | |
}, | |
"rosterShortName": { | |
"type": "string" | |
}, | |
"startTimeMs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"tier": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"tournamentNameLocKey": { | |
"type": "string" | |
}, | |
"tournamentPeriods": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"tournamentThemeId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashRosterWithdrawNotification": { | |
"properties": { | |
"notifyReason": { | |
"$ref": "#/definitions/LolClashRosterNotifyReason" | |
}, | |
"rosterId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"sourcePlayerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"version": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"withdraw": { | |
"$ref": "#/definitions/RosterWithdraw" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashScoutingChampionMastery": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championPoints": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashScoutingChampions": { | |
"properties": { | |
"playerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"topMasteries": { | |
"items": { | |
"$ref": "#/definitions/LolClashScoutingChampionMastery" | |
}, | |
"type": "array" | |
}, | |
"topSeasonChampions": { | |
"items": { | |
"$ref": "#/definitions/LolClashScoutingSeasonChampion" | |
}, | |
"type": "array" | |
}, | |
"totalMasteryScore": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashScoutingSeasonChampion": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"kda": { | |
"type": "string" | |
}, | |
"kdaClassification": { | |
"$ref": "#/definitions/LolClashKdaClassification" | |
}, | |
"winCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"winRate": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashSetPositionRequest": { | |
"properties": { | |
"position": { | |
"$ref": "#/definitions/Position" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashSetTicketRequest": { | |
"properties": { | |
"ticketAmount": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashSimpleStateFlag": { | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"status": { | |
"$ref": "#/definitions/LolClashSimpleStateStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashSimpleStateStatus": { | |
"enum": [ | |
"UNACKNOWLEDGED", | |
"ACKNOWLEDGED" | |
], | |
"type": "string" | |
}, | |
"LolClashSuggestedInvite": { | |
"properties": { | |
"suggesterSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashThemeVp": { | |
"properties": { | |
"themeId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"vp": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashTicketOffer": { | |
"properties": { | |
"amount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isAccepted": { | |
"type": "boolean" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashTournament": { | |
"properties": { | |
"allowRosterCreation": { | |
"type": "boolean" | |
}, | |
"buyInOptions": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"endTimeMs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"entryFee": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lastThemeOfSeason": { | |
"type": "boolean" | |
}, | |
"maxSubstitutes": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"nameLocKey": { | |
"type": "string" | |
}, | |
"phases": { | |
"items": { | |
"$ref": "#/definitions/LolClashTournamentPhase" | |
}, | |
"type": "array" | |
}, | |
"rewardConfig": { | |
"items": { | |
"$ref": "#/definitions/ClashRewardConfigClient" | |
}, | |
"type": "array" | |
}, | |
"rosterCreateDeadline": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rosterSize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"scoutingDurationMs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"startTimeMs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"themeId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashTournamentGameEnd": { | |
"properties": { | |
"bracketId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"oldBracket": { | |
"$ref": "#/definitions/LolClashBracket" | |
}, | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"tournamentNameLocKey": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashTournamentGameEndNotification": { | |
"properties": { | |
"bracketId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currentMatchId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"notifyReason": { | |
"$ref": "#/definitions/LolClashRosterNotifyReason" | |
}, | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashTournamentHistoryAndWinners": { | |
"properties": { | |
"tournamentHistory": { | |
"items": { | |
"$ref": "#/definitions/LolClashTournament" | |
}, | |
"type": "array" | |
}, | |
"tournamentWinners": { | |
"$ref": "#/definitions/LolClashTournamentWinnerHistory" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashTournamentPhase": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lockinStartTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"period": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"scoutingStartTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashTournamentState": { | |
"enum": [ | |
"IDLE", | |
"LOCK_IN", | |
"SCOUTING", | |
"IN_GAME", | |
"RESULTS" | |
], | |
"type": "string" | |
}, | |
"LolClashTournamentStateInfo": { | |
"properties": { | |
"currentPhaseId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"nextPhaseId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"nextStateChangeTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"numRemainingPeriods": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolClashTournamentState" | |
}, | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashTournamentSummary": { | |
"properties": { | |
"bracketId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rosterId": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolClashTournamentState" | |
}, | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashTournamentUpdatedNotificationDTO": { | |
"properties": { | |
"tournament": { | |
"$ref": "#/definitions/TournamentDTO" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashTournamentWinnerHistory": { | |
"properties": { | |
"tournamentId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"winners": { | |
"items": { | |
"$ref": "#/definitions/LolClashTournamentWinnerInfo" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashTournamentWinnerInfo": { | |
"properties": { | |
"averageWinDuration": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"createTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"logo": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"logoColor": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"playerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"rosterId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"shortName": { | |
"type": "string" | |
}, | |
"tier": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClashUserResource": { | |
"properties": { | |
"lol": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsBaseMembershipInviteDto": { | |
"properties": { | |
"clubKey": { | |
"type": "string" | |
}, | |
"clubName": { | |
"type": "string" | |
}, | |
"inviteePlatformId": { | |
"type": "string" | |
}, | |
"inviteeSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inviterAccountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inviterPlatformId": { | |
"type": "string" | |
}, | |
"inviterSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"status": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsBlockedPlayerResource": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClub": { | |
"properties": { | |
"key": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubDataDto": { | |
"properties": { | |
"clubKey": { | |
"type": "string" | |
}, | |
"createdTs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"jid": { | |
"type": "string" | |
}, | |
"lastModifiedTs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"motd": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"permissionMap": { | |
"$ref": "#/definitions/LolClubsClubPermissions" | |
}, | |
"role": { | |
"type": "string" | |
}, | |
"tag": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubDto": { | |
"properties": { | |
"clubData": { | |
"$ref": "#/definitions/LolClubsClubDataDto" | |
}, | |
"membership": { | |
"$ref": "#/definitions/LolClubsClubMembershipDto" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"resourceUri": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubInvite": { | |
"properties": { | |
"clubKey": { | |
"type": "string" | |
}, | |
"clubName": { | |
"type": "string" | |
}, | |
"inviteeAccountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inviteeSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inviterAccountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inviterSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inviterSummonerName": { | |
"type": "string" | |
}, | |
"status": { | |
"$ref": "#/definitions/LolClubsClubInviteStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubInviteStatus": { | |
"enum": [ | |
"PENDING", | |
"ACCEPTED", | |
"REJECTED", | |
"BLOCKED" | |
], | |
"type": "string" | |
}, | |
"LolClubsClubMOTD": { | |
"properties": { | |
"motd": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubMember": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"role": { | |
"$ref": "#/definitions/LolClubsClubRole" | |
}, | |
"since": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubMemberLists": { | |
"properties": { | |
"activeMembers": { | |
"items": { | |
"$ref": "#/definitions/LolClubsClubMember" | |
}, | |
"type": "array" | |
}, | |
"invitedMembers": { | |
"items": { | |
"$ref": "#/definitions/LolClubsClubMember" | |
}, | |
"type": "array" | |
}, | |
"nominatedMembers": { | |
"items": { | |
"$ref": "#/definitions/LolClubsClubMember" | |
}, | |
"type": "array" | |
}, | |
"removedMembers": { | |
"items": { | |
"$ref": "#/definitions/LolClubsClubMember" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubMembershipDto": { | |
"properties": { | |
"activeMembers": { | |
"items": { | |
"$ref": "#/definitions/LolClubsMemberSinceDto" | |
}, | |
"type": "array" | |
}, | |
"clubKey": { | |
"type": "string" | |
}, | |
"invitedMembers": { | |
"items": { | |
"$ref": "#/definitions/LolClubsMemberSinceDto" | |
}, | |
"type": "array" | |
}, | |
"nominatedMembers": { | |
"items": { | |
"$ref": "#/definitions/LolClubsMemberSinceDto" | |
}, | |
"type": "array" | |
}, | |
"removedMembers": { | |
"items": { | |
"$ref": "#/definitions/LolClubsMemberSinceDto" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubName": { | |
"properties": { | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubPermission": { | |
"enum": [ | |
"INVITE", | |
"PROMOTE", | |
"DEMOTE", | |
"KICK_MEMBER", | |
"KICK_OFFICER", | |
"OWNERSHIP_TRANSFER", | |
"NOMINATE", | |
"SET_MOTD", | |
"SET_DESCRIPTION" | |
], | |
"type": "string" | |
}, | |
"LolClubsClubPermissions": { | |
"properties": { | |
"ADMIN": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"INVITEE": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"MEMBER": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"OFFICER": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"OWNER": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"UNKNOWN": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubPlayer": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubPreferences": { | |
"properties": { | |
"primaryClubKey": { | |
"type": "string" | |
}, | |
"shareClubAffiliation": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubReferenceDto": { | |
"properties": { | |
"clubKey": { | |
"type": "string" | |
}, | |
"clubName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubRole": { | |
"enum": [ | |
"UNKNOWN", | |
"OWNER", | |
"OFFICER", | |
"MEMBER", | |
"INVITEE", | |
"NOMINEE" | |
], | |
"type": "string" | |
}, | |
"LolClubsClubTag": { | |
"properties": { | |
"tag": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubsConfig": { | |
"properties": { | |
"clubDescriptionMaxLength": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"clubMotdMaxLength": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"clubNominationsEnabled": { | |
"type": "boolean" | |
}, | |
"clubNominationsMaxPending": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"clubTagRequirementMinGames": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"clubTagRequirementMinMembers": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"clubTagRequirementsMinMemberLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxActiveClubs": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxClubNameLength": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxClubTagLength": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minClubNameLength": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minClubTagLength": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubsNotificationResource": { | |
"properties": { | |
"backgroundUrl": { | |
"type": "string" | |
}, | |
"created": { | |
"type": "string" | |
}, | |
"critical": { | |
"type": "boolean" | |
}, | |
"data": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"detailKey": { | |
"type": "string" | |
}, | |
"expires": { | |
"type": "string" | |
}, | |
"iconUrl": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"source": { | |
"type": "string" | |
}, | |
"state": { | |
"type": "string" | |
}, | |
"titleKey": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubsPresenceDataDto": { | |
"properties": { | |
"clubName": { | |
"type": "string" | |
}, | |
"clubTag": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubsServerConfigDto": { | |
"properties": { | |
"clubDescriptionMaxLength": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"clubMotdMaxLength": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"clubNominationsEnabled": { | |
"type": "boolean" | |
}, | |
"clubNominationsMaxPending": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"clubTagRequirementMinGames": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"clubTagRequirementMinMembers": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"clubTagRequirementsMinMemberLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxActiveClubs": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxClubNameLength": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxClubTagLength": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minClubNameLength": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minClubTagLength": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsClubsSummoner": { | |
"properties": { | |
"displayName": { | |
"type": "string" | |
}, | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"idToken": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolClubsLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolClubsMemberSinceDto": { | |
"properties": { | |
"playerInfo": { | |
"$ref": "#/definitions/LolClubsPlayerInfoDto" | |
}, | |
"role": { | |
"type": "string" | |
}, | |
"since": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsMembershipInviteDto": { | |
"properties": { | |
"clubKey": { | |
"type": "string" | |
}, | |
"clubName": { | |
"type": "string" | |
}, | |
"inviteeAccountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inviteePlatformId": { | |
"type": "string" | |
}, | |
"inviteeSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inviterAccountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inviterPlatformId": { | |
"type": "string" | |
}, | |
"inviterSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"status": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsMembershipNoficationsDto": { | |
"properties": { | |
"action": { | |
"type": "string" | |
}, | |
"clubKey": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"role": { | |
"type": "string" | |
}, | |
"status": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPlayerClub": { | |
"properties": { | |
"created": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"isClubTagEligible": { | |
"type": "boolean" | |
}, | |
"jid": { | |
"type": "string" | |
}, | |
"key": { | |
"type": "string" | |
}, | |
"lastModified": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"members": { | |
"$ref": "#/definitions/LolClubsClubMemberLists" | |
}, | |
"motd": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"owner": { | |
"$ref": "#/definitions/LolClubsClubMember" | |
}, | |
"permissions": { | |
"$ref": "#/definitions/LolClubsClubPermissions" | |
}, | |
"primary": { | |
"type": "boolean" | |
}, | |
"role": { | |
"$ref": "#/definitions/LolClubsClubRole" | |
}, | |
"tag": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPlayerClubMembership": { | |
"properties": { | |
"activeClubs": { | |
"items": { | |
"$ref": "#/definitions/LolClubsPlayerClub" | |
}, | |
"type": "array" | |
}, | |
"clubsServerConfig": { | |
"$ref": "#/definitions/LolClubsClubsConfig" | |
}, | |
"info": { | |
"$ref": "#/definitions/LolClubsClubPlayer" | |
}, | |
"pendingInvites": { | |
"items": { | |
"$ref": "#/definitions/LolClubsClubInvite" | |
}, | |
"type": "array" | |
}, | |
"preferences": { | |
"$ref": "#/definitions/LolClubsClubPreferences" | |
}, | |
"removedClubs": { | |
"items": { | |
"$ref": "#/definitions/LolClubsClub" | |
}, | |
"type": "array" | |
}, | |
"revokedInviteClubs": { | |
"items": { | |
"$ref": "#/definitions/LolClubsClub" | |
}, | |
"type": "array" | |
}, | |
"secureClubPresenceInfoString": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPlayerInfoDto": { | |
"properties": { | |
"currentAccountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currentPlatformId": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPlayerMembershipDto": { | |
"properties": { | |
"activeClubs": { | |
"items": { | |
"$ref": "#/definitions/LolClubsClubDto" | |
}, | |
"type": "array" | |
}, | |
"clubsServerConfig": { | |
"$ref": "#/definitions/LolClubsClubsServerConfigDto" | |
}, | |
"pendingInvites": { | |
"items": { | |
"$ref": "#/definitions/LolClubsMembershipInviteDto" | |
}, | |
"type": "array" | |
}, | |
"player": { | |
"$ref": "#/definitions/LolClubsPlayerInfoDto" | |
}, | |
"playerClubPreferences": { | |
"$ref": "#/definitions/LolClubsPlayerMembershipPreferencesDto" | |
}, | |
"removedClubs": { | |
"items": { | |
"$ref": "#/definitions/LolClubsClubReferenceDto" | |
}, | |
"type": "array" | |
}, | |
"resourceUri": { | |
"type": "string" | |
}, | |
"revokedInviteClubs": { | |
"items": { | |
"$ref": "#/definitions/LolClubsClubReferenceDto" | |
}, | |
"type": "array" | |
}, | |
"secureClubPresenceInfoString": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPlayerMembershipPreferencesDto": { | |
"properties": { | |
"primaryActiveClubKey": { | |
"type": "string" | |
}, | |
"shareClubAffiliation": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPlayerMembershipWithNotificationsDto": { | |
"properties": { | |
"membershipNotifications": { | |
"items": { | |
"$ref": "#/definitions/LolClubsMembershipNoficationsDto" | |
}, | |
"type": "array" | |
}, | |
"playerMembership": { | |
"$ref": "#/definitions/LolClubsPlayerMembershipDto" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPublicClubMemberLists": { | |
"properties": { | |
"activeMembers": { | |
"items": { | |
"$ref": "#/definitions/LolClubsPublicClubPlayer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPublicClubPlayer": { | |
"properties": { | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPublicClubPreferences": { | |
"properties": { | |
"shareClubAffiliation": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPublicClubServiceTag": { | |
"properties": { | |
"name": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"tag": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPublicClubTag": { | |
"properties": { | |
"clubName": { | |
"type": "string" | |
}, | |
"clubTag": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPublicClubsPublicData": { | |
"properties": { | |
"availability": { | |
"type": "string" | |
}, | |
"lastSeenOnlineTimestamp": { | |
"type": "string" | |
}, | |
"summonerIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
}, | |
"tag": { | |
"$ref": "#/definitions/LolClubsPublicClubTag" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPublicPlayerClub": { | |
"properties": { | |
"key": { | |
"type": "string" | |
}, | |
"members": { | |
"$ref": "#/definitions/LolClubsPublicClubMemberLists" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPublicPlayerClubMembership": { | |
"properties": { | |
"activeClubs": { | |
"items": { | |
"$ref": "#/definitions/LolClubsPublicPlayerClub" | |
}, | |
"type": "array" | |
}, | |
"info": { | |
"$ref": "#/definitions/LolClubsPublicClubPlayer" | |
}, | |
"preferences": { | |
"$ref": "#/definitions/LolClubsPublicClubPreferences" | |
}, | |
"secureClubPresenceInfoString": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPublicSessionResource": { | |
"properties": { | |
"sessionExpire": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"sessionState": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsPublicUserResource": { | |
"properties": { | |
"availability": { | |
"type": "string" | |
}, | |
"icon": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lastSeenOnlineTimestamp": { | |
"type": "string" | |
}, | |
"lol": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsRiotMessagingServiceMessage": { | |
"properties": { | |
"payload": { | |
"type": "string" | |
}, | |
"resource": { | |
"type": "string" | |
}, | |
"service": { | |
"type": "string" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"version": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolClubsRosterItemDto": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"clubRole": { | |
"type": "string" | |
}, | |
"summonerIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsAcsChampionGames": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"queue": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsAcsChampionGamesCollection": { | |
"properties": { | |
"champions": { | |
"items": { | |
"$ref": "#/definitions/LolCollectionsAcsChampionGames" | |
}, | |
"type": "array" | |
}, | |
"gameCount": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionLoginDataPacket": { | |
"properties": { | |
"allSummonerData": { | |
"$ref": "#/definitions/LolCollectionsSummonerData" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsChampionMastery": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championPoints": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championPointsSinceLastLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championPointsUntilNextLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"chestGranted": { | |
"type": "boolean" | |
}, | |
"highestGrade": { | |
"type": "string" | |
}, | |
"lastPlayTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsChestEligibility": { | |
"properties": { | |
"earnableChests": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maximumChests": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"nextChestRechargeTime": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsOwnership": { | |
"properties": { | |
"freeToPlayReward": { | |
"type": "boolean" | |
}, | |
"owned": { | |
"type": "boolean" | |
}, | |
"rental": { | |
"$ref": "#/definitions/LolCollectionsCollectionsRental" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsRental": { | |
"properties": { | |
"endDate": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"purchaseDate": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rented": { | |
"type": "boolean" | |
}, | |
"winCountRemaining": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsRune": { | |
"properties": { | |
"runeId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"runeSlotId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsRuneBook": { | |
"properties": { | |
"pages": { | |
"items": { | |
"$ref": "#/definitions/LolCollectionsCollectionsRunePage" | |
}, | |
"type": "array" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsRunePage": { | |
"properties": { | |
"current": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"runes": { | |
"items": { | |
"$ref": "#/definitions/LolCollectionsCollectionsRune" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsRuneQuantities": { | |
"properties": { | |
"runeQuantities": { | |
"items": { | |
"$ref": "#/definitions/LolCollectionsCollectionsRuneQuantity" | |
}, | |
"type": "array" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsRuneQuantity": { | |
"properties": { | |
"quantity": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"runeId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsSummonerBackdrop": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"backdropImage": { | |
"type": "string" | |
}, | |
"backdropMaskColor": { | |
"type": "string" | |
}, | |
"backdropType": { | |
"$ref": "#/definitions/LolCollectionsCollectionsSummonerBackdropType" | |
}, | |
"backdropVideo": { | |
"type": "string" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsSummonerBackdropType": { | |
"enum": [ | |
"default", | |
"summoner-icon", | |
"recently-played", | |
"highest-mastery", | |
"specified-skin" | |
], | |
"type": "string" | |
}, | |
"LolCollectionsCollectionsSummonerIcon": { | |
"properties": { | |
"iconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolCollectionsCollectionsOwnership" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsSummonerIcons": { | |
"properties": { | |
"icons": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"summonerIcons": { | |
"items": { | |
"$ref": "#/definitions/LolCollectionsCollectionsSummonerIcon" | |
}, | |
"type": "array" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsSummonerSpells": { | |
"properties": { | |
"spells": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsTopChampionMasteries": { | |
"properties": { | |
"masteries": { | |
"items": { | |
"$ref": "#/definitions/LolCollectionsCollectionsChampionMastery" | |
}, | |
"type": "array" | |
}, | |
"score": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsWardSkin": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolCollectionsCollectionsOwnership" | |
}, | |
"wardImagePath": { | |
"type": "string" | |
}, | |
"wardShadowImagePath": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsCollectionsWardSkinList": { | |
"properties": { | |
"wardSkinList": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsGameDataChampionMasteries": { | |
"properties": { | |
"tree": { | |
"$ref": "#/definitions/LolCollectionsGameDataChampionMasteryTree" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsGameDataChampionMasteryGroup": { | |
"properties": { | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rows": { | |
"items": { | |
"$ref": "#/definitions/LolCollectionsGameDataChampionMasteryRow" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsGameDataChampionMasteryRow": { | |
"properties": { | |
"masteries": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsGameDataChampionMasteryTree": { | |
"properties": { | |
"groups": { | |
"items": { | |
"$ref": "#/definitions/LolCollectionsGameDataChampionMasteryGroup" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsGameDataChampionSkin": { | |
"properties": { | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isBase": { | |
"type": "boolean" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"splashPath": { | |
"type": "string" | |
}, | |
"splashVideoPath": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsGameDataChampionSummary": { | |
"properties": { | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsGameDataSplashMetadata": { | |
"properties": { | |
"CalculatedColor": { | |
"type": "string" | |
}, | |
"OverrideColor": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsLcdsDynamicClientConfig": { | |
"properties": { | |
"DisabledChampions": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"connected": { | |
"type": "boolean" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolCollectionsLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolCollectionsPlayerNotification": { | |
"properties": { | |
"backgroundUrl": { | |
"type": "string" | |
}, | |
"critical": { | |
"type": "boolean" | |
}, | |
"data": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"detailKey": { | |
"type": "string" | |
}, | |
"iconUrl": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"source": { | |
"type": "string" | |
}, | |
"state": { | |
"type": "string" | |
}, | |
"titleKey": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsSummoner": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsSummonerData": { | |
"properties": { | |
"spellBook": { | |
"$ref": "#/definitions/CollectionsLcdsSpellBookDTO" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsSummonerProfile": { | |
"properties": { | |
"backgroundSkinId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsSummonerProfileUpdate": { | |
"properties": { | |
"key": { | |
"type": "string" | |
}, | |
"value": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolCollectionsTPVSaveResponseDTO": { | |
"properties": { | |
"data": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingChampionGames": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"lane": { | |
"type": "string" | |
}, | |
"queue": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"role": { | |
"type": "string" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingChampionGamesCollection": { | |
"properties": { | |
"champions": { | |
"items": { | |
"$ref": "#/definitions/LolContentTargetingChampionGames" | |
}, | |
"type": "array" | |
}, | |
"gameCount": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingContentTargetingFilterResponse": { | |
"properties": { | |
"filters": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingContentTargetingLocaleResponse": { | |
"properties": { | |
"locale": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingGeoInfo": { | |
"properties": { | |
"city": { | |
"type": "string" | |
}, | |
"country": { | |
"type": "string" | |
}, | |
"region": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingGeoInfoResponse": { | |
"properties": { | |
"errorMessage": { | |
"type": "string" | |
}, | |
"geoInfo": { | |
"$ref": "#/definitions/LolContentTargetingGeoInfo" | |
}, | |
"isLatest": { | |
"type": "boolean" | |
}, | |
"success": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolContentTargetingLoginSessionState" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingLoginSessionState": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolContentTargetingPlatformConfig": { | |
"properties": { | |
"ABTestFilterEnabled": { | |
"type": "boolean" | |
}, | |
"ABTestFilterGroups": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"Enabled": { | |
"type": "boolean" | |
}, | |
"LaneFilterEnabled": { | |
"type": "boolean" | |
}, | |
"LaneFilterThreshold": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"LevelFilterEnabled": { | |
"type": "boolean" | |
}, | |
"LocationFiltersEnabled": { | |
"type": "boolean" | |
}, | |
"Mapping": { | |
"type": "string" | |
}, | |
"RankFilterEnabled": { | |
"type": "boolean" | |
}, | |
"RankedFilterEnabled": { | |
"type": "boolean" | |
}, | |
"RevivalFilterEnabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingPluginStatus": { | |
"properties": { | |
"ready": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingRankedData": { | |
"properties": { | |
"rankedData": { | |
"items": { | |
"$ref": "#/definitions/LolContentTargetingRankedEntry" | |
}, | |
"type": "array" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingRankedEntry": { | |
"properties": { | |
"rankedQueue": { | |
"$ref": "#/definitions/LolContentTargetingRankedQueue" | |
}, | |
"rankedTier": { | |
"$ref": "#/definitions/LolContentTargetingRankedTier" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingRankedQueue": { | |
"enum": [ | |
"INVALID", | |
"RANKED_FLEX_TT", | |
"RANKED_FLEX_SR", | |
"RANKED_SOLO_5x5", | |
"RANKED_TEAM_3x3", | |
"RANKED_TEAM_5x5" | |
], | |
"type": "string" | |
}, | |
"LolContentTargetingRankedTier": { | |
"enum": [ | |
"NOT_RANKED", | |
"PROVISIONAL", | |
"BRONZE", | |
"SILVER", | |
"GOLD", | |
"PLATINUM", | |
"DIAMOND", | |
"MASTER", | |
"CHALLENGER" | |
], | |
"type": "string" | |
}, | |
"LolContentTargetingRegionLocale": { | |
"properties": { | |
"locale": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingSettingsResource": { | |
"properties": { | |
"data": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolContentTargetingSummoner": { | |
"properties": { | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolDiscordRpGameDataChampionSummary": { | |
"properties": { | |
"alias": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEmailVerificationAccessToken": { | |
"properties": { | |
"expiry": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"token": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEmailVerificationEmailUpdate": { | |
"properties": { | |
"email": { | |
"type": "string" | |
}, | |
"password": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEmailVerificationEmailVerificationSession": { | |
"properties": { | |
"email": { | |
"type": "string" | |
}, | |
"emailVerified": { | |
"type": "boolean" | |
}, | |
"fatalError": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEmailVerificationRegionLocale": { | |
"properties": { | |
"locale": { | |
"type": "string" | |
}, | |
"region": { | |
"type": "string" | |
}, | |
"webLanguage": { | |
"type": "string" | |
}, | |
"webRegion": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEmailVerificationRemoteEmailVerificationSession": { | |
"properties": { | |
"email": { | |
"type": "string" | |
}, | |
"emailVerified": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEmailVerificationValidationStatus": { | |
"properties": { | |
"emailStatus": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameChampionMasteryGrade": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"grade": { | |
"type": "string" | |
}, | |
"playerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameChampionMasteryMini": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championLevel": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameChampionMasteryUpdate": { | |
"properties": { | |
"bonusPointsGained": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"grade": { | |
"type": "string" | |
}, | |
"hasLeveledUp": { | |
"type": "boolean" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"level": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"levelUpList": { | |
"items": { | |
"$ref": "#/definitions/LolEndOfGameChampionMasteryMini" | |
}, | |
"type": "array" | |
}, | |
"memberGrades": { | |
"items": { | |
"$ref": "#/definitions/LolEndOfGameChampionMasteryGrade" | |
}, | |
"type": "array" | |
}, | |
"playerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"pointsBeforeGame": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"pointsGained": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"pointsGainedIndividualContribution": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"pointsSinceLastLevelBeforeGame": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"pointsUntilNextLevelAfterGame": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"pointsUntilNextLevelBeforeGame": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"score": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameEndOfGamePlayer": { | |
"properties": { | |
"botPlayer": { | |
"type": "boolean" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"elo": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"eloChange": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isReportingDisabled": { | |
"type": "boolean" | |
}, | |
"items": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"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" | |
}, | |
"stats": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
}, | |
"teamId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"userId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"wins": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameEndOfGamePlayerComplaintV2": { | |
"properties": { | |
"comment": { | |
"type": "string" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"offenses": { | |
"type": "string" | |
}, | |
"reportedSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameEndOfGamePoints": { | |
"properties": { | |
"pointChangeFromChampionsOwned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pointChangeFromGameplay": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pointsUntilNextReroll": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pointsUsed": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"previousPoints": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rerollCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"totalPoints": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameEndOfGameStats": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"basePoints": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"battleBoostIpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"boostIpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"boostXpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"causedEarlySurrender": { | |
"type": "boolean" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"coOpVsAiMinutesLeftToday": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"coOpVsAiMsecsUntilReset": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"completionBonusPoints": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"currentLevel": { | |
"format": "int64", | |
"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" | |
}, | |
"globalBoostXpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"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" | |
}, | |
"missionsXpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"myTeamStatus": { | |
"type": "string" | |
}, | |
"newSpells": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"nextLevelXp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"odinBonusIp": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"partyRewardsBonusIpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pointsPenalties": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"preLevelUpExperienceTotal": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"preLevelUpNextLevelXp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"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" | |
}, | |
"rerollData": { | |
"$ref": "#/definitions/LolEndOfGameEndOfGamePoints" | |
}, | |
"roomName": { | |
"type": "string" | |
}, | |
"roomPassword": { | |
"type": "string" | |
}, | |
"rpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"sendStatsToTournamentProvider": { | |
"type": "boolean" | |
}, | |
"skinId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"skinIndex": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
}, | |
"talentPointsGained": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"teamBoost": { | |
"$ref": "#/definitions/LolEndOfGameEndOfGameTeamBoost" | |
}, | |
"teamEarlySurrendered": { | |
"type": "boolean" | |
}, | |
"teams": { | |
"items": { | |
"$ref": "#/definitions/LolEndOfGameEndOfGameTeam" | |
}, | |
"type": "array" | |
}, | |
"timeUntilNextFirstWinBonus": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"userId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameEndOfGameTeam": { | |
"properties": { | |
"championBans": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"fullId": { | |
"type": "string" | |
}, | |
"isBottomTeam": { | |
"type": "boolean" | |
}, | |
"isPlayerTeam": { | |
"type": "boolean" | |
}, | |
"isWinningTeam": { | |
"type": "boolean" | |
}, | |
"memberStatusString": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"players": { | |
"items": { | |
"$ref": "#/definitions/LolEndOfGameEndOfGamePlayer" | |
}, | |
"type": "array" | |
}, | |
"stats": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"tag": { | |
"type": "string" | |
}, | |
"teamId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameEndOfGameTeamBoost": { | |
"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" | |
}, | |
"LolEndOfGameGameDataChampionSummary": { | |
"properties": { | |
"alias": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameGameflowAvailability": { | |
"properties": { | |
"state": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameGameflowClient": { | |
"properties": { | |
"observerServerIp": { | |
"type": "string" | |
}, | |
"observerServerPort": { | |
"type": "integer" | |
}, | |
"running": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameGameflowGameData": { | |
"properties": { | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolEndOfGameGameflowSession": { | |
"properties": { | |
"gameClient": { | |
"$ref": "#/definitions/LolEndOfGameGameflowClient" | |
}, | |
"gameData": { | |
"$ref": "#/definitions/LolEndOfGameGameflowGameData" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolEndOfGameGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameGameloopPlayerInfoV1": { | |
"properties": { | |
"rerollDataBag": { | |
"$ref": "#/definitions/LolEndOfGameRerollDataBagForClientV1" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameLobbyInvitation": { | |
"properties": { | |
"state": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameLoginDataPacket": { | |
"properties": { | |
"allSummonerData": { | |
"$ref": "#/definitions/LolEndOfGameLoginSummonerData" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"simpleMessages": { | |
"items": { | |
"$ref": "#/definitions/LolEndOfGameSimpleMessage" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolEndOfGameLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolEndOfGameLoginSummonerData": { | |
"properties": { | |
"summonerLevelAndPoints": { | |
"$ref": "#/definitions/LolEndOfGameLoginSummonerLevelAndPoints" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameLoginSummonerLevelAndPoints": { | |
"properties": { | |
"expPoints": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"expToNextLevel": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameRMSMessage": { | |
"properties": { | |
"payload": { | |
"type": "string" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameRerollDataBagForClientV1": { | |
"properties": { | |
"maximumRerolls": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pointCostOfReroll": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"pointsGainedLastGame": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"pointsUntilNextReroll": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rerollCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"totalPoints": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEndOfGameSimpleMessage": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"msgId": { | |
"type": "string" | |
}, | |
"params": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsESportStreamNotificationsConfig": { | |
"properties": { | |
"beappFailureLongPollMinutes": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"notificationsAssetMagickURL": { | |
"type": "string" | |
}, | |
"notificationsEnabled": { | |
"type": "boolean" | |
}, | |
"notificationsLongPollMinutes": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"notificationsServiceEndpoint": { | |
"type": "string" | |
}, | |
"notificationsServiceEndpointV2": { | |
"type": "string" | |
}, | |
"notificationsShortPollMinutes": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"notificationsStreamGroupSlug": { | |
"type": "string" | |
}, | |
"notificationsStreamURL": { | |
"type": "string" | |
}, | |
"useServiceEndpointV2": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsESportsAPI_streamgroups": { | |
"properties": { | |
"content": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"live": { | |
"type": "boolean" | |
}, | |
"slug": { | |
"type": "string" | |
}, | |
"title": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsESportsAPI_streamgroups_root": { | |
"properties": { | |
"highlanderTournaments": { | |
"items": { | |
"$ref": "#/definitions/LolEsportStreamNotificationsEsportsAPI_highlanderTournaments" | |
}, | |
"type": "array" | |
}, | |
"streamgroups": { | |
"items": { | |
"$ref": "#/definitions/LolEsportStreamNotificationsESportsAPI_streamgroups" | |
}, | |
"type": "array" | |
}, | |
"teams": { | |
"items": { | |
"$ref": "#/definitions/LolEsportStreamNotificationsEsportsAPI_teams" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsESportsLiveStreams": { | |
"properties": { | |
"liveStreams": { | |
"items": { | |
"$ref": "#/definitions/LolEsportStreamNotificationsESportsStreams" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsESportsStreams": { | |
"properties": { | |
"teamAAcronym": { | |
"type": "string" | |
}, | |
"teamAGuid": { | |
"type": "string" | |
}, | |
"teamAId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"teamALogoUrl": { | |
"type": "string" | |
}, | |
"teamAName": { | |
"type": "string" | |
}, | |
"teamBAcronym": { | |
"type": "string" | |
}, | |
"teamBGuid": { | |
"type": "string" | |
}, | |
"teamBId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"teamBLogoUrl": { | |
"type": "string" | |
}, | |
"teamBName": { | |
"type": "string" | |
}, | |
"title": { | |
"type": "string" | |
}, | |
"tournamentDescription": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsEsportsAPI_highlanderTournaments": { | |
"properties": { | |
"brackets": { | |
"additionalProperties": { | |
"$ref": "#/definitions/LolEsportStreamNotificationsEsportsAPI_highlanderTournaments_brackets" | |
}, | |
"type": "object" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"rosters": { | |
"additionalProperties": { | |
"$ref": "#/definitions/LolEsportStreamNotificationsEsportsAPI_highlanderTournaments_rosters" | |
}, | |
"type": "object" | |
}, | |
"title": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsEsportsAPI_highlanderTournaments_brackets": { | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"matches": { | |
"additionalProperties": { | |
"$ref": "#/definitions/LolEsportStreamNotificationsEsportsAPI_highlanderTournaments_matches" | |
}, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsEsportsAPI_highlanderTournaments_matches": { | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"input": { | |
"items": { | |
"$ref": "#/definitions/LolEsportStreamNotificationsEsportsAPI_highlanderTournaments_roster" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsEsportsAPI_highlanderTournaments_roster": { | |
"properties": { | |
"roster": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsEsportsAPI_highlanderTournaments_rosters": { | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"team": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsEsportsAPI_teams": { | |
"properties": { | |
"acronym": { | |
"type": "string" | |
}, | |
"guid": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"logoUrl": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"slug": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolEsportStreamNotificationsGameflowSession": { | |
"properties": { | |
"phase": { | |
"$ref": "#/definitions/LolEsportStreamNotificationsGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsLiveMatch": { | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"streamGroup": { | |
"type": "string" | |
}, | |
"teams": { | |
"items": { | |
"$ref": "#/definitions/LolEsportStreamNotificationsLiveMatchTeam" | |
}, | |
"type": "array" | |
}, | |
"title": { | |
"type": "string" | |
}, | |
"tournamentDescription": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsLiveMatchTeam": { | |
"properties": { | |
"acronym": { | |
"type": "string" | |
}, | |
"guid": { | |
"type": "string" | |
}, | |
"logoUrl": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolEsportStreamNotificationsPlayerNotificationResource": { | |
"properties": { | |
"backgroundUrl": { | |
"type": "string" | |
}, | |
"critical": { | |
"type": "boolean" | |
}, | |
"data": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"detailKey": { | |
"type": "string" | |
}, | |
"expires": { | |
"type": "string" | |
}, | |
"iconUrl": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"source": { | |
"type": "string" | |
}, | |
"state": { | |
"type": "string" | |
}, | |
"titleKey": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolFeaturedModesEligibility": { | |
"properties": { | |
"eligible": { | |
"type": "boolean" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"restrictions": { | |
"items": { | |
"$ref": "#/definitions/LolFeaturedModesEligibilityRestriction" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolFeaturedModesEligibilityRestriction": { | |
"properties": { | |
"expiredTimestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"restrictionArgs": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"restrictionCode": { | |
"$ref": "#/definitions/LolFeaturedModesEligibilityRestrictionCode" | |
}, | |
"summonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolFeaturedModesEligibilityRestrictionCode": { | |
"enum": [ | |
"QueueDisabled", | |
"QueueUnsupported", | |
"PlayerLevelRestriction", | |
"PlayerTimedRestriction", | |
"PlayerBannedRestriction", | |
"PlayerAvailableChampionRestriction", | |
"TeamDivisionRestriction", | |
"TeamMaxSizeRestriction", | |
"TeamMinSizeRestriction", | |
"PlayerBingeRestriction", | |
"PlayerDodgeRestriction", | |
"PlayerInGameRestriction", | |
"PlayerLeaverBustedRestriction", | |
"PlayerLeaverTaintedWarningRestriction", | |
"PlayerMaxLevelRestriction", | |
"PlayerMinLevelRestriction", | |
"PlayerMinorRestriction", | |
"PlayerRankedSuspensionRestriction", | |
"TeamHighMMRMaxSizeRestriction", | |
"TeamSizeRestriction", | |
"PrerequisiteQueuesNotPlayedRestriction", | |
"UnknownRestriction" | |
], | |
"type": "string" | |
}, | |
"LolFeaturedModesFeaturedModesConfig": { | |
"properties": { | |
"MaxNotificationSaveDelayMinutes": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"NotificationsEnabled": { | |
"type": "boolean" | |
}, | |
"QueueToggleNotificationMinutesThreshold": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolFeaturedModesGameflowAvailability": { | |
"properties": { | |
"isAvailable": { | |
"type": "boolean" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolFeaturedModesGameflowAvailabilityState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolFeaturedModesGameflowAvailabilityState": { | |
"enum": [ | |
"Available", | |
"Initializing", | |
"Patching", | |
"PlayerBanned", | |
"InGameFlow", | |
"Configuration" | |
], | |
"type": "string" | |
}, | |
"LolFeaturedModesGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolFeaturedModesGameflowSession": { | |
"properties": { | |
"phase": { | |
"$ref": "#/definitions/LolFeaturedModesGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolFeaturedModesLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolFeaturedModesLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolFeaturedModesLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolFeaturedModesMaps": { | |
"properties": { | |
"assets": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"gameModeName": { | |
"type": "string" | |
}, | |
"isRGM": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolFeaturedModesPlayerNotificationResource": { | |
"properties": { | |
"backgroundUrl": { | |
"type": "string" | |
}, | |
"critical": { | |
"type": "boolean" | |
}, | |
"data": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"detailKey": { | |
"type": "string" | |
}, | |
"expires": { | |
"type": "string" | |
}, | |
"iconUrl": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"source": { | |
"type": "string" | |
}, | |
"state": { | |
"type": "string" | |
}, | |
"titleKey": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolFeaturedModesQueue": { | |
"properties": { | |
"category": { | |
"$ref": "#/definitions/LolFeaturedModesQueueGameCategory" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameMutator": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"lastToggledOffTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lastToggledOnTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"mapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"queueAvailability": { | |
"$ref": "#/definitions/LolFeaturedModesQueueAvailability" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolFeaturedModesQueueAvailability": { | |
"enum": [ | |
"Available", | |
"PlatformDisabled", | |
"DoesntMeetRequirements" | |
], | |
"type": "string" | |
}, | |
"LolFeaturedModesQueueGameCategory": { | |
"enum": [ | |
"None", | |
"Custom", | |
"PvP", | |
"VersusAi" | |
], | |
"type": "string" | |
}, | |
"LolGameClientChatGameClientChatMessageResource": { | |
"properties": { | |
"body": { | |
"type": "string" | |
}, | |
"fromSummonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameQueuesLoginDataPacket": { | |
"properties": { | |
"gameTypeConfigs": { | |
"items": { | |
"$ref": "#/definitions/LolGameQueuesQueueGameTypeConfig" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameQueuesLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"connected": { | |
"type": "boolean" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolGameQueuesLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameQueuesLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolGameQueuesPlatformConfigEnabledMap": { | |
"properties": { | |
"gameMapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minPlayers": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameQueuesQueue": { | |
"properties": { | |
"allowablePremadeSizes": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"areFreeChampionsAllowed": { | |
"type": "boolean" | |
}, | |
"assetMutator": { | |
"type": "string" | |
}, | |
"category": { | |
"$ref": "#/definitions/LolGameQueuesQueueGameCategory" | |
}, | |
"championsRequiredToPlay": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"detailedDescription": { | |
"type": "string" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameMutator": { | |
"type": "string" | |
}, | |
"gameTypeConfig": { | |
"$ref": "#/definitions/LolGameQueuesQueueGameTypeConfig" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isRanked": { | |
"type": "boolean" | |
}, | |
"isTeamBuilderManaged": { | |
"type": "boolean" | |
}, | |
"isTeamOnly": { | |
"type": "boolean" | |
}, | |
"lastToggledOffTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lastToggledOnTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"mapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"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" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"numPlayersPerTeam": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"queueAvailability": { | |
"$ref": "#/definitions/LolGameQueuesQueueAvailability" | |
}, | |
"queueRewards": { | |
"$ref": "#/definitions/LolGameQueuesQueueReward" | |
}, | |
"shortName": { | |
"type": "string" | |
}, | |
"showPositionSelector": { | |
"type": "boolean" | |
}, | |
"spectatorEnabled": { | |
"type": "boolean" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameQueuesQueueAvailability": { | |
"enum": [ | |
"Available", | |
"PlatformDisabled", | |
"DoesntMeetRequirements" | |
], | |
"type": "string" | |
}, | |
"LolGameQueuesQueueCustomGame": { | |
"properties": { | |
"gameServerRegions": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"queueAvailability": { | |
"$ref": "#/definitions/LolGameQueuesQueueAvailability" | |
}, | |
"spectatorPolicies": { | |
"items": { | |
"$ref": "#/definitions/LolGameQueuesQueueCustomGameSpectatorPolicy" | |
}, | |
"type": "array" | |
}, | |
"spectatorSlotLimit": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"subcategories": { | |
"items": { | |
"$ref": "#/definitions/LolGameQueuesQueueCustomGameSubcategory" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameQueuesQueueCustomGameSpectatorPolicy": { | |
"enum": [ | |
"NotAllowed", | |
"LobbyAllowed", | |
"FriendsAllowed", | |
"AllAllowed" | |
], | |
"type": "string" | |
}, | |
"LolGameQueuesQueueCustomGameSubcategory": { | |
"properties": { | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameMutator": { | |
"type": "string" | |
}, | |
"mapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxPlayerCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maximumParticipantListSize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minimumParticipantListSize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"mutators": { | |
"items": { | |
"$ref": "#/definitions/LolGameQueuesQueueGameTypeConfig" | |
}, | |
"type": "array" | |
}, | |
"numPlayersPerTeam": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"queueAvailability": { | |
"$ref": "#/definitions/LolGameQueuesQueueAvailability" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameQueuesQueueGameCategory": { | |
"enum": [ | |
"None", | |
"Custom", | |
"PvP", | |
"VersusAi" | |
], | |
"type": "string" | |
}, | |
"LolGameQueuesQueueGameTypeConfig": { | |
"properties": { | |
"advancedLearningQuests": { | |
"type": "boolean" | |
}, | |
"allowTrades": { | |
"type": "boolean" | |
}, | |
"banMode": { | |
"type": "string" | |
}, | |
"banTimerDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"battleBoost": { | |
"type": "boolean" | |
}, | |
"crossTeamChampionPool": { | |
"type": "boolean" | |
}, | |
"deathMatch": { | |
"type": "boolean" | |
}, | |
"doNotRemove": { | |
"type": "boolean" | |
}, | |
"duplicatePick": { | |
"type": "boolean" | |
}, | |
"exclusivePick": { | |
"type": "boolean" | |
}, | |
"gameModeOverride": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"learningQuests": { | |
"type": "boolean" | |
}, | |
"mainPickTimerDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxAllowableBans": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"numPlayersPerTeamOverride": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"onboardCoopBeginner": { | |
"type": "boolean" | |
}, | |
"pickMode": { | |
"type": "string" | |
}, | |
"postPickTimerDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"reroll": { | |
"type": "boolean" | |
}, | |
"teamChampionPool": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameQueuesQueueReward": { | |
"properties": { | |
"isChampionPointsEnabled": { | |
"type": "boolean" | |
}, | |
"isIpEnabled": { | |
"type": "boolean" | |
}, | |
"isXpEnabled": { | |
"type": "boolean" | |
}, | |
"partySizeIpRewards": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameQueuesQueueTranslation": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"detailedDescription": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"shortName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameSettingsLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gasToken": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolGameSettingsLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameSettingsLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolGameSettingsgamesettingsgameclient": { | |
"properties": { | |
"running": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameSettingsgamesettingsgameflowsession": { | |
"properties": { | |
"gameClient": { | |
"$ref": "#/definitions/LolGameSettingsgamesettingsgameclient" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowGameflowAvailability": { | |
"properties": { | |
"isAvailable": { | |
"type": "boolean" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolGameflowGameflowAvailabilityState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowGameflowAvailabilityState": { | |
"enum": [ | |
"Available", | |
"Initializing", | |
"Patching", | |
"PlayerBanned", | |
"InGameFlow", | |
"Configuration" | |
], | |
"type": "string" | |
}, | |
"LolGameflowGameflowGameClient": { | |
"properties": { | |
"observerServerIp": { | |
"type": "string" | |
}, | |
"observerServerPort": { | |
"type": "integer" | |
}, | |
"running": { | |
"type": "boolean" | |
}, | |
"serverIp": { | |
"type": "string" | |
}, | |
"serverPort": { | |
"type": "integer" | |
}, | |
"visible": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowGameflowGameData": { | |
"properties": { | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameName": { | |
"type": "string" | |
}, | |
"isCustomGame": { | |
"type": "boolean" | |
}, | |
"password": { | |
"type": "string" | |
}, | |
"playerChampionSelections": { | |
"items": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "array" | |
}, | |
"queue": { | |
"$ref": "#/definitions/LolGameflowQueue" | |
}, | |
"spectatorsAllowed": { | |
"type": "boolean" | |
}, | |
"teamOne": { | |
"items": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "array" | |
}, | |
"teamTwo": { | |
"items": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowGameflowGameDodge": { | |
"properties": { | |
"dodgeIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolGameflowGameflowPhase" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolGameflowGameflowGameDodgeState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowGameflowGameDodgeState": { | |
"enum": [ | |
"Invalid", | |
"PartyDodged", | |
"StrangerDodged", | |
"TournamentDodged" | |
], | |
"type": "string" | |
}, | |
"LolGameflowGameflowGameMap": { | |
"properties": { | |
"assets": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameModeName": { | |
"type": "string" | |
}, | |
"gameModeShortName": { | |
"type": "string" | |
}, | |
"gameMutator": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isRGM": { | |
"type": "boolean" | |
}, | |
"mapStringId": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"platformName": { | |
"type": "string" | |
}, | |
"properties": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolGameflowGameflowProcessInfo": { | |
"properties": { | |
"pid": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rawArgs": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowGameflowSession": { | |
"properties": { | |
"gameClient": { | |
"$ref": "#/definitions/LolGameflowGameflowGameClient" | |
}, | |
"gameData": { | |
"$ref": "#/definitions/LolGameflowGameflowGameData" | |
}, | |
"gameDodge": { | |
"$ref": "#/definitions/LolGameflowGameflowGameDodge" | |
}, | |
"map": { | |
"$ref": "#/definitions/LolGameflowGameflowGameMap" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolGameflowGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowGameflowWatchPhase": { | |
"enum": [ | |
"None", | |
"WatchStarted", | |
"WatchInProgress", | |
"WatchFailedToLaunch" | |
], | |
"type": "string" | |
}, | |
"LolGameflowLobbyStatus": { | |
"properties": { | |
"allowedPlayAgain": { | |
"type": "boolean" | |
}, | |
"customSpectatorPolicy": { | |
"$ref": "#/definitions/LolGameflowQueueCustomGameSpectatorPolicy" | |
}, | |
"invitedSummonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"isCustom": { | |
"type": "boolean" | |
}, | |
"isLeader": { | |
"type": "boolean" | |
}, | |
"isPracticeTool": { | |
"type": "boolean" | |
}, | |
"isSpectator": { | |
"type": "boolean" | |
}, | |
"lobbyId": { | |
"type": "string" | |
}, | |
"memberSummonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"connected": { | |
"type": "boolean" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolGameflowLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolGameflowPatcherProductState": { | |
"properties": { | |
"action": { | |
"$ref": "#/definitions/LolGameflowPatcherProductStateAction" | |
}, | |
"isCorrupted": { | |
"type": "boolean" | |
}, | |
"isStopped": { | |
"type": "boolean" | |
}, | |
"isUpToDate": { | |
"type": "boolean" | |
}, | |
"isUpdateAvailable": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowPatcherProductStateAction": { | |
"enum": [ | |
"Idle", | |
"CheckingForUpdates", | |
"Patching", | |
"Repairing" | |
], | |
"type": "string" | |
}, | |
"LolGameflowPlayerStatus": { | |
"properties": { | |
"canInviteOthersAtEog": { | |
"type": "boolean" | |
}, | |
"currentLobbyStatus": { | |
"$ref": "#/definitions/LolGameflowLobbyStatus" | |
}, | |
"lastQueuedLobbyStatus": { | |
"$ref": "#/definitions/LolGameflowLobbyStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowQueue": { | |
"properties": { | |
"areFreeChampionsAllowed": { | |
"type": "boolean" | |
}, | |
"assetMutator": { | |
"type": "string" | |
}, | |
"category": { | |
"$ref": "#/definitions/LolGameflowQueueGameCategory" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"detailedDescription": { | |
"type": "string" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameMutator": { | |
"type": "string" | |
}, | |
"gameTypeConfig": { | |
"$ref": "#/definitions/LolGameflowQueueGameTypeConfig" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isRanked": { | |
"type": "boolean" | |
}, | |
"isTeamBuilderManaged": { | |
"type": "boolean" | |
}, | |
"isTeamOnly": { | |
"type": "boolean" | |
}, | |
"mapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"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" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"numPlayersPerTeam": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"queueAvailability": { | |
"$ref": "#/definitions/LolGameflowQueueAvailability" | |
}, | |
"queueRewards": { | |
"$ref": "#/definitions/LolGameflowQueueReward" | |
}, | |
"shortName": { | |
"type": "string" | |
}, | |
"spectatorEnabled": { | |
"type": "boolean" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowQueueAvailability": { | |
"enum": [ | |
"Available", | |
"PlatformDisabled", | |
"DoesntMeetRequirements" | |
], | |
"type": "string" | |
}, | |
"LolGameflowQueueCustomGameSpectatorPolicy": { | |
"enum": [ | |
"NotAllowed", | |
"LobbyAllowed", | |
"FriendsAllowed", | |
"AllAllowed" | |
], | |
"type": "string" | |
}, | |
"LolGameflowQueueGameCategory": { | |
"enum": [ | |
"None", | |
"Custom", | |
"PvP", | |
"VersusAi" | |
], | |
"type": "string" | |
}, | |
"LolGameflowQueueGameTypeConfig": { | |
"properties": { | |
"advancedLearningQuests": { | |
"type": "boolean" | |
}, | |
"allowTrades": { | |
"type": "boolean" | |
}, | |
"banMode": { | |
"type": "string" | |
}, | |
"banTimerDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"battleBoost": { | |
"type": "boolean" | |
}, | |
"crossTeamChampionPool": { | |
"type": "boolean" | |
}, | |
"deathMatch": { | |
"type": "boolean" | |
}, | |
"doNotRemove": { | |
"type": "boolean" | |
}, | |
"duplicatePick": { | |
"type": "boolean" | |
}, | |
"exclusivePick": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"learningQuests": { | |
"type": "boolean" | |
}, | |
"mainPickTimerDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxAllowableBans": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"onboardCoopBeginner": { | |
"type": "boolean" | |
}, | |
"pickMode": { | |
"type": "string" | |
}, | |
"postPickTimerDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"reroll": { | |
"type": "boolean" | |
}, | |
"teamChampionPool": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowQueueReward": { | |
"properties": { | |
"isChampionPointsEnabled": { | |
"type": "boolean" | |
}, | |
"isIpEnabled": { | |
"type": "boolean" | |
}, | |
"isXpEnabled": { | |
"type": "boolean" | |
}, | |
"partySizeIpRewards": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowRegionLocale": { | |
"properties": { | |
"locale": { | |
"type": "string" | |
}, | |
"region": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowReplaysSettingsData": { | |
"properties": { | |
"highlights-folder-path": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGameflowReplaysSettingsResource": { | |
"properties": { | |
"data": { | |
"$ref": "#/definitions/LolGameflowReplaysSettingsData" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGeoinfoGeoInfo": { | |
"properties": { | |
"city": { | |
"type": "string" | |
}, | |
"country": { | |
"type": "string" | |
}, | |
"region": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGeoinfoGeoInfoConfig": { | |
"properties": { | |
"Enabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGeoinfoGeoInfoResponse": { | |
"properties": { | |
"errorMessage": { | |
"type": "string" | |
}, | |
"geoInfo": { | |
"$ref": "#/definitions/LolGeoinfoGeoInfo" | |
}, | |
"isLatest": { | |
"type": "boolean" | |
}, | |
"success": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGeoinfoLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolGeoinfoLoginSessionState" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGeoinfoLoginSessionState": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolGeoinfoWhereAmIRequest": { | |
"properties": { | |
"ipAddress": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolGeoinfoWhereAmIResponse": { | |
"properties": { | |
"city": { | |
"type": "string" | |
}, | |
"country": { | |
"type": "string" | |
}, | |
"region": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2ApiHonorPlayerServerRequest": { | |
"properties": { | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"honorCategory": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2Ballot": { | |
"properties": { | |
"eligiblePlayers": { | |
"items": { | |
"$ref": "#/definitions/LolHonorV2EligiblePlayer" | |
}, | |
"type": "array" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2DynamicHonorMessage": { | |
"properties": { | |
"messageId": { | |
"type": "string" | |
}, | |
"value": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2EligiblePlayer": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"skinIndex": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"skinName": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2EndOfGamePlayer": { | |
"properties": { | |
"botPlayer": { | |
"type": "boolean" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isReportingDisabled": { | |
"type": "boolean" | |
}, | |
"leaver": { | |
"type": "boolean" | |
}, | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"skinIndex": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"skinName": { | |
"type": "string" | |
}, | |
"stats": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
}, | |
"teamId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"userId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"wins": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2EndOfGameStats": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"difficulty": { | |
"type": "string" | |
}, | |
"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" | |
}, | |
"myTeamStatus": { | |
"type": "string" | |
}, | |
"queueType": { | |
"type": "string" | |
}, | |
"ranked": { | |
"type": "boolean" | |
}, | |
"reportGameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
}, | |
"teams": { | |
"items": { | |
"$ref": "#/definitions/LolHonorV2EndOfGameTeam" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2EndOfGameTeam": { | |
"properties": { | |
"championBans": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"fullId": { | |
"type": "string" | |
}, | |
"isBottomTeam": { | |
"type": "boolean" | |
}, | |
"isPlayerTeam": { | |
"type": "boolean" | |
}, | |
"isWinningTeam": { | |
"type": "boolean" | |
}, | |
"memberStatusString": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"players": { | |
"items": { | |
"$ref": "#/definitions/LolHonorV2EndOfGamePlayer" | |
}, | |
"type": "array" | |
}, | |
"stats": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"tag": { | |
"type": "string" | |
}, | |
"teamId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2GameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolHonorV2GameflowSession": { | |
"properties": { | |
"phase": { | |
"$ref": "#/definitions/LolHonorV2GameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2Honor": { | |
"properties": { | |
"honorCategory": { | |
"type": "string" | |
}, | |
"voterRelationship": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2HonorConfig": { | |
"properties": { | |
"DayOneModalEnabled": { | |
"type": "boolean" | |
}, | |
"Enabled": { | |
"type": "boolean" | |
}, | |
"Honor2018Enabled": { | |
"type": "boolean" | |
}, | |
"SecondsToVote": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2HonorRecipient": { | |
"properties": { | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"honors": { | |
"items": { | |
"$ref": "#/definitions/LolHonorV2Honor" | |
}, | |
"type": "array" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2LoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolHonorV2LoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2LoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolHonorV2MutualHonor": { | |
"properties": { | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summoners": { | |
"items": { | |
"$ref": "#/definitions/LolHonorV2MutualHonorPlayer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2MutualHonorPlayer": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"skinIndex": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2ProfileInfo": { | |
"properties": { | |
"checkpoint": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"honorLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rewardsLocked": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2Reward": { | |
"properties": { | |
"quantity": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rewardType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2RiotMessagingServiceMessage": { | |
"properties": { | |
"payload": { | |
"type": "string" | |
}, | |
"resource": { | |
"type": "string" | |
}, | |
"service": { | |
"type": "string" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"version": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2SequenceEvent": { | |
"properties": { | |
"name": { | |
"type": "string" | |
}, | |
"priority": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2ServiceProxyHonorPlayerServerRequest": { | |
"properties": { | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"honorType": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2ServiceProxyRetrieveProfileResponse": { | |
"properties": { | |
"checkpoint": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"honorLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rewardsLocked": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2VendedHonorChange": { | |
"properties": { | |
"actionType": { | |
"type": "string" | |
}, | |
"currentState": { | |
"$ref": "#/definitions/LolHonorV2VendedHonorState" | |
}, | |
"dynamicHonorMessage": { | |
"$ref": "#/definitions/LolHonorV2DynamicHonorMessage" | |
}, | |
"previousState": { | |
"$ref": "#/definitions/LolHonorV2VendedHonorState" | |
}, | |
"reward": { | |
"$ref": "#/definitions/LolHonorV2Reward" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2VendedHonorState": { | |
"properties": { | |
"checkpoint": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"level": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rewardsLocked": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2VendedReward": { | |
"properties": { | |
"dynamicHonorMessage": { | |
"$ref": "#/definitions/LolHonorV2DynamicHonorMessage" | |
}, | |
"quantity": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rewardType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolHonorV2VoteCompletion": { | |
"properties": { | |
"fullTeamVote": { | |
"type": "boolean" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryAccessTokenResource": { | |
"properties": { | |
"expiry": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"scopes": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"token": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryCacheEntry": { | |
"properties": { | |
"expirationMS": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"signedInventoryJwt": { | |
"type": "string" | |
}, | |
"valid": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryCatalogItem": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"itemInstanceId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryInventoryDTO": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"expires": { | |
"type": "string" | |
}, | |
"items": { | |
"additionalProperties": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "object" | |
}, | |
"itemsJwt": { | |
"type": "string" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryInventoryItem": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"ownershipType": { | |
"$ref": "#/definitions/LolInventoryItemOwnershipType" | |
}, | |
"purchaseDate": { | |
"type": "string" | |
}, | |
"quantity": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"uuid": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryInventoryItemDTO": { | |
"properties": { | |
"entitlementId": { | |
"type": "string" | |
}, | |
"entitlementTypeId": { | |
"type": "string" | |
}, | |
"expirationDate": { | |
"type": "string" | |
}, | |
"f2p": { | |
"type": "boolean" | |
}, | |
"instanceId": { | |
"type": "string" | |
}, | |
"instanceTypeId": { | |
"type": "string" | |
}, | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"lsb": { | |
"type": "boolean" | |
}, | |
"payload": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"purchaseDate": { | |
"type": "string" | |
}, | |
"quantity": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rental": { | |
"type": "boolean" | |
}, | |
"usedInGameDate": { | |
"type": "string" | |
}, | |
"wins": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryInventoryItemWithPayload": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"ownershipType": { | |
"$ref": "#/definitions/LolInventoryItemOwnershipType" | |
}, | |
"payload": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"purchaseDate": { | |
"type": "string" | |
}, | |
"uuid": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryInventoryNotification": { | |
"properties": { | |
"acknowledged": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryInventoryResponseDTO": { | |
"properties": { | |
"data": { | |
"$ref": "#/definitions/LolInventoryInventoryDTO" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryItemOwnershipType": { | |
"enum": [ | |
"OWNED", | |
"RENTED", | |
"F2P" | |
], | |
"type": "string" | |
}, | |
"LolInventoryLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gasToken": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"idToken": { | |
"type": "string" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolInventoryLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolInventoryRiotMessagingServiceMessage": { | |
"properties": { | |
"payload": { | |
"type": "string" | |
}, | |
"resource": { | |
"type": "string" | |
}, | |
"service": { | |
"type": "string" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"version": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryRmsEntitlementPayload": { | |
"properties": { | |
"itemId": { | |
"type": "string" | |
}, | |
"itemTypeId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryRmsStoreEntitlementItem": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolInventoryRmsStoreEntitlementPayload": { | |
"properties": { | |
"items": { | |
"items": { | |
"$ref": "#/definitions/LolInventoryRmsStoreEntitlementItem" | |
}, | |
"type": "array" | |
}, | |
"transactionId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolItemSetsGameDataChampion": { | |
"properties": { | |
"alias": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolItemSetsItemSet": { | |
"properties": { | |
"associatedChampions": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"associatedMaps": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"blocks": { | |
"items": { | |
"$ref": "#/definitions/LolItemSetsItemSetBlock" | |
}, | |
"type": "array" | |
}, | |
"map": { | |
"type": "string" | |
}, | |
"mode": { | |
"type": "string" | |
}, | |
"preferredItemSlots": { | |
"items": { | |
"$ref": "#/definitions/LolItemSetsPreferredItemSlot" | |
}, | |
"type": "array" | |
}, | |
"sortrank": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"startedFrom": { | |
"type": "string" | |
}, | |
"title": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
}, | |
"uid": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolItemSetsItemSetBlock": { | |
"properties": { | |
"hideIfSummonerSpell": { | |
"type": "string" | |
}, | |
"items": { | |
"items": { | |
"$ref": "#/definitions/LolItemSetsItemSetItem" | |
}, | |
"type": "array" | |
}, | |
"showIfSummonerSpell": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolItemSetsItemSetItem": { | |
"properties": { | |
"count": { | |
"type": "integer" | |
}, | |
"id": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolItemSetsItemSets": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"itemSets": { | |
"items": { | |
"$ref": "#/definitions/LolItemSetsItemSet" | |
}, | |
"type": "array" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolItemSetsLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolItemSetsLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolItemSetsLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolItemSetsPreferredItemSlot": { | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"preferredItemSlot": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolKrShutdownLawAllQueueShutdownStatus": { | |
"properties": { | |
"isAllQueuesDisabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolKrShutdownLawQueueShutdownStatus": { | |
"properties": { | |
"isDisabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolKrShutdownLawShutdownLawNotification": { | |
"properties": { | |
"type": { | |
"$ref": "#/definitions/LolKrShutdownLawShutdownLawStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolKrShutdownLawShutdownLawStatus": { | |
"enum": [ | |
"NONE", | |
"WARNING", | |
"CUT_OFF" | |
], | |
"type": "string" | |
}, | |
"LolLeaguesAchievedTier": { | |
"properties": { | |
"division": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"queueType": { | |
"$ref": "#/definitions/LolLeaguesLeagueQueueType" | |
}, | |
"tier": { | |
"$ref": "#/definitions/LolLeaguesLeagueTier" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesApexLeagues": { | |
"properties": { | |
"challengers": { | |
"items": { | |
"$ref": "#/definitions/LolLeaguesLeague" | |
}, | |
"type": "array" | |
}, | |
"masters": { | |
"items": { | |
"$ref": "#/definitions/LolLeaguesLeague" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesGameflowGameData": { | |
"properties": { | |
"queue": { | |
"$ref": "#/definitions/LolLeaguesQueue" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolLeaguesGameflowSession": { | |
"properties": { | |
"gameData": { | |
"$ref": "#/definitions/LolLeaguesGameflowGameData" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolLeaguesGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesLeague": { | |
"properties": { | |
"challengerNextPromotionUpdateInMs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"leagueName": { | |
"type": "string" | |
}, | |
"leagueTier": { | |
"$ref": "#/definitions/LolLeaguesLeagueTier" | |
}, | |
"leagues": { | |
"items": { | |
"$ref": "#/definitions/LolLeaguesLeagueDivision" | |
}, | |
"type": "array" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"queueType": { | |
"$ref": "#/definitions/LolLeaguesLeagueQueueType" | |
}, | |
"requesterLeagueRank": { | |
"$ref": "#/definitions/LolLeaguesLeagueRank" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesLeagueChampAndStat": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"totalGamePlayed": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"winRate": { | |
"format": "float", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesLeagueDivision": { | |
"properties": { | |
"leagueRank": { | |
"$ref": "#/definitions/LolLeaguesLeagueRank" | |
}, | |
"standings": { | |
"items": { | |
"$ref": "#/definitions/LolLeaguesLeagueStanding" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesLeagueEmblem": { | |
"enum": [ | |
"VETERAN", | |
"HOTSTREAK", | |
"FRESHBLOOD" | |
], | |
"type": "string" | |
}, | |
"LolLeaguesLeagueNotificationItem": { | |
"properties": { | |
"demotionWarning": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"displayDecayWarning": { | |
"type": "boolean" | |
}, | |
"emblems": { | |
"items": { | |
"$ref": "#/definitions/LolLeaguesLeagueEmblem" | |
}, | |
"type": "array" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inactive": { | |
"type": "boolean" | |
}, | |
"inactivityStatus": { | |
"type": "string" | |
}, | |
"lastPlayed": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"leagueName": { | |
"type": "string" | |
}, | |
"leaguePointsDelta": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"losses": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"minGamesForSeeding": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"miniseriesResults": { | |
"items": { | |
"$ref": "#/definitions/LolLeaguesMiniseries" | |
}, | |
"type": "array" | |
}, | |
"miniseriesTimeLeftToPlayMillis": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"miniseriesWins": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"notifyReason": { | |
"type": "string" | |
}, | |
"playerOrTeamId": { | |
"type": "string" | |
}, | |
"playerOrTeamName": { | |
"type": "string" | |
}, | |
"points": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"previousPosition": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"queueType": { | |
"type": "string" | |
}, | |
"rank": { | |
"type": "string" | |
}, | |
"seasonEndApexPosition": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"seasonEndRank": { | |
"type": "string" | |
}, | |
"seasonEndTier": { | |
"type": "string" | |
}, | |
"tier": { | |
"type": "string" | |
}, | |
"timeLastDecayMessageShown": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"timeUntilDecay": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"timeUntilInactivityStatusChanges": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"totalPlayed": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"wins": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesLeagueQueueType": { | |
"enum": [ | |
"NONE", | |
"SOLO5V5", | |
"FLEXTT", | |
"FLEXSR" | |
], | |
"type": "string" | |
}, | |
"LolLeaguesLeagueRank": { | |
"enum": [ | |
"I", | |
"II", | |
"III", | |
"IV", | |
"V", | |
"NA" | |
], | |
"type": "string" | |
}, | |
"LolLeaguesLeagueStanding": { | |
"properties": { | |
"apexDaysUntilDecay": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"emblems": { | |
"items": { | |
"$ref": "#/definitions/LolLeaguesLeagueEmblem" | |
}, | |
"type": "array" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"inactive": { | |
"type": "boolean" | |
}, | |
"inactivityStatus": { | |
"type": "string" | |
}, | |
"losses": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"miniseriesResults": { | |
"items": { | |
"$ref": "#/definitions/LolLeaguesMiniseries" | |
}, | |
"type": "array" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"pendingDemotion": { | |
"type": "boolean" | |
}, | |
"pendingPromotion": { | |
"type": "boolean" | |
}, | |
"points": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"position": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"positionDelta": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"previousPosition": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"wins": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesLeagueTeam": { | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"members": { | |
"items": { | |
"$ref": "#/definitions/LolLeaguesLeagueTeamMember" | |
}, | |
"type": "array" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesLeagueTeamMember": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"totalGamePlayed": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"winRate": { | |
"format": "float", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesLeagueTier": { | |
"enum": [ | |
"NONE", | |
"BRONZE", | |
"SILVER", | |
"GOLD", | |
"PLATINUM", | |
"DIAMOND", | |
"MASTER", | |
"CHALLENGER" | |
], | |
"type": "string" | |
}, | |
"LolLeaguesLeaguesLoginDataPacket": { | |
"properties": { | |
"simpleMessages": { | |
"items": { | |
"$ref": "#/definitions/LolLeaguesSimpleMessage" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesLeaguesNotification": { | |
"properties": { | |
"acknowledgedByPlayer": { | |
"type": "boolean" | |
}, | |
"data": { | |
"$ref": "#/definitions/LolLeaguesLeagueNotificationItem" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"priority": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"severity": { | |
"$ref": "#/definitions/LolLeaguesSeverity" | |
}, | |
"titleType": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesLeaguesSeasonRewardConfig": { | |
"properties": { | |
"QualificationWarningEnabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesLeaguesSummoner": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolLeaguesLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolLeaguesMiniseries": { | |
"enum": [ | |
"W", | |
"L", | |
"N" | |
], | |
"type": "string" | |
}, | |
"LolLeaguesParticipantTiers": { | |
"properties": { | |
"achievedTiers": { | |
"items": { | |
"$ref": "#/definitions/LolLeaguesAchievedTier" | |
}, | |
"type": "array" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesQueue": { | |
"properties": { | |
"type": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesSeverity": { | |
"enum": [ | |
"WARNING", | |
"ALERT" | |
], | |
"type": "string" | |
}, | |
"LolLeaguesSignedLeagueItemDTO": { | |
"properties": { | |
"apexDaysUntilDecay": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"demotionWarning": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"displayDecayWarning": { | |
"type": "boolean" | |
}, | |
"freshBlood": { | |
"type": "boolean" | |
}, | |
"hotStreak": { | |
"type": "boolean" | |
}, | |
"inactive": { | |
"type": "boolean" | |
}, | |
"inactivityStatus": { | |
"type": "string" | |
}, | |
"jwt": { | |
"type": "string" | |
}, | |
"leaguePoints": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"losses": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"miniSeries": { | |
"$ref": "#/definitions/LeaguesLcdsMiniSeriesDTO" | |
}, | |
"playerOrTeamId": { | |
"type": "string" | |
}, | |
"playerOrTeamName": { | |
"type": "string" | |
}, | |
"previousDayLeaguePosition": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"queueType": { | |
"$ref": "#/definitions/LeaguesLcdsQueueType" | |
}, | |
"rank": { | |
"$ref": "#/definitions/LeaguesLcdsLeagueRank" | |
}, | |
"tier": { | |
"$ref": "#/definitions/LeaguesLcdsLeagueTier" | |
}, | |
"timeUntilInactivityStatusChanges": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"veteran": { | |
"type": "boolean" | |
}, | |
"wins": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesSignedSummonerLeagueItemsDTO": { | |
"properties": { | |
"summonerLeagues": { | |
"items": { | |
"$ref": "#/definitions/LolLeaguesSignedLeagueItemDTO" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLeaguesSimpleMessage": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"msgId": { | |
"type": "string" | |
}, | |
"params": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLicenseAgreementLicenseAgreement": { | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"licenseType": { | |
"$ref": "#/definitions/LolLicenseAgreementLicenseAgreementType" | |
}, | |
"text": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLicenseAgreementLicenseAgreementType": { | |
"enum": [ | |
"Eula", | |
"TermsOfUse" | |
], | |
"type": "string" | |
}, | |
"LolLicenseAgreementPluginRegionLocaleChangedEvent": { | |
"properties": { | |
"locale": { | |
"type": "string" | |
}, | |
"region": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoadoutsAccessTokenResource": { | |
"properties": { | |
"expiry": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"scopes": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"token": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoadoutsCreateOrUpdateItemsRequest": { | |
"properties": { | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"inventoryJWTs": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"items": { | |
"additionalProperties": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoadoutsFrontendInventoryResponse": { | |
"properties": { | |
"entitlements": { | |
"items": { | |
"$ref": "#/definitions/LolLoadoutsItemKey" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoadoutsGameflowGameData": { | |
"properties": { | |
"queue": { | |
"$ref": "#/definitions/LolLoadoutsQueue" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoadoutsGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolLoadoutsGameflowSession": { | |
"properties": { | |
"gameData": { | |
"$ref": "#/definitions/LolLoadoutsGameflowGameData" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolLoadoutsGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoadoutsGetItemsRequest": { | |
"properties": { | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"inventoryJWTs": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"inventoryTypes": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoadoutsInventoryDTO": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"expires": { | |
"type": "string" | |
}, | |
"items": { | |
"additionalProperties": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "object" | |
}, | |
"itemsJwt": { | |
"type": "string" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoadoutsInventoryItemDTO": { | |
"properties": { | |
"eneitlementTypeId": { | |
"type": "string" | |
}, | |
"entitlementId": { | |
"type": "string" | |
}, | |
"expirationDate": { | |
"type": "string" | |
}, | |
"f2p": { | |
"type": "boolean" | |
}, | |
"instanceId": { | |
"type": "string" | |
}, | |
"instanceTypeId": { | |
"type": "string" | |
}, | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"lsb": { | |
"type": "boolean" | |
}, | |
"purchaseDate": { | |
"type": "string" | |
}, | |
"quantity": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rental": { | |
"type": "boolean" | |
}, | |
"usedInGameDate": { | |
"type": "string" | |
}, | |
"wins": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoadoutsInventoryResponseDTO": { | |
"properties": { | |
"data": { | |
"$ref": "#/definitions/LolLoadoutsInventoryDTO" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoadoutsItemKey": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoadoutsLoadout": { | |
"properties": { | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"items": { | |
"additionalProperties": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "object" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoadoutsLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gasToken": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"idToken": { | |
"type": "string" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolLoadoutsLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoadoutsLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolLoadoutsQueue": { | |
"properties": { | |
"isTeamBuilderManaged": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyAmbassadorMessage": { | |
"properties": { | |
"errorCode": { | |
"type": "string" | |
}, | |
"httpStatus": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"implementationDetails": { | |
"type": "string" | |
}, | |
"message": { | |
"type": "string" | |
}, | |
"payload": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyAutoFillDto": { | |
"properties": { | |
"autoFillQueues": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyAutoFillQueueDto" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyAutoFillQueueDto": { | |
"properties": { | |
"autoFillEligible": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForPromos": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForStreaking": { | |
"type": "boolean" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyChatBlockedPlayerResource": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyChatFriend": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lol": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyChatFriendCounts": { | |
"properties": { | |
"numFriends": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsAvailable": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsAway": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsInChampSelect": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsInGame": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsInQueue": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsMobile": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsOnline": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyCollectionsChampion": { | |
"properties": { | |
"active": { | |
"type": "boolean" | |
}, | |
"botEnabled": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyCollectionsChampionMinimal": { | |
"properties": { | |
"active": { | |
"type": "boolean" | |
}, | |
"disabledQueues": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"freeToPlay": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolLobbyCollectionsOwnership" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyCollectionsOwnership": { | |
"properties": { | |
"freeToPlayReward": { | |
"type": "boolean" | |
}, | |
"owned": { | |
"type": "boolean" | |
}, | |
"rental": { | |
"$ref": "#/definitions/LolLobbyCollectionsRental" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyCollectionsRental": { | |
"properties": {}, | |
"type": "object" | |
}, | |
"LolLobbyEligibility": { | |
"properties": { | |
"eligible": { | |
"type": "boolean" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"restrictions": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyEligibilityRestriction" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyEligibilityRestriction": { | |
"properties": { | |
"expiredTimestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"restrictionArgs": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"restrictionCode": { | |
"$ref": "#/definitions/LolLobbyEligibilityRestrictionCode" | |
}, | |
"summonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyEligibilityRestrictionCode": { | |
"enum": [ | |
"QueueDisabled", | |
"QueueUnsupported", | |
"PlayerLevelRestriction", | |
"PlayerTimedRestriction", | |
"PlayerBannedRestriction", | |
"PlayerAvailableChampionRestriction", | |
"TeamDivisionRestriction", | |
"TeamMaxSizeRestriction", | |
"TeamMinSizeRestriction", | |
"PlayerBingeRestriction", | |
"PlayerDodgeRestriction", | |
"PlayerInGameRestriction", | |
"PlayerLeaverBustedRestriction", | |
"PlayerLeaverTaintedWarningRestriction", | |
"PlayerMaxLevelRestriction", | |
"PlayerMinLevelRestriction", | |
"PlayerMinorRestriction", | |
"PlayerRankedSuspensionRestriction", | |
"TeamHighMMRMaxSizeRestriction", | |
"TeamSizeRestriction", | |
"PrerequisiteQueuesNotPlayedRestriction", | |
"UnknownRestriction" | |
], | |
"type": "string" | |
}, | |
"LolLobbyFriendAvailabilityAnalytics": { | |
"properties": { | |
"eventData": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"eventTimestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"eventType": { | |
"type": "string" | |
}, | |
"numFriends": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsAvailable": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsAway": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsInChampSelect": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsInGame": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsInQueue": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsMobile": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numFriendsOnline": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"partyType": { | |
"type": "string" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyGameDataChampionSummary": { | |
"properties": { | |
"alias": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyGameModeDto": { | |
"properties": { | |
"botDifficulty": { | |
"type": "string" | |
}, | |
"gameCustomization": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"gameType": { | |
"type": "string" | |
}, | |
"maxPartySize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyGameflowGameClient": { | |
"properties": { | |
"running": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyGameflowGameDodge": { | |
"properties": { | |
"dodgeIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolLobbyGameflowPhase" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolLobbyMatchmakingDodgeState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolLobbyGameflowSession": { | |
"properties": { | |
"gameClient": { | |
"$ref": "#/definitions/LolLobbyGameflowGameClient" | |
}, | |
"gameDodge": { | |
"$ref": "#/definitions/LolLobbyGameflowGameDodge" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolLobbyGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyGatekeeperRestrictionDto": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"payload": { | |
"type": "string" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"reason": { | |
"type": "string" | |
}, | |
"remainingMillis": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyInventoryCacheEntry": { | |
"properties": { | |
"expirationMS": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"signedInventoryJwt": { | |
"type": "string" | |
}, | |
"valid": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyInvitationType": { | |
"enum": [ | |
"invalid", | |
"lobby", | |
"party" | |
], | |
"type": "string" | |
}, | |
"LolLobbyJoinPartyAnalytics": { | |
"properties": { | |
"eventData": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"eventTimestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"eventType": { | |
"type": "string" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"numFriendsOnline": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numOpenFriends": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numOpenParties": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numOtherInvites": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numPartyInvites": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numTotalInvites": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"partyId": { | |
"type": "string" | |
}, | |
"partySize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"platformId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLcdsDynamicClientConfig": { | |
"properties": { | |
"PartyRewards": { | |
"$ref": "#/definitions/LolLobbyLcdsPartyRewardsConfig" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLcdsGameMetaData": { | |
"properties": { | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"mapId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLcdsPartyRewardsConfig": { | |
"properties": { | |
"Enabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLeague": { | |
"properties": { | |
"leagueTier": { | |
"type": "string" | |
}, | |
"queueType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobby": { | |
"properties": { | |
"allowablePremadeSizes": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"autoFillEligible": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForPromos": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForStreaking": { | |
"type": "boolean" | |
}, | |
"canStartMatchmaking": { | |
"type": "boolean" | |
}, | |
"chatRoomId": { | |
"type": "string" | |
}, | |
"chatRoomKey": { | |
"type": "string" | |
}, | |
"customGameLobby": { | |
"$ref": "#/definitions/LolLobbyLobbyCustomGameLobby" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"invitationId": { | |
"type": "string" | |
}, | |
"invitations": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyInvitation" | |
}, | |
"type": "array" | |
}, | |
"isCustom": { | |
"type": "boolean" | |
}, | |
"isTeamBuilderManaged": { | |
"type": "boolean" | |
}, | |
"localMember": { | |
"$ref": "#/definitions/LolLobbyLobbyMember" | |
}, | |
"mapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maximumParticipantListSize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"members": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyMember" | |
}, | |
"type": "array" | |
}, | |
"premadeSizeAllowed": { | |
"type": "boolean" | |
}, | |
"queueAvailability": { | |
"$ref": "#/definitions/LolLobbyQueueAvailability" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"removalReason": { | |
"$ref": "#/definitions/LolLobbyLobbyRemovedFromGameReason" | |
}, | |
"requiredPositionCoverageMet": { | |
"type": "boolean" | |
}, | |
"showPositionExcluder": { | |
"type": "boolean" | |
}, | |
"showPositionSelector": { | |
"type": "boolean" | |
}, | |
"specifiablePositionPreferences": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"wasKicked": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyBotChampion": { | |
"properties": { | |
"active": { | |
"type": "boolean" | |
}, | |
"botDifficulties": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyBotDifficulty" | |
}, | |
"type": "array" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyBotDifficulty": { | |
"enum": [ | |
"NONE", | |
"EASY", | |
"MEDIUM", | |
"HARD", | |
"UBER", | |
"TUTORIAL", | |
"INTRO" | |
], | |
"type": "string" | |
}, | |
"LolLobbyLobbyBotParams": { | |
"properties": { | |
"botDifficulty": { | |
"$ref": "#/definitions/LolLobbyLobbyBotDifficulty" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"teamId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyChangeGameDto": { | |
"properties": { | |
"customGameLobby": { | |
"$ref": "#/definitions/LolLobbyLobbyCustomGameLobby" | |
}, | |
"gameCustomization": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"isCustom": { | |
"type": "boolean" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyChangeQueue": { | |
"properties": { | |
"customGameLobby": { | |
"$ref": "#/definitions/LolLobbyLobbyCustomGameLobby" | |
}, | |
"isCustom": { | |
"type": "boolean" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyCustomChampSelectStartResponse": { | |
"properties": { | |
"failedPlayers": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyCustomFailedPlayer" | |
}, | |
"type": "array" | |
}, | |
"success": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyCustomFailedPlayer": { | |
"properties": { | |
"reason": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyCustomGame": { | |
"properties": { | |
"filledPlayerSlots": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"filledSpectatorSlots": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameType": { | |
"type": "string" | |
}, | |
"hasPassword": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lobbyName": { | |
"type": "string" | |
}, | |
"mapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxPlayerSlots": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxSpectatorSlots": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"ownerSummonerName": { | |
"type": "string" | |
}, | |
"passbackUrl": { | |
"type": "string" | |
}, | |
"spectatorPolicy": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyCustomGameConfiguration": { | |
"properties": { | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameMutator": { | |
"type": "string" | |
}, | |
"gameServerRegion": { | |
"type": "string" | |
}, | |
"gameTypeConfig": { | |
"$ref": "#/definitions/LolLobbyQueueGameTypeConfig" | |
}, | |
"mapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxPlayerCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"mutators": { | |
"$ref": "#/definitions/LolLobbyQueueGameTypeConfig" | |
}, | |
"spectatorPolicy": { | |
"$ref": "#/definitions/LolLobbyQueueCustomGameSpectatorPolicy" | |
}, | |
"teamSize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"tournamentGameMode": { | |
"type": "string" | |
}, | |
"tournamentPassbackDataPacket": { | |
"type": "string" | |
}, | |
"tournamentPassbackUrl": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyCustomGameLobby": { | |
"properties": { | |
"configuration": { | |
"$ref": "#/definitions/LolLobbyLobbyCustomGameConfiguration" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lobbyName": { | |
"type": "string" | |
}, | |
"lobbyPassword": { | |
"type": "string" | |
}, | |
"practiceGameRewardsDisabledReasons": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"spectators": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyMember" | |
}, | |
"type": "array" | |
}, | |
"teamOne": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyMember" | |
}, | |
"type": "array" | |
}, | |
"teamTwo": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyMember" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyCustomJoinParameters": { | |
"properties": { | |
"asSpectator": { | |
"type": "boolean" | |
}, | |
"password": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyDto": { | |
"properties": { | |
"canStartActivity": { | |
"type": "boolean" | |
}, | |
"chatRoomId": { | |
"type": "string" | |
}, | |
"chatRoomKey": { | |
"type": "string" | |
}, | |
"gameConfig": { | |
"$ref": "#/definitions/LolLobbyLobbyGameConfigDto" | |
}, | |
"invitations": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyInvitationDto" | |
}, | |
"type": "array" | |
}, | |
"localMember": { | |
"$ref": "#/definitions/LolLobbyLobbyParticipantDto" | |
}, | |
"members": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyParticipantDto" | |
}, | |
"type": "array" | |
}, | |
"partyId": { | |
"type": "string" | |
}, | |
"partyType": { | |
"type": "string" | |
}, | |
"restrictions": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyEligibilityRestriction" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyGameConfigDto": { | |
"properties": { | |
"allowablePremadeSizes": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"customLobbyName": { | |
"type": "string" | |
}, | |
"customMutatorName": { | |
"type": "string" | |
}, | |
"customRewardsDisabledReasons": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"customSpectatorPolicy": { | |
"$ref": "#/definitions/LolLobbyQueueCustomGameSpectatorPolicy" | |
}, | |
"customSpectators": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyParticipantDto" | |
}, | |
"type": "array" | |
}, | |
"customTeam100": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyParticipantDto" | |
}, | |
"type": "array" | |
}, | |
"customTeam200": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyParticipantDto" | |
}, | |
"type": "array" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameMutator": { | |
"type": "string" | |
}, | |
"isCustom": { | |
"type": "boolean" | |
}, | |
"isLobbyFull": { | |
"type": "boolean" | |
}, | |
"isTeamBuilderManaged": { | |
"type": "boolean" | |
}, | |
"mapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxHumanPlayers": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxLobbySize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxTeamSize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pickType": { | |
"type": "string" | |
}, | |
"premadeSizeAllowed": { | |
"type": "boolean" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"showPositionSelector": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyInvitation": { | |
"properties": { | |
"eligibility": { | |
"$ref": "#/definitions/LolLobbyEligibility" | |
}, | |
"errorType": { | |
"type": "string" | |
}, | |
"fromSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"fromSummonerName": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"invitationMetaData": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolLobbyLobbyInvitationState" | |
}, | |
"timestamp": { | |
"type": "string" | |
}, | |
"toSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"toSummonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyInvitationDto": { | |
"properties": { | |
"invitationId": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolLobbyLobbyInvitationState" | |
}, | |
"timestamp": { | |
"type": "string" | |
}, | |
"toSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"toSummonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyInvitationState": { | |
"enum": [ | |
"Requested", | |
"Pending", | |
"Accepted", | |
"Joined", | |
"Declined", | |
"Kicked", | |
"OnHold", | |
"Error" | |
], | |
"type": "string" | |
}, | |
"LolLobbyLobbyLastQueuedLobby": { | |
"properties": { | |
"canPlayAgain": { | |
"type": "boolean" | |
}, | |
"members": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyLastQueuedMember" | |
}, | |
"type": "array" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"wasOwner": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyLastQueuedMember": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyMatchmakingLowPriorityDataResource": { | |
"properties": { | |
"bustedLeaverAccessToken": { | |
"type": "string" | |
}, | |
"penalizedSummonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"penaltyTime": { | |
"format": "double", | |
"type": "number" | |
}, | |
"penaltyTimeRemaining": { | |
"format": "double", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyMatchmakingSearchErrorResource": { | |
"properties": { | |
"errorType": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"message": { | |
"type": "string" | |
}, | |
"penalizedSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"penaltyTimeRemaining": { | |
"format": "double", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyMatchmakingSearchResource": { | |
"properties": { | |
"errors": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyLobbyMatchmakingSearchErrorResource" | |
}, | |
"type": "array" | |
}, | |
"lowPriorityData": { | |
"$ref": "#/definitions/LolLobbyLobbyMatchmakingLowPriorityDataResource" | |
}, | |
"searchState": { | |
"$ref": "#/definitions/LolLobbyLobbyMatchmakingSearchState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyMatchmakingSearchState": { | |
"enum": [ | |
"Invalid", | |
"AbandonedLowPriorityQueue", | |
"Canceled", | |
"Searching", | |
"Found", | |
"Error", | |
"ServiceError", | |
"ServiceShutdown" | |
], | |
"type": "string" | |
}, | |
"LolLobbyLobbyMember": { | |
"properties": { | |
"autoFillEligible": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForPromos": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForSoloing": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForStreaking": { | |
"type": "boolean" | |
}, | |
"botChampionId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"botDifficulty": { | |
"$ref": "#/definitions/LolLobbyLobbyBotDifficulty" | |
}, | |
"canInviteOthers": { | |
"type": "boolean" | |
}, | |
"excludedPositionPreference": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isBot": { | |
"type": "boolean" | |
}, | |
"isOwner": { | |
"type": "boolean" | |
}, | |
"isSpectator": { | |
"type": "boolean" | |
}, | |
"positionPreferences": { | |
"$ref": "#/definitions/LolLobbyLobbyPositionPreferences" | |
}, | |
"showPositionExcluder": { | |
"type": "boolean" | |
}, | |
"summonerInternalName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyNotification": { | |
"properties": { | |
"notificationId": { | |
"type": "string" | |
}, | |
"notificationReason": { | |
"type": "string" | |
}, | |
"summonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyParticipantDto": { | |
"properties": { | |
"allowedChangeActivity": { | |
"type": "boolean" | |
}, | |
"allowedInviteOthers": { | |
"type": "boolean" | |
}, | |
"allowedKickOthers": { | |
"type": "boolean" | |
}, | |
"allowedStartActivity": { | |
"type": "boolean" | |
}, | |
"allowedToggleInvite": { | |
"type": "boolean" | |
}, | |
"autoFillEligible": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForPromos": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForSoloing": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForStreaking": { | |
"type": "boolean" | |
}, | |
"botChampionId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"botDifficulty": { | |
"$ref": "#/definitions/LolLobbyLobbyBotDifficulty" | |
}, | |
"botId": { | |
"type": "string" | |
}, | |
"firstPositionPreference": { | |
"type": "string" | |
}, | |
"isBot": { | |
"type": "boolean" | |
}, | |
"isLeader": { | |
"type": "boolean" | |
}, | |
"isSpectator": { | |
"type": "boolean" | |
}, | |
"lastSeasonHighestRank": { | |
"type": "string" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"ready": { | |
"type": "boolean" | |
}, | |
"secondPositionPreference": { | |
"type": "string" | |
}, | |
"showGhostedBanner": { | |
"type": "boolean" | |
}, | |
"summonerIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerInternalName": { | |
"type": "string" | |
}, | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
}, | |
"teamId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyPartyRewardType": { | |
"enum": [ | |
"Ip", | |
"Icon", | |
"None" | |
], | |
"type": "string" | |
}, | |
"LolLobbyLobbyPartyRewards": { | |
"properties": { | |
"isCustom": { | |
"type": "boolean" | |
}, | |
"isEnabled": { | |
"type": "boolean" | |
}, | |
"partyRewards": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyPartyReward" | |
}, | |
"type": "array" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyPositionPreferences": { | |
"properties": { | |
"firstPreference": { | |
"type": "string" | |
}, | |
"secondPreference": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyRemovedFromGameReason": { | |
"enum": [ | |
"None", | |
"Kicked", | |
"Disbanded", | |
"Left", | |
"ServiceError", | |
"Other", | |
"Timeout", | |
"GameStartError", | |
"ServiceShutdown" | |
], | |
"type": "string" | |
}, | |
"LolLobbyLobbyStatus": { | |
"properties": { | |
"allowedPlayAgain": { | |
"type": "boolean" | |
}, | |
"customSpectatorPolicy": { | |
"$ref": "#/definitions/LolLobbyQueueCustomGameSpectatorPolicy" | |
}, | |
"invitedSummonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"isCustom": { | |
"type": "boolean" | |
}, | |
"isLeader": { | |
"type": "boolean" | |
}, | |
"isPracticeTool": { | |
"type": "boolean" | |
}, | |
"isSpectator": { | |
"type": "boolean" | |
}, | |
"lobbyId": { | |
"type": "string" | |
}, | |
"memberSummonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLobbyTimer": { | |
"properties": { | |
"countdown": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"enabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"connected": { | |
"type": "boolean" | |
}, | |
"gasToken": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"idToken": { | |
"type": "string" | |
}, | |
"isNewPlayer": { | |
"type": "boolean" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolLobbyLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"userAuthToken": { | |
"type": "string" | |
}, | |
"username": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolLobbyMatchmakingDodgeState": { | |
"enum": [ | |
"Invalid", | |
"PartyDodged", | |
"StrangerDodged" | |
], | |
"type": "string" | |
}, | |
"LolLobbyOpenPartyToggleAnalytics": { | |
"properties": { | |
"elapsedTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"endTimestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"endTransition": { | |
"type": "string" | |
}, | |
"eventData": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"eventTimestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"eventType": { | |
"type": "string" | |
}, | |
"finalState": { | |
"type": "string" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"initialState": { | |
"type": "string" | |
}, | |
"numOfToggles": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"partyId": { | |
"type": "string" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"playerId": { | |
"type": "string" | |
}, | |
"startTimestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"startTransition": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPartiesInvitationAnalytics": { | |
"properties": { | |
"eventData": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"eventTimestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"eventType": { | |
"type": "string" | |
}, | |
"partyId": { | |
"type": "string" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"players": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyPartiesInvitationPlayerAnalytics" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPartiesInvitationPlayerAnalytics": { | |
"properties": { | |
"puuid": { | |
"type": "string" | |
}, | |
"role": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPartyChatDto": { | |
"properties": { | |
"jid": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPartyDto": { | |
"properties": { | |
"activeRestrictions": { | |
"$ref": "#/definitions/LolLobbyQueueRestrictionDto" | |
}, | |
"activityLocked": { | |
"type": "boolean" | |
}, | |
"activityResumeUtcMillis": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"activityStartedUtcMillis": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"chat": { | |
"$ref": "#/definitions/LolLobbyPartyChatDto" | |
}, | |
"eligibilityHash": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"eligibilityRestrictions": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyGatekeeperRestrictionDto" | |
}, | |
"type": "array" | |
}, | |
"gameMode": { | |
"$ref": "#/definitions/LolLobbyGameModeDto" | |
}, | |
"maxPartySize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"partyId": { | |
"type": "string" | |
}, | |
"partyType": { | |
"type": "string" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"players": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyPartyMemberDto" | |
}, | |
"type": "array" | |
}, | |
"version": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPartyInviteAnalytics": { | |
"properties": { | |
"eventData": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"eventTimestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"eventType": { | |
"type": "string" | |
}, | |
"fromSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"partyId": { | |
"type": "string" | |
}, | |
"partyType": { | |
"type": "string" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"toSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPartyInviteDto": { | |
"properties": { | |
"gameMode": { | |
"$ref": "#/definitions/LolLobbyGameModeDto" | |
}, | |
"invitedByPuuid": { | |
"type": "string" | |
}, | |
"partyId": { | |
"type": "string" | |
}, | |
"partyVersion": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"state": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPartyMemberDto": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"canInvite": { | |
"type": "boolean" | |
}, | |
"gameMode": { | |
"$ref": "#/definitions/LolLobbyGameModeDto" | |
}, | |
"inviteTimestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"invitedBySummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"metadata": { | |
"$ref": "#/definitions/LolLobbyPartyMemberMetadataDto" | |
}, | |
"partyId": { | |
"type": "string" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"ready": { | |
"type": "boolean" | |
}, | |
"role": { | |
"$ref": "#/definitions/LolLobbyPartyMemberRoleEnum" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPartyMemberMetadataDto": { | |
"properties": { | |
"positionPref": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPartyMemberRoleEnum": { | |
"enum": [ | |
"LEADER", | |
"MEMBER", | |
"INVITED", | |
"HOLD", | |
"KICKED", | |
"DECLINED", | |
"NONE" | |
], | |
"type": "string" | |
}, | |
"LolLobbyPartyNotificationEnvelopeDto": { | |
"properties": { | |
"player": { | |
"$ref": "#/definitions/LolLobbyPlayerDto" | |
}, | |
"queueRestriction": { | |
"$ref": "#/definitions/LolLobbyQueueRestrictionDto" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPartyPresenceData": { | |
"properties": { | |
"partyId": { | |
"type": "string" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summoners": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPartyQueueEligibilityDto": { | |
"properties": { | |
"availableQueueIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"partyRestrictions": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyGatekeeperRestrictionDto" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPartyReward": { | |
"properties": { | |
"premadeSize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": { | |
"$ref": "#/definitions/LolLobbyLobbyPartyRewardType" | |
}, | |
"value": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPlayerCollectionDto": { | |
"properties": { | |
"players": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyPlayerDto" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPlayerDto": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"createdAt": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currentParty": { | |
"$ref": "#/definitions/LolLobbyPartyDto" | |
}, | |
"eligibilityHash": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"parties": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyPartyMemberDto" | |
}, | |
"type": "array" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"registration": { | |
"$ref": "#/definitions/LolLobbyRegistrationCredentials" | |
}, | |
"serverUtcMillis": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"version": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPlayerStatus": { | |
"properties": { | |
"canInviteOthersAtEog": { | |
"type": "boolean" | |
}, | |
"currentLobbyStatus": { | |
"$ref": "#/definitions/LolLobbyLobbyStatus" | |
}, | |
"lastQueuedLobbyStatus": { | |
"$ref": "#/definitions/LolLobbyLobbyStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPlayerUpdateType": { | |
"enum": [ | |
"None", | |
"Direct", | |
"ServiceProxy", | |
"RMS" | |
], | |
"type": "string" | |
}, | |
"LolLobbyPremadeMemberDto": { | |
"properties": { | |
"displayName": { | |
"type": "string" | |
}, | |
"partyId": { | |
"type": "string" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"role": { | |
"$ref": "#/definitions/LolLobbyPartyMemberRoleEnum" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPremadePartyDto": { | |
"properties": { | |
"partyId": { | |
"type": "string" | |
}, | |
"players": { | |
"additionalProperties": { | |
"$ref": "#/definitions/LolLobbyPremadeMemberDto" | |
}, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyPremadeRelationshipAnalytics": { | |
"properties": { | |
"eventData": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"eventTimestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"eventType": { | |
"type": "string" | |
}, | |
"friendPlayers": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"premadePlayers": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyQueue": { | |
"properties": { | |
"allowablePremadeSizes": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"areFreeChampionsAllowed": { | |
"type": "boolean" | |
}, | |
"assetMutator": { | |
"type": "string" | |
}, | |
"category": { | |
"$ref": "#/definitions/LolLobbyQueueGameCategory" | |
}, | |
"championsRequiredToPlay": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"detailedDescription": { | |
"type": "string" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameMutator": { | |
"type": "string" | |
}, | |
"gameTypeConfig": { | |
"$ref": "#/definitions/LolLobbyQueueGameTypeConfig" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isRanked": { | |
"type": "boolean" | |
}, | |
"isTeamBuilderManaged": { | |
"type": "boolean" | |
}, | |
"isTeamOnly": { | |
"type": "boolean" | |
}, | |
"mapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxSummonerLevelForFirstWinOfTheDay": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maximumParticipantListSize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minimumParticipantListSize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"numPlayersPerTeam": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"queueAvailability": { | |
"$ref": "#/definitions/LolLobbyQueueAvailability" | |
}, | |
"queueRewards": { | |
"$ref": "#/definitions/LolLobbyQueueReward" | |
}, | |
"shortName": { | |
"type": "string" | |
}, | |
"showPositionSelector": { | |
"type": "boolean" | |
}, | |
"spectatorEnabled": { | |
"type": "boolean" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyQueueAvailability": { | |
"enum": [ | |
"Available", | |
"PlatformDisabled", | |
"DoesntMeetRequirements" | |
], | |
"type": "string" | |
}, | |
"LolLobbyQueueCustomGame": { | |
"properties": { | |
"queueAvailability": { | |
"$ref": "#/definitions/LolLobbyQueueAvailability" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyQueueCustomGameSpectatorPolicy": { | |
"enum": [ | |
"NotAllowed", | |
"LobbyAllowed", | |
"FriendsAllowed", | |
"AllAllowed" | |
], | |
"type": "string" | |
}, | |
"LolLobbyQueueGameCategory": { | |
"enum": [ | |
"None", | |
"Custom", | |
"PvP", | |
"VersusAi" | |
], | |
"type": "string" | |
}, | |
"LolLobbyQueueGameTypeConfig": { | |
"properties": { | |
"advancedLearningQuests": { | |
"type": "boolean" | |
}, | |
"allowTrades": { | |
"type": "boolean" | |
}, | |
"banMode": { | |
"type": "string" | |
}, | |
"banTimerDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"battleBoost": { | |
"type": "boolean" | |
}, | |
"crossTeamChampionPool": { | |
"type": "boolean" | |
}, | |
"deathMatch": { | |
"type": "boolean" | |
}, | |
"doNotRemove": { | |
"type": "boolean" | |
}, | |
"duplicatePick": { | |
"type": "boolean" | |
}, | |
"exclusivePick": { | |
"type": "boolean" | |
}, | |
"gameModeOverride": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"learningQuests": { | |
"type": "boolean" | |
}, | |
"mainPickTimerDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maxAllowableBans": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"numPlayersPerTeamOverride": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"onboardCoopBeginner": { | |
"type": "boolean" | |
}, | |
"pickMode": { | |
"type": "string" | |
}, | |
"postPickTimerDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"reroll": { | |
"type": "boolean" | |
}, | |
"teamChampionPool": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyQueueRestrictionDto": { | |
"properties": { | |
"gatekeeperRestrictions": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyGatekeeperRestrictionDto" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyQueueReward": { | |
"properties": { | |
"isChampionPointsEnabled": { | |
"type": "boolean" | |
}, | |
"isIpEnabled": { | |
"type": "boolean" | |
}, | |
"isXpEnabled": { | |
"type": "boolean" | |
}, | |
"partySizeIpRewards": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyReadyDto": { | |
"properties": { | |
"ready": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyReceivedInvitationDto": { | |
"properties": { | |
"canAcceptInvitation": { | |
"type": "boolean" | |
}, | |
"fromSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"fromSummonerName": { | |
"type": "string" | |
}, | |
"gameConfig": { | |
"$ref": "#/definitions/LolLobbyReceivedInvitationGameConfigDto" | |
}, | |
"invitationId": { | |
"type": "string" | |
}, | |
"restrictions": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyEligibilityRestriction" | |
}, | |
"type": "array" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolLobbyLobbyInvitationState" | |
}, | |
"timestamp": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyReceivedInvitationGameConfigDto": { | |
"properties": { | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameMutator": { | |
"type": "string" | |
}, | |
"inviteGameType": { | |
"type": "string" | |
}, | |
"mapId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyRegistrationCredentials": { | |
"properties": { | |
"inventoryToken": { | |
"type": "string" | |
}, | |
"leaguesTierRankToken": { | |
"type": "string" | |
}, | |
"summonerToken": { | |
"type": "string" | |
}, | |
"userInfoToken": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyRiotMessagingServiceMessage": { | |
"properties": { | |
"payload": { | |
"type": "string" | |
}, | |
"resource": { | |
"type": "string" | |
}, | |
"service": { | |
"type": "string" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"version": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyServiceProxyPayload": { | |
"properties": { | |
"body": { | |
"type": "string" | |
}, | |
"method": { | |
"type": "string" | |
}, | |
"url": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbySignedLeagueItemDTO": { | |
"properties": { | |
"jwt": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbySignedSummonerLeagueItemsDTO": { | |
"properties": { | |
"summonerLeagues": { | |
"items": { | |
"$ref": "#/definitions/LolLobbySignedLeagueItemDTO" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbySummoner": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"displayName": { | |
"type": "string" | |
}, | |
"internalName": { | |
"type": "string" | |
}, | |
"lastSeasonHighestRank": { | |
"type": "string" | |
}, | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderActionV1": { | |
"properties": { | |
"actionId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"actorCellId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"completed": { | |
"type": "boolean" | |
}, | |
"duration": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderAfkCheckStateV1": { | |
"properties": { | |
"afkReady": { | |
"type": "boolean" | |
}, | |
"inventoryDraft": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderTbdInventory" | |
}, | |
"maxAfkMillis": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"remainingAfkMillis": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderBackwardsTransitionInfoV1": { | |
"properties": { | |
"backwardsTransitionReason": { | |
"type": "string" | |
}, | |
"initiatorSummonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderCellV1": { | |
"properties": { | |
"assignedPosition": { | |
"type": "string" | |
}, | |
"cellId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championPickIntent": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"skinId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"spell1Id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"spell2Id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
}, | |
"teamId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderCellsV1": { | |
"properties": { | |
"alliedTeam": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderCellV1" | |
}, | |
"type": "array" | |
}, | |
"enemyTeam": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderCellV1" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderCeremonyV1": { | |
"properties": { | |
"duration": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderChampSelectAction": { | |
"properties": { | |
"actorCellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"completed": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderChampSelectBannableChampions": { | |
"properties": { | |
"championIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderChampSelectChatRoomDetails": { | |
"properties": { | |
"chatRoomName": { | |
"type": "string" | |
}, | |
"chatRoomPassword": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderChampSelectDisabledChampions": { | |
"properties": { | |
"championIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderChampSelectMySelection": { | |
"properties": { | |
"selectedSkinId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"spell1Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"spell2Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"wardSkinId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderChampSelectPickableChampions": { | |
"properties": { | |
"championIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderChampSelectPickableSkins": { | |
"properties": { | |
"skinIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderChampSelectPlayerSelection": { | |
"properties": { | |
"assignedPosition": { | |
"type": "string" | |
}, | |
"cellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championPickIntent": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"playerType": { | |
"type": "string" | |
}, | |
"selectedSkinId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"spell1Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"spell2Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"team": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"wardSkinId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderChampSelectSession": { | |
"properties": { | |
"actions": { | |
"items": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "array" | |
}, | |
"allowBattleBoost": { | |
"type": "boolean" | |
}, | |
"allowDuplicatePicks": { | |
"type": "boolean" | |
}, | |
"allowRerolling": { | |
"type": "boolean" | |
}, | |
"allowSkinSelection": { | |
"type": "boolean" | |
}, | |
"benchChampionIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"benchEnabled": { | |
"type": "boolean" | |
}, | |
"boostableSkinCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"chatDetails": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderChampSelectChatRoomDetails" | |
}, | |
"counter": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"localPlayerCellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"myTeam": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderChampSelectPlayerSelection" | |
}, | |
"type": "array" | |
}, | |
"rerollsRemaining": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"theirTeam": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderChampSelectPlayerSelection" | |
}, | |
"type": "array" | |
}, | |
"timer": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderChampSelectTimer" | |
}, | |
"trades": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderChampSelectTradeContract" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderChampSelectTimer": { | |
"properties": { | |
"adjustedTimeLeftInPhase": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"adjustedTimeLeftInPhaseInSec": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"internalNowInEpochMs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isInfinite": { | |
"type": "boolean" | |
}, | |
"phase": { | |
"type": "string" | |
}, | |
"timeLeftInPhase": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"timeLeftInPhaseInSec": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"totalTimeInPhase": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderChampSelectTradeContract": { | |
"properties": { | |
"cellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderChampSelectTradeState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderChampSelectTradeState": { | |
"enum": [ | |
"AVAILABLE", | |
"BUSY", | |
"INVALID", | |
"RECEIVED", | |
"SENT" | |
], | |
"type": "string" | |
}, | |
"LolLobbyTeamBuilderChampionBenchStateV1": { | |
"properties": { | |
"benchEnabled": { | |
"type": "boolean" | |
}, | |
"championIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderChampionSelectStateV1": { | |
"properties": { | |
"actionSetList": { | |
"items": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "array" | |
}, | |
"allowDuplicatePicks": { | |
"type": "boolean" | |
}, | |
"allowOptingOutOfBanning": { | |
"type": "boolean" | |
}, | |
"allowSkinSelection": { | |
"type": "boolean" | |
}, | |
"battleBoostState": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderTeamBuilderBoostInfo" | |
}, | |
"cells": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderCellsV1" | |
}, | |
"ceremoniesByActionSetIndex": { | |
"additionalProperties": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "object" | |
}, | |
"championBenchState": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderChampionBenchStateV1" | |
}, | |
"currentActionSetIndex": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"currentTimeRemainingMillis": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currentTotalTimeMillis": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"localPlayerCellId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pickIntentClearedReason": { | |
"type": "string" | |
}, | |
"rerollState": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderRerollStateV1" | |
}, | |
"subphase": { | |
"type": "string" | |
}, | |
"teamChatRoomId": { | |
"type": "string" | |
}, | |
"teamId": { | |
"type": "string" | |
}, | |
"trades": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderTradeV1" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderCountdownTimer": { | |
"properties": { | |
"counter": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"phaseName": { | |
"type": "string" | |
}, | |
"timer": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderCreatePremadeV1": { | |
"properties": { | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderGameflowGameClient": { | |
"properties": { | |
"running": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderGameflowSession": { | |
"properties": { | |
"gameClient": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderGameflowGameClient" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderGatekeeperRestricted": { | |
"properties": { | |
"gatekeeperRestrictions": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderGatekeeperRestriction" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderGatekeeperRestriction": { | |
"properties": { | |
"payload": { | |
"type": "string" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"reason": { | |
"type": "string" | |
}, | |
"remainingMillis": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderLeaverBusterAbandoned": { | |
"properties": { | |
"abandonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderLobby": { | |
"properties": { | |
"allowablePremadeSizes": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"autoFillEligible": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForPromos": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForStreaking": { | |
"type": "boolean" | |
}, | |
"canStartMatchmaking": { | |
"type": "boolean" | |
}, | |
"chatRoomId": { | |
"type": "string" | |
}, | |
"chatRoomKey": { | |
"type": "string" | |
}, | |
"invitationId": { | |
"type": "string" | |
}, | |
"invitations": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderLobbyInvitation" | |
}, | |
"type": "array" | |
}, | |
"isTeamBuilderManaged": { | |
"type": "boolean" | |
}, | |
"localMember": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderLobbyMember" | |
}, | |
"members": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderLobbyMember" | |
}, | |
"type": "array" | |
}, | |
"premadeSizeAllowed": { | |
"type": "boolean" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"removalReason": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderLobbyRemovedFromGameReason" | |
}, | |
"requiredPositionCoverageMet": { | |
"type": "boolean" | |
}, | |
"showPositionExcluder": { | |
"type": "boolean" | |
}, | |
"showPositionSelector": { | |
"type": "boolean" | |
}, | |
"specifiablePositionPreferences": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"wasKicked": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderLobbyCountdownTimer": { | |
"properties": { | |
"counter": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"phaseName": { | |
"type": "string" | |
}, | |
"timer": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderLobbyInvitation": { | |
"properties": { | |
"invitationMetaData": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderLobbyMember": { | |
"properties": { | |
"autoFillEligible": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForPromos": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForSoloing": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForStreaking": { | |
"type": "boolean" | |
}, | |
"canInviteOthers": { | |
"type": "boolean" | |
}, | |
"excludedPositionPreference": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isOwner": { | |
"type": "boolean" | |
}, | |
"positionPreferences": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderLobbyPositionPreferences" | |
}, | |
"showPositionExcluder": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderLobbyPositionPreferences": { | |
"properties": { | |
"firstPreference": { | |
"type": "string" | |
}, | |
"secondPreference": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderLobbyPositionPreferencesV2": { | |
"properties": { | |
"excludedPreference": { | |
"type": "string" | |
}, | |
"firstPreference": { | |
"type": "string" | |
}, | |
"secondPreference": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderLobbyRemovedFromGameReason": { | |
"enum": [ | |
"None", | |
"Kicked", | |
"Disbanded", | |
"Left", | |
"ServiceError", | |
"Other", | |
"Timeout", | |
"GameStartError", | |
"ServiceShutdown" | |
], | |
"type": "string" | |
}, | |
"LolLobbyTeamBuilderLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"connected": { | |
"type": "boolean" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderLoginSessionState" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderLoginSessionState": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolLobbyTeamBuilderMatchmakingDodgeData": { | |
"properties": { | |
"dodgerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderMatchmakingDodgeState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderMatchmakingDodgeState": { | |
"enum": [ | |
"Invalid", | |
"PartyDodged", | |
"StrangerDodged", | |
"TournamentDodged" | |
], | |
"type": "string" | |
}, | |
"LolLobbyTeamBuilderMatchmakingDodgeWarning": { | |
"enum": [ | |
"None", | |
"Warning", | |
"Penalty" | |
], | |
"type": "string" | |
}, | |
"LolLobbyTeamBuilderMatchmakingLowPriorityData": { | |
"properties": { | |
"bustedLeaverAccessToken": { | |
"type": "string" | |
}, | |
"penalizedSummonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"penaltyTime": { | |
"format": "double", | |
"type": "number" | |
}, | |
"penaltyTimeRemaining": { | |
"format": "double", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderMatchmakingReadyCheckResource": { | |
"properties": { | |
"declinerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"dodgeWarning": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderMatchmakingDodgeWarning" | |
}, | |
"playerResponse": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderMatchmakingReadyCheckResponse" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderMatchmakingReadyCheckState" | |
}, | |
"timer": { | |
"format": "float", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderMatchmakingReadyCheckResponse": { | |
"enum": [ | |
"None", | |
"Accepted", | |
"Declined" | |
], | |
"type": "string" | |
}, | |
"LolLobbyTeamBuilderMatchmakingReadyCheckState": { | |
"enum": [ | |
"Invalid", | |
"InProgress", | |
"EveryoneReady", | |
"StrangerNotReady", | |
"PartyNotReady", | |
"Error" | |
], | |
"type": "string" | |
}, | |
"LolLobbyTeamBuilderMatchmakingSearch": { | |
"properties": { | |
"searchState": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderMatchmakingSearchState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderMatchmakingSearchErrorResource": { | |
"properties": { | |
"errorType": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"message": { | |
"type": "string" | |
}, | |
"penalizedSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"penaltyTimeRemaining": { | |
"format": "double", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderMatchmakingSearchResource": { | |
"properties": { | |
"dodgeData": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderMatchmakingDodgeData" | |
}, | |
"errors": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderMatchmakingSearchErrorResource" | |
}, | |
"type": "array" | |
}, | |
"estimatedQueueTime": { | |
"format": "float", | |
"type": "number" | |
}, | |
"isCurrentlyInQueue": { | |
"type": "boolean" | |
}, | |
"lobbyId": { | |
"type": "string" | |
}, | |
"lowPriorityData": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderMatchmakingLowPriorityData" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"readyCheck": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderMatchmakingReadyCheckResource" | |
}, | |
"searchState": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderMatchmakingSearchState" | |
}, | |
"timeInQueue": { | |
"format": "float", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderMatchmakingSearchState": { | |
"enum": [ | |
"Invalid", | |
"AbandonedLowPriorityQueue", | |
"Canceled", | |
"Searching", | |
"Found", | |
"Error", | |
"ServiceError", | |
"ServiceShutdown" | |
], | |
"type": "string" | |
}, | |
"LolLobbyTeamBuilderReadyStateV1": { | |
"properties": { | |
"allowablePremadeSizes": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"premadeSizeAllowed": { | |
"type": "boolean" | |
}, | |
"readyToMatchmake": { | |
"type": "boolean" | |
}, | |
"requiredPositionCoverageMet": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderRerollStateV1": { | |
"properties": { | |
"allowRerolling": { | |
"type": "boolean" | |
}, | |
"rerollsRemaining": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderSpecifyPositionPreferencesV1": { | |
"properties": { | |
"firstPreference": { | |
"type": "string" | |
}, | |
"secondPreference": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderSpecifyPositionPreferencesV2": { | |
"properties": { | |
"excludedPreference": { | |
"type": "string" | |
}, | |
"firstPreference": { | |
"type": "string" | |
}, | |
"secondPreference": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderTBDMatchmakingState": { | |
"properties": { | |
"backwardsTransitionReason": { | |
"type": "string" | |
}, | |
"estimatedMatchmakingTimeMillis": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"timeInMatchmakingMillis": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderTbLobbyBackwardsToPremadeTransitionResource": { | |
"properties": { | |
"backwardsTransitionReason": { | |
"type": "string" | |
}, | |
"slotIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderTbLobbyEnabledFeaturesResource": { | |
"properties": { | |
"enabledFeatures": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderTbLobbyPremadeStateResource": { | |
"properties": { | |
"autoFillEligible": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForPromos": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForStreaking": { | |
"type": "boolean" | |
}, | |
"backwardsToPremadeTransitionReason": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderTbLobbyBackwardsToPremadeTransitionResource" | |
}, | |
"captainSlotId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"draftPremadeId": { | |
"type": "string" | |
}, | |
"draftSlots": { | |
"items": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderTbLobbySlotResource" | |
}, | |
"type": "array" | |
}, | |
"localPlayerSlotId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"playableDraftPositions": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"premadeChatRoomId": { | |
"type": "string" | |
}, | |
"readyState": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderReadyStateV1" | |
}, | |
"readyToMatchmake": { | |
"type": "boolean" | |
}, | |
"showPositionExcluder": { | |
"type": "boolean" | |
}, | |
"showPositionSelector": { | |
"type": "boolean" | |
}, | |
"timer": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderTbLobbySlotResource": { | |
"properties": { | |
"autoFillEligible": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForPromos": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForSoloing": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForStreaking": { | |
"type": "boolean" | |
}, | |
"draftPositionPreferences": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"excludedPositionPreference": { | |
"type": "string" | |
}, | |
"showPositionExcluder": { | |
"type": "boolean" | |
}, | |
"slotId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderTbLobbyStateResource": { | |
"properties": { | |
"afkCheckState": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderAfkCheckStateV1" | |
}, | |
"championSelectState": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderChampionSelectStateV1" | |
}, | |
"counter": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"matchmakingState": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderTBDMatchmakingState" | |
}, | |
"phaseName": { | |
"type": "string" | |
}, | |
"premadeState": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderTbLobbyPremadeStateResource" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderTbRemovedFromServiceNotification": { | |
"properties": { | |
"backwardsTransitionInfo": { | |
"$ref": "#/definitions/LolLobbyTeamBuilderBackwardsTransitionInfoV1" | |
}, | |
"reason": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderTbdInventory": { | |
"properties": { | |
"allChampionIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"disabledChampionIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"initialSpellIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"lastSelectedSkinIdByChampionId": { | |
"additionalProperties": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "object" | |
}, | |
"skinIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"spellIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderTeamBoost": { | |
"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" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"unlocked": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderTeamBuilderBoostInfo": { | |
"properties": { | |
"activatorCellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"allowBattleBoost": { | |
"type": "boolean" | |
}, | |
"battleBoostActivated": { | |
"type": "boolean" | |
}, | |
"boostableSkinCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"cost": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"unlockedSkinIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyTeamBuilderTradeV1": { | |
"properties": { | |
"cellId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"state": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyUserInfoToken": { | |
"properties": { | |
"userInfo": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLobbyUserResource": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lol": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginAccessToken": { | |
"properties": { | |
"expiry": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"scopes": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"token": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginAccountStateResource": { | |
"properties": { | |
"state": { | |
"$ref": "#/definitions/LolLoginAccountStateType" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginAccountStateType": { | |
"enum": [ | |
"CREATING", | |
"ENABLED", | |
"TRANSFERRING_OUT", | |
"TRANSFERRING_IN", | |
"TRANSFERRED_OUT", | |
"GENERATING" | |
], | |
"type": "string" | |
}, | |
"LolLoginAuthorization": { | |
"properties": { | |
"currentAccountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currentPlatformId": { | |
"type": "string" | |
}, | |
"subject": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginIdToken": { | |
"properties": { | |
"expiry": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"token": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginLcdsResponse": { | |
"properties": { | |
"body": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"typeName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginLcdsServiceProxyResponse": { | |
"properties": { | |
"compressedPayload": { | |
"type": "boolean" | |
}, | |
"messageId": { | |
"type": "string" | |
}, | |
"methodName": { | |
"type": "string" | |
}, | |
"payload": { | |
"type": "string" | |
}, | |
"serviceName": { | |
"type": "string" | |
}, | |
"status": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginLoginError": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"messageId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginLoginQueue": { | |
"properties": { | |
"approximateWaitTimeSeconds": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"estimatedPositionInQueue": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isPositionCapped": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"connected": { | |
"type": "boolean" | |
}, | |
"error": { | |
"$ref": "#/definitions/LolLoginLoginError" | |
}, | |
"gasToken": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"idToken": { | |
"type": "string" | |
}, | |
"isNewPlayer": { | |
"type": "boolean" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"queueStatus": { | |
"$ref": "#/definitions/LolLoginLoginQueue" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolLoginLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"userAuthToken": { | |
"type": "string" | |
}, | |
"username": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolLoginLoginSessionWallet": { | |
"properties": { | |
"ip": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rp": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginPlatformGeneratedCredentials": { | |
"properties": { | |
"gasToken": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"password": { | |
"type": "string" | |
}, | |
"username": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginRSOPlayerCredentials": { | |
"properties": { | |
"password": { | |
"type": "string" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"username": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginRegionStatus": { | |
"properties": { | |
"enabled": { | |
"type": "boolean" | |
}, | |
"isLQFallbackAllowed": { | |
"type": "boolean" | |
}, | |
"isUserInfoEnabled": { | |
"type": "boolean" | |
}, | |
"platformId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginSummonerCreatedResource": { | |
"properties": { | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoginUsernameAndPassword": { | |
"properties": { | |
"password": { | |
"type": "string" | |
}, | |
"username": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootCollectionsChampionMinimal": { | |
"properties": { | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolLootCollectionsOwnership" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootCollectionsChampionSkinMinimal": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolLootCollectionsOwnership" | |
}, | |
"splashPath": { | |
"type": "string" | |
}, | |
"tilePath": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootCollectionsEmote": { | |
"properties": { | |
"itemId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"ownershipType": { | |
"$ref": "#/definitions/LolLootInventoryOwnership" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootCollectionsOwnership": { | |
"properties": { | |
"freeToPlayReward": { | |
"type": "boolean" | |
}, | |
"owned": { | |
"type": "boolean" | |
}, | |
"rental": { | |
"$ref": "#/definitions/LolLootCollectionsRental" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootCollectionsRental": { | |
"properties": { | |
"rented": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootCollectionsSummonerIcons": { | |
"properties": { | |
"icons": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootCollectionsWardSkin": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolLootCollectionsOwnership" | |
}, | |
"wardImagePath": { | |
"type": "string" | |
}, | |
"wardShadowImagePath": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootContextMenu": { | |
"properties": { | |
"actionType": { | |
"type": "string" | |
}, | |
"enabled": { | |
"type": "boolean" | |
}, | |
"essenceQuantity": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"essenceType": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"recipeContextMenuAction": { | |
"type": "string" | |
}, | |
"recipeDescription": { | |
"type": "string" | |
}, | |
"requiredOthers": { | |
"type": "string" | |
}, | |
"requiredOthersCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"requiredOthersName": { | |
"type": "string" | |
}, | |
"requiredTokens": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootCurrencyConfiguration": { | |
"properties": { | |
"currenciesUsingCapWallets": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootGameDataSummonerEmote": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inventoryIcon": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootGameDataSummonerIcon": { | |
"properties": { | |
"iconPath": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolLootGameflowSession": { | |
"properties": { | |
"phase": { | |
"$ref": "#/definitions/LolLootGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootInventoryOwnership": { | |
"enum": [ | |
"OWNED", | |
"RENTED", | |
"F2P" | |
], | |
"type": "string" | |
}, | |
"LolLootItemOwnershipStatus": { | |
"enum": [ | |
"NONE", | |
"FREE", | |
"RENTAL", | |
"OWNED" | |
], | |
"type": "string" | |
}, | |
"LolLootLoginAllSummonerData": { | |
"properties": { | |
"summonerLevelAndPoints": { | |
"$ref": "#/definitions/LolLootLoginSummonerLevelAndPoints" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootLoginDataPacket": { | |
"properties": { | |
"allSummonerData": { | |
"$ref": "#/definitions/LolLootLoginAllSummonerData" | |
}, | |
"simpleMessages": { | |
"items": { | |
"$ref": "#/definitions/LolLootLoginSimpleMessage" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolLootLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolLootLoginSimpleMessage": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"msgId": { | |
"type": "string" | |
}, | |
"params": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootLoginSummonerLevelAndPoints": { | |
"properties": { | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootLootBundleGdsResource": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"descriptionLong": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"image": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootLootDataGdsResource": { | |
"properties": { | |
"LootBundles": { | |
"items": { | |
"$ref": "#/definitions/LolLootLootBundleGdsResource" | |
}, | |
"type": "array" | |
}, | |
"LootItems": { | |
"items": { | |
"$ref": "#/definitions/LolLootLootItemGdsResource" | |
}, | |
"type": "array" | |
}, | |
"LootRecipes": { | |
"items": { | |
"$ref": "#/definitions/LolLootLootRecipeGdsResource" | |
}, | |
"type": "array" | |
}, | |
"LootTables": { | |
"items": { | |
"$ref": "#/definitions/LolLootLootTableGdsResource" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootLootDescription": { | |
"properties": { | |
"childLootTableNames": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"childrenDescriptions": { | |
"items": { | |
"$ref": "#/definitions/LolLootLootDescription" | |
}, | |
"type": "array" | |
}, | |
"imagePath": { | |
"type": "string" | |
}, | |
"localizedDescription": { | |
"type": "string" | |
}, | |
"localizedDescriptionLong": { | |
"type": "string" | |
}, | |
"lootName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootLootGrantNotification": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lootName": { | |
"type": "string" | |
}, | |
"messageKey": { | |
"type": "string" | |
}, | |
"msgId": { | |
"type": "string" | |
}, | |
"playerGrade": { | |
"type": "string" | |
}, | |
"playerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootLootItem": { | |
"properties": { | |
"asset": { | |
"type": "string" | |
}, | |
"displayCategories": { | |
"type": "string" | |
}, | |
"expiryTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lootName": { | |
"type": "string" | |
}, | |
"rarity": { | |
"type": "string" | |
}, | |
"rentalGames": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rentalSeconds": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"storeItemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"tags": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
}, | |
"upgradeLootName": { | |
"type": "string" | |
}, | |
"value": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootLootItemGdsResource": { | |
"properties": { | |
"autoRedeem": { | |
"type": "boolean" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"endDate": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"image": { | |
"type": "string" | |
}, | |
"lifetimeMax": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"mappedStoreId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"rarity": { | |
"$ref": "#/definitions/LolLootLootRarity" | |
}, | |
"recipeMenuActive": { | |
"type": "boolean" | |
}, | |
"recipeMenuSubtitle": { | |
"type": "string" | |
}, | |
"recipeMenuTitle": { | |
"type": "string" | |
}, | |
"startDate": { | |
"type": "string" | |
}, | |
"type": { | |
"$ref": "#/definitions/LolLootLootType" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootLootRarity": { | |
"enum": [ | |
"Default", | |
"Epic", | |
"Legendary", | |
"Mythic", | |
"Ultimate" | |
], | |
"type": "string" | |
}, | |
"LolLootLootRecipeGdsResource": { | |
"properties": { | |
"contextMenuText": { | |
"type": "string" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"imagePath": { | |
"type": "string" | |
}, | |
"introVideoPath": { | |
"type": "string" | |
}, | |
"loopVideoPath": { | |
"type": "string" | |
}, | |
"outroVideoPath": { | |
"type": "string" | |
}, | |
"requirementText": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootLootTableGdsResource": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"descriptionLong": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"image": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootLootType": { | |
"enum": [ | |
"Chest", | |
"Currency", | |
"Material", | |
"Skin", | |
"Skin_Rental", | |
"SummonerIcon" | |
], | |
"type": "string" | |
}, | |
"LolLootPlayerLoot": { | |
"properties": { | |
"asset": { | |
"type": "string" | |
}, | |
"count": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"disenchantLootName": { | |
"type": "string" | |
}, | |
"disenchantValue": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"displayCategories": { | |
"type": "string" | |
}, | |
"expiryTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isNew": { | |
"type": "boolean" | |
}, | |
"isRental": { | |
"type": "boolean" | |
}, | |
"itemDesc": { | |
"type": "string" | |
}, | |
"itemStatus": { | |
"$ref": "#/definitions/LolLootItemOwnershipStatus" | |
}, | |
"localizedDescription": { | |
"type": "string" | |
}, | |
"localizedName": { | |
"type": "string" | |
}, | |
"localizedRecipeSubtitle": { | |
"type": "string" | |
}, | |
"localizedRecipeTitle": { | |
"type": "string" | |
}, | |
"lootId": { | |
"type": "string" | |
}, | |
"lootName": { | |
"type": "string" | |
}, | |
"parentItemStatus": { | |
"$ref": "#/definitions/LolLootItemOwnershipStatus" | |
}, | |
"parentStoreItemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rarity": { | |
"type": "string" | |
}, | |
"redeemableStatus": { | |
"$ref": "#/definitions/LolLootRedeemableStatus" | |
}, | |
"refId": { | |
"type": "string" | |
}, | |
"rentalGames": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rentalSeconds": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"shadowPath": { | |
"type": "string" | |
}, | |
"splashPath": { | |
"type": "string" | |
}, | |
"storeItemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"tags": { | |
"type": "string" | |
}, | |
"tilePath": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
}, | |
"upgradeEssenceName": { | |
"type": "string" | |
}, | |
"upgradeEssenceValue": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"upgradeLootName": { | |
"type": "string" | |
}, | |
"value": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootPlayerLootDelta": { | |
"properties": { | |
"deltaCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"playerLoot": { | |
"$ref": "#/definitions/LolLootPlayerLoot" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootPlayerLootMap": { | |
"properties": { | |
"playerLoot": { | |
"additionalProperties": { | |
"$ref": "#/definitions/LolLootPlayerLoot" | |
}, | |
"type": "object" | |
}, | |
"version": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootPlayerLootNotification": { | |
"properties": { | |
"acknowledged": { | |
"type": "boolean" | |
}, | |
"count": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"id": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootPlayerLootUpdate": { | |
"properties": { | |
"added": { | |
"items": { | |
"$ref": "#/definitions/LolLootPlayerLootDelta" | |
}, | |
"type": "array" | |
}, | |
"redeemed": { | |
"items": { | |
"$ref": "#/definitions/LolLootPlayerLootDelta" | |
}, | |
"type": "array" | |
}, | |
"removed": { | |
"items": { | |
"$ref": "#/definitions/LolLootPlayerLootDelta" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootRecipe": { | |
"properties": { | |
"contextMenuText": { | |
"type": "string" | |
}, | |
"crafterName": { | |
"type": "string" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"displayCategories": { | |
"type": "string" | |
}, | |
"imagePath": { | |
"type": "string" | |
}, | |
"introVideoPath": { | |
"type": "string" | |
}, | |
"loopVideoPath": { | |
"type": "string" | |
}, | |
"metadata": { | |
"$ref": "#/definitions/LolLootRecipeMetadata" | |
}, | |
"outputs": { | |
"items": { | |
"$ref": "#/definitions/LolLootRecipeOutput" | |
}, | |
"type": "array" | |
}, | |
"outroVideoPath": { | |
"type": "string" | |
}, | |
"recipeName": { | |
"type": "string" | |
}, | |
"requirementText": { | |
"type": "string" | |
}, | |
"slots": { | |
"items": { | |
"$ref": "#/definitions/LolLootRecipeSlot" | |
}, | |
"type": "array" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootRecipeMenuConfig": { | |
"properties": { | |
"alwaysShowLootIds": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"enabled": { | |
"type": "boolean" | |
}, | |
"lootItemsUsingBreakoutRecipeMenu": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootRecipeMetadata": { | |
"properties": { | |
"bonusDescriptions": { | |
"items": { | |
"$ref": "#/definitions/LolLootLootDescription" | |
}, | |
"type": "array" | |
}, | |
"guaranteedDescriptions": { | |
"items": { | |
"$ref": "#/definitions/LolLootLootDescription" | |
}, | |
"type": "array" | |
}, | |
"tooltipsDisabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootRecipeOutput": { | |
"properties": { | |
"lootName": { | |
"type": "string" | |
}, | |
"quantity": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootRecipeSlot": { | |
"properties": { | |
"lootIds": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"quantity": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"slotNumber": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"tags": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLootRedeemableStatus": { | |
"enum": [ | |
"UNKNOWN", | |
"REDEEMABLE", | |
"REDEEMABLE_RENTAL", | |
"NOT_REDEEMABLE", | |
"NOT_REDEEMABLE_RENTAL", | |
"ALREADY_OWNED", | |
"ALREADY_RENTED", | |
"CHAMPION_NOT_OWNED", | |
"SKIN_NOT_OWNED" | |
], | |
"type": "string" | |
}, | |
"LolLootSummoner": { | |
"properties": { | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoyaltyLoyaltyRewards": { | |
"properties": { | |
"freeRewardedChampionsCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"freeRewardedSkinsCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"ipBoost": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"xpBoost": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolLoyaltyLoyaltyStatus": { | |
"enum": [ | |
"LEGACY", | |
"REWARDS_GRANT", | |
"EXPIRY", | |
"CHANGE", | |
"REVOKE", | |
"DISABLED" | |
], | |
"type": "string" | |
}, | |
"LolLoyaltyLoyaltyStatusNotification": { | |
"properties": { | |
"rewards": { | |
"$ref": "#/definitions/LolLoyaltyLoyaltyRewards" | |
}, | |
"status": { | |
"$ref": "#/definitions/LolLoyaltyLoyaltyStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMapsMaps": { | |
"properties": { | |
"assets": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameModeDescription": { | |
"type": "string" | |
}, | |
"gameModeName": { | |
"type": "string" | |
}, | |
"gameModeShortName": { | |
"type": "string" | |
}, | |
"gameMutator": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isDefault": { | |
"type": "boolean" | |
}, | |
"isRGM": { | |
"type": "boolean" | |
}, | |
"mapStringId": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"platformName": { | |
"type": "string" | |
}, | |
"properties": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolMatchHistoryLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolMatchHistoryMatchHistoryEvent": { | |
"properties": { | |
"assistingParticipantIds": { | |
"items": { | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"buildingType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"type": "integer" | |
}, | |
"killerId": { | |
"type": "integer" | |
}, | |
"laneType": { | |
"type": "string" | |
}, | |
"monsterSubType": { | |
"type": "string" | |
}, | |
"monsterType": { | |
"type": "string" | |
}, | |
"participantId": { | |
"type": "integer" | |
}, | |
"position": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryPosition" | |
}, | |
"skillSlot": { | |
"type": "integer" | |
}, | |
"teamId": { | |
"type": "integer" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"towerType": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
}, | |
"victimId": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryGame": { | |
"properties": { | |
"gameCreation": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameCreationDate": { | |
"type": "string" | |
}, | |
"gameDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameType": { | |
"type": "string" | |
}, | |
"gameVersion": { | |
"type": "string" | |
}, | |
"mapId": { | |
"type": "integer" | |
}, | |
"participantIdentities": { | |
"items": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryParticipantIdentities" | |
}, | |
"type": "array" | |
}, | |
"participants": { | |
"items": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryParticipant" | |
}, | |
"type": "array" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"seasonId": { | |
"type": "integer" | |
}, | |
"teams": { | |
"items": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryTeam" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryGameList": { | |
"properties": { | |
"gameBeginDate": { | |
"type": "string" | |
}, | |
"gameCount": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameEndDate": { | |
"type": "string" | |
}, | |
"gameIndexBegin": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameIndexEnd": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"games": { | |
"items": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryGame" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryList": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"games": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryGameList" | |
}, | |
"platformId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryParticipant": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"highestAchievedSeasonTier": { | |
"type": "string" | |
}, | |
"participantId": { | |
"type": "integer" | |
}, | |
"spell1Id": { | |
"type": "integer" | |
}, | |
"spell2Id": { | |
"type": "integer" | |
}, | |
"stats": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryParticipantStatistics" | |
}, | |
"teamId": { | |
"type": "integer" | |
}, | |
"timeline": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryTimeline" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryParticipantFrame": { | |
"properties": { | |
"currentGold": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"dominionScore": { | |
"type": "integer" | |
}, | |
"jungleMinionsKilled": { | |
"type": "integer" | |
}, | |
"level": { | |
"type": "integer" | |
}, | |
"minionsKilled": { | |
"type": "integer" | |
}, | |
"participantId": { | |
"type": "integer" | |
}, | |
"position": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryPosition" | |
}, | |
"teamScore": { | |
"type": "integer" | |
}, | |
"totalGold": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"xp": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryParticipantIdentities": { | |
"properties": { | |
"participantId": { | |
"type": "integer" | |
}, | |
"player": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryParticipantIdentityPlayer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryParticipantIdentityPlayer": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currentAccountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currentPlatformId": { | |
"type": "string" | |
}, | |
"matchHistoryUri": { | |
"type": "string" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"profileIcon": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryParticipantStatistics": { | |
"properties": { | |
"assists": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"causedEarlySurrender": { | |
"type": "boolean" | |
}, | |
"champLevel": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"combatPlayerScore": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"damageDealtToObjectives": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"damageDealtToTurrets": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"damageSelfMitigated": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"deaths": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"doubleKills": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"earlySurrenderAccomplice": { | |
"type": "boolean" | |
}, | |
"firstBloodAssist": { | |
"type": "boolean" | |
}, | |
"firstBloodKill": { | |
"type": "boolean" | |
}, | |
"firstInhibitorAssist": { | |
"type": "boolean" | |
}, | |
"firstInhibitorKill": { | |
"type": "boolean" | |
}, | |
"firstTowerAssist": { | |
"type": "boolean" | |
}, | |
"firstTowerKill": { | |
"type": "boolean" | |
}, | |
"gameEndedInEarlySurrender": { | |
"type": "boolean" | |
}, | |
"gameEndedInSurrender": { | |
"type": "boolean" | |
}, | |
"goldEarned": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"goldSpent": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inhibitorKills": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"item0": { | |
"type": "integer" | |
}, | |
"item1": { | |
"type": "integer" | |
}, | |
"item2": { | |
"type": "integer" | |
}, | |
"item3": { | |
"type": "integer" | |
}, | |
"item4": { | |
"type": "integer" | |
}, | |
"item5": { | |
"type": "integer" | |
}, | |
"item6": { | |
"type": "integer" | |
}, | |
"killingSprees": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"kills": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"largestCriticalStrike": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"largestKillingSpree": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"largestMultiKill": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"longestTimeSpentLiving": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"magicDamageDealt": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"magicDamageDealtToChampions": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"magicalDamageTaken": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"neutralMinionsKilled": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"neutralMinionsKilledEnemyJungle": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"neutralMinionsKilledTeamJungle": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"objectivePlayerScore": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"participantId": { | |
"type": "integer" | |
}, | |
"pentaKills": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk0": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk0Var1": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk0Var2": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk0Var3": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk1": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk1Var1": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk1Var2": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk1Var3": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk2": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk2Var1": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk2Var2": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk2Var3": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk3": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk3Var1": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk3Var2": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk3Var3": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk4": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk4Var1": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk4Var2": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk4Var3": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk5": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk5Var1": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk5Var2": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perk5Var3": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perkPrimaryStyle": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"perkSubStyle": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"physicalDamageDealt": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"physicalDamageDealtToChampions": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"physicalDamageTaken": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerScore0": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerScore1": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerScore2": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerScore3": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerScore4": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerScore5": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerScore6": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerScore7": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerScore8": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerScore9": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"quadraKills": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"sightWardsBoughtInGame": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"teamEarlySurrendered": { | |
"type": "boolean" | |
}, | |
"timeCCingOthers": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"totalDamageDealt": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"totalDamageDealtToChampions": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"totalDamageTaken": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"totalHeal": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"totalMinionsKilled": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"totalPlayerScore": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"totalScoreRank": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"totalTimeCrowdControlDealt": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"totalUnitsHealed": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"tripleKills": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"trueDamageDealt": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"trueDamageDealtToChampions": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"trueDamageTaken": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"turretKills": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"unrealKills": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"visionScore": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"visionWardsBoughtInGame": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"wardsKilled": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"wardsPlaced": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"win": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryPlayerChampMasteryDelta": { | |
"properties": { | |
"grade": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryPlayerDelta": { | |
"properties": { | |
"deltas": { | |
"items": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryPlayerGameDelta" | |
}, | |
"type": "array" | |
}, | |
"originalAccountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"originalPlatformId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryPlayerGameDelta": { | |
"properties": { | |
"champMastery": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryPlayerChampMasteryDelta" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gamePlatformId": { | |
"type": "string" | |
}, | |
"leagueDelta": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryPlayerLeagueDelta" | |
}, | |
"platformDelta": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryPlayerPlatformDelta" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryPlayerLeagueDelta": { | |
"properties": { | |
"leaguePointDelta": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"miniSeriesProgress": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"reason": { | |
"type": "string" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryPlayerPlatformDelta": { | |
"properties": { | |
"compensationModeEnabled": { | |
"type": "boolean" | |
}, | |
"ipDelta": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"xpDelta": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryPosition": { | |
"properties": { | |
"x": { | |
"type": "integer" | |
}, | |
"y": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryTeam": { | |
"properties": { | |
"bans": { | |
"items": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryTeamBan" | |
}, | |
"type": "array" | |
}, | |
"baronKills": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"dominionVictoryScore": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"dragonKills": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"firstBaron": { | |
"type": "boolean" | |
}, | |
"firstBlood": { | |
"type": "boolean" | |
}, | |
"firstDargon": { | |
"type": "boolean" | |
}, | |
"firstInhibitor": { | |
"type": "boolean" | |
}, | |
"firstTower": { | |
"type": "boolean" | |
}, | |
"inhibitorKills": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"riftHeraldKills": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"teamId": { | |
"type": "integer" | |
}, | |
"towerKills": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"vilemawKills": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"win": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryTeamBan": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pickTurn": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryTimeline": { | |
"properties": { | |
"creepsPerMinDeltas": { | |
"additionalProperties": { | |
"format": "double", | |
"type": "number" | |
}, | |
"type": "object" | |
}, | |
"csDiffPerMinDeltas": { | |
"additionalProperties": { | |
"format": "double", | |
"type": "number" | |
}, | |
"type": "object" | |
}, | |
"damageTakenDiffPerMinDeltas": { | |
"additionalProperties": { | |
"format": "double", | |
"type": "number" | |
}, | |
"type": "object" | |
}, | |
"damageTakenPerMinDeltas": { | |
"additionalProperties": { | |
"format": "double", | |
"type": "number" | |
}, | |
"type": "object" | |
}, | |
"goldPerMinDeltas": { | |
"additionalProperties": { | |
"format": "double", | |
"type": "number" | |
}, | |
"type": "object" | |
}, | |
"lane": { | |
"type": "string" | |
}, | |
"participantId": { | |
"type": "integer" | |
}, | |
"role": { | |
"type": "string" | |
}, | |
"xpDiffPerMinDeltas": { | |
"additionalProperties": { | |
"format": "double", | |
"type": "number" | |
}, | |
"type": "object" | |
}, | |
"xpPerMinDeltas": { | |
"additionalProperties": { | |
"format": "double", | |
"type": "number" | |
}, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryTimelineFrame": { | |
"properties": { | |
"events": { | |
"items": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryEvent" | |
}, | |
"type": "array" | |
}, | |
"participantFrames": { | |
"additionalProperties": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryParticipantFrame" | |
}, | |
"type": "object" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryMatchHistoryTimelineFrames": { | |
"properties": { | |
"frames": { | |
"items": { | |
"$ref": "#/definitions/LolMatchHistoryMatchHistoryTimelineFrame" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistoryRecentlyPlayedSummoner": { | |
"properties": { | |
"championId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameCreationDate": { | |
"type": "string" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
}, | |
"teamId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchHistorySummonerIdAndName": { | |
"properties": { | |
"displayName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingGameflowGameData": { | |
"properties": { | |
"queue": { | |
"$ref": "#/definitions/LolMatchmakingGameflowQueue" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingGameflowGameDodge": { | |
"properties": { | |
"dodgeIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolMatchmakingMatchmakingDodgeState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingGameflowGameTypeConfig": { | |
"properties": { | |
"reroll": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolMatchmakingGameflowQueue": { | |
"properties": { | |
"gameTypeConfig": { | |
"$ref": "#/definitions/LolMatchmakingGameflowGameTypeConfig" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingGameflowSession": { | |
"properties": { | |
"gameData": { | |
"$ref": "#/definitions/LolMatchmakingGameflowGameData" | |
}, | |
"gameDodge": { | |
"$ref": "#/definitions/LolMatchmakingGameflowGameDodge" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolMatchmakingGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingLobbyStatus": { | |
"properties": { | |
"allowedPlayAgain": { | |
"type": "boolean" | |
}, | |
"customSpectatorPolicy": { | |
"$ref": "#/definitions/LolMatchmakingQueueCustomGameSpectatorPolicy" | |
}, | |
"isCustom": { | |
"type": "boolean" | |
}, | |
"isLeader": { | |
"type": "boolean" | |
}, | |
"isSpectator": { | |
"type": "boolean" | |
}, | |
"lobbyId": { | |
"type": "string" | |
}, | |
"memberSummonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"connected": { | |
"type": "boolean" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolMatchmakingLoginSessionState" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingLoginSessionState": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolMatchmakingMatchmakingDodgeData": { | |
"properties": { | |
"dodgerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolMatchmakingMatchmakingDodgeState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingMatchmakingDodgeState": { | |
"enum": [ | |
"Invalid", | |
"PartyDodged", | |
"StrangerDodged", | |
"TournamentDodged" | |
], | |
"type": "string" | |
}, | |
"LolMatchmakingMatchmakingDodgeWarning": { | |
"enum": [ | |
"None", | |
"Warning", | |
"Penalty" | |
], | |
"type": "string" | |
}, | |
"LolMatchmakingMatchmakingLowPriorityData": { | |
"properties": { | |
"bustedLeaverAccessToken": { | |
"type": "string" | |
}, | |
"penalizedSummonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"penaltyTime": { | |
"format": "double", | |
"type": "number" | |
}, | |
"penaltyTimeRemaining": { | |
"format": "double", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingMatchmakingReadyCheckResource": { | |
"properties": { | |
"declinerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"dodgeWarning": { | |
"$ref": "#/definitions/LolMatchmakingMatchmakingDodgeWarning" | |
}, | |
"playerResponse": { | |
"$ref": "#/definitions/LolMatchmakingMatchmakingReadyCheckResponse" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolMatchmakingMatchmakingReadyCheckState" | |
}, | |
"suppressUx": { | |
"type": "boolean" | |
}, | |
"timer": { | |
"format": "float", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingMatchmakingReadyCheckResponse": { | |
"enum": [ | |
"None", | |
"Accepted", | |
"Declined" | |
], | |
"type": "string" | |
}, | |
"LolMatchmakingMatchmakingReadyCheckState": { | |
"enum": [ | |
"Invalid", | |
"InProgress", | |
"EveryoneReady", | |
"StrangerNotReady", | |
"PartyNotReady", | |
"Error" | |
], | |
"type": "string" | |
}, | |
"LolMatchmakingMatchmakingSearchErrorResource": { | |
"properties": { | |
"errorType": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"message": { | |
"type": "string" | |
}, | |
"penalizedSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"penaltyTimeRemaining": { | |
"format": "double", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingMatchmakingSearchResource": { | |
"properties": { | |
"dodgeData": { | |
"$ref": "#/definitions/LolMatchmakingMatchmakingDodgeData" | |
}, | |
"errors": { | |
"items": { | |
"$ref": "#/definitions/LolMatchmakingMatchmakingSearchErrorResource" | |
}, | |
"type": "array" | |
}, | |
"estimatedQueueTime": { | |
"format": "float", | |
"type": "number" | |
}, | |
"isCurrentlyInQueue": { | |
"type": "boolean" | |
}, | |
"lobbyId": { | |
"type": "string" | |
}, | |
"lowPriorityData": { | |
"$ref": "#/definitions/LolMatchmakingMatchmakingLowPriorityData" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"readyCheck": { | |
"$ref": "#/definitions/LolMatchmakingMatchmakingReadyCheckResource" | |
}, | |
"searchState": { | |
"$ref": "#/definitions/LolMatchmakingMatchmakingSearchState" | |
}, | |
"timeInQueue": { | |
"format": "float", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingMatchmakingSearchState": { | |
"enum": [ | |
"Invalid", | |
"AbandonedLowPriorityQueue", | |
"Canceled", | |
"Searching", | |
"Found", | |
"Error", | |
"ServiceError", | |
"ServiceShutdown" | |
], | |
"type": "string" | |
}, | |
"LolMatchmakingPlayerStatus": { | |
"properties": { | |
"currentLobbyStatus": { | |
"$ref": "#/definitions/LolMatchmakingLobbyStatus" | |
}, | |
"lastQueuedLobbyStatus": { | |
"$ref": "#/definitions/LolMatchmakingLobbyStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingQueue": { | |
"properties": { | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isTeamBuilderManaged": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMatchmakingQueueCustomGameSpectatorPolicy": { | |
"enum": [ | |
"NotAllowed", | |
"LobbyAllowed", | |
"FriendsAllowed", | |
"AllAllowed" | |
], | |
"type": "string" | |
}, | |
"LolMissionsCollectionsChampion": { | |
"properties": { | |
"freeToPlay": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolMissionsCollectionsOwnership" | |
}, | |
"skins": { | |
"items": { | |
"$ref": "#/definitions/LolMissionsCollectionsChampionSkin" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsCollectionsChampionSkin": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolMissionsCollectionsOwnership" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsCollectionsOwnership": { | |
"properties": { | |
"freeToPlayReward": { | |
"type": "boolean" | |
}, | |
"owned": { | |
"type": "boolean" | |
}, | |
"rental": { | |
"$ref": "#/definitions/LolMissionsCollectionsRental" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsCollectionsRental": { | |
"properties": { | |
"rented": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsCollectionsSummoner": { | |
"properties": { | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsCollectionsSummonerIcons": { | |
"properties": { | |
"icons": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsCollectionsWardSkin": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolMissionsCollectionsOwnership" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsEntitlementsToken": { | |
"properties": { | |
"entitlements": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolMissionsGameflowSession": { | |
"properties": { | |
"phase": { | |
"$ref": "#/definitions/LolMissionsGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsLoyaltyStatus": { | |
"enum": [ | |
"LEGACY", | |
"REWARDS_GRANT", | |
"EXPIRY", | |
"CHANGE", | |
"REVOKE", | |
"DISABLED" | |
], | |
"type": "string" | |
}, | |
"LolMissionsLoyaltyStatusNotification": { | |
"properties": { | |
"status": { | |
"$ref": "#/definitions/LolMissionsLoyaltyStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsMissionsNotificationResource": { | |
"properties": { | |
"backgroundUrl": { | |
"type": "string" | |
}, | |
"created": { | |
"type": "string" | |
}, | |
"critical": { | |
"type": "boolean" | |
}, | |
"data": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"detailKey": { | |
"type": "string" | |
}, | |
"expires": { | |
"type": "string" | |
}, | |
"iconUrl": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"source": { | |
"type": "string" | |
}, | |
"state": { | |
"type": "string" | |
}, | |
"titleKey": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsPlayerUpdateResponse": { | |
"properties": { | |
"playerMissions": { | |
"items": { | |
"$ref": "#/definitions/PlayerMissionDTO" | |
}, | |
"type": "array" | |
}, | |
"playerSeries": { | |
"items": { | |
"$ref": "#/definitions/SeriesDTO" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsPluginRegionLocaleChangedEvent": { | |
"properties": { | |
"locale": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsRewardGroupsSelection": { | |
"properties": { | |
"rewardGroups": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolMissionsSeriesOpt": { | |
"properties": { | |
"optStatus": { | |
"type": "string" | |
}, | |
"seriesId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathAccountSettingsCategoryResource": { | |
"properties": { | |
"data": { | |
"$ref": "#/definitions/LolNpeTutorialPathAccountSettingsTutorial" | |
}, | |
"schemaVersion": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathAccountSettingsHowToWinCategoryResource": { | |
"properties": { | |
"data": { | |
"$ref": "#/definitions/LolNpeTutorialPathAccountSettingsHowToWinStats" | |
}, | |
"schemaVersion": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathAccountSettingsHowToWinStats": { | |
"properties": { | |
"creepScore": { | |
"$ref": "#/definitions/LolNpeTutorialPathHowToWinCreepScoreDto" | |
}, | |
"objectives": { | |
"$ref": "#/definitions/LolNpeTutorialPathHowToWinObjectivesDto" | |
}, | |
"ready": { | |
"type": "boolean" | |
}, | |
"takedowns": { | |
"$ref": "#/definitions/LolNpeTutorialPathHowToWinTakedownsDto" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathAccountSettingsTutorial": { | |
"properties": { | |
"hasSeenTutorialPath": { | |
"type": "boolean" | |
}, | |
"hasSkippedTutorialPath": { | |
"type": "boolean" | |
}, | |
"shouldSeeNewPlayerExperience": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathCollectionsChampion": { | |
"properties": { | |
"alias": { | |
"type": "string" | |
}, | |
"banVoPath": { | |
"type": "string" | |
}, | |
"chooseVoPath": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"passive": { | |
"$ref": "#/definitions/LolNpeTutorialPathCollectionsChampionSpell" | |
}, | |
"roles": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"spells": { | |
"items": { | |
"$ref": "#/definitions/LolNpeTutorialPathCollectionsChampionSpell" | |
}, | |
"type": "array" | |
}, | |
"squarePortraitPath": { | |
"type": "string" | |
}, | |
"stingerSfxPath": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathCollectionsChampionSpell": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathEndOfGamePlayer": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"stats": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathEndOfGameStats": { | |
"properties": { | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameType": { | |
"type": "string" | |
}, | |
"teams": { | |
"items": { | |
"$ref": "#/definitions/LolNpeTutorialPathEndOfGameTeam" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathEndOfGameTeam": { | |
"properties": { | |
"isPlayerTeam": { | |
"type": "boolean" | |
}, | |
"players": { | |
"items": { | |
"$ref": "#/definitions/LolNpeTutorialPathEndOfGamePlayer" | |
}, | |
"type": "array" | |
}, | |
"stats": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathExpiringWarning": { | |
"properties": { | |
"alertTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"message": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolNpeTutorialPathGameflowSession": { | |
"properties": { | |
"phase": { | |
"$ref": "#/definitions/LolNpeTutorialPathGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathHowToWinCreepScoreDto": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"goldEarned": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"jungleKills": { | |
"type": "integer" | |
}, | |
"laneKills": { | |
"type": "integer" | |
}, | |
"newRecord": { | |
"type": "boolean" | |
}, | |
"totalKills": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathHowToWinObjectivesDto": { | |
"properties": { | |
"barons": { | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"dragons": { | |
"type": "integer" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"heralds": { | |
"type": "integer" | |
}, | |
"inhibitors": { | |
"type": "integer" | |
}, | |
"newRecord": { | |
"type": "boolean" | |
}, | |
"nexus": { | |
"type": "integer" | |
}, | |
"objectives": { | |
"type": "integer" | |
}, | |
"towers": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathHowToWinTakedownsDto": { | |
"properties": { | |
"assists": { | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"kills": { | |
"type": "integer" | |
}, | |
"largestMulti": { | |
"type": "integer" | |
}, | |
"largestSpree": { | |
"type": "integer" | |
}, | |
"newRecord": { | |
"type": "boolean" | |
}, | |
"takedowns": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathIds": { | |
"properties": { | |
"missionIds": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"seriesIds": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathLobbyChangeQueue": { | |
"properties": { | |
"isCustom": { | |
"type": "boolean" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathLobbyDto": { | |
"properties": { | |
"gameConfig": { | |
"$ref": "#/definitions/LolNpeTutorialPathLobbyGameConfigDto" | |
}, | |
"partyId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathLobbyGameConfigDto": { | |
"properties": { | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isNewPlayer": { | |
"type": "boolean" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathMatchHistoryGame": { | |
"properties": { | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"participantIdentities": { | |
"items": { | |
"$ref": "#/definitions/LolNpeTutorialPathParticipantIdentities" | |
}, | |
"type": "array" | |
}, | |
"participants": { | |
"items": { | |
"$ref": "#/definitions/LolNpeTutorialPathParticipant" | |
}, | |
"type": "array" | |
}, | |
"teams": { | |
"items": { | |
"$ref": "#/definitions/LolNpeTutorialPathTeam" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathMatchHistoryGameList": { | |
"properties": { | |
"gameCount": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameIndexBegin": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameIndexEnd": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"games": { | |
"items": { | |
"$ref": "#/definitions/LolNpeTutorialPathMatchHistoryGame" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathMatchHistoryList": { | |
"properties": { | |
"games": { | |
"$ref": "#/definitions/LolNpeTutorialPathMatchHistoryGameList" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathMedia": { | |
"properties": { | |
"intro": { | |
"$ref": "#/definitions/LolNpeTutorialPathMediaItem" | |
}, | |
"loop": { | |
"$ref": "#/definitions/LolNpeTutorialPathMediaItem" | |
}, | |
"outro": { | |
"$ref": "#/definitions/LolNpeTutorialPathMediaItem" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathMediaItem": { | |
"properties": { | |
"sound": { | |
"type": "string" | |
}, | |
"video": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathMission": { | |
"properties": { | |
"backgroundImageUrl": { | |
"type": "string" | |
}, | |
"celebrationType": { | |
"type": "string" | |
}, | |
"clientNotifyLevel": { | |
"type": "string" | |
}, | |
"completedDate": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"completionExpression": { | |
"type": "string" | |
}, | |
"cooldownTimeMillis": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"displayType": { | |
"type": "string" | |
}, | |
"endTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"expiringWarnings": { | |
"items": { | |
"$ref": "#/definitions/LolNpeTutorialPathExpiringWarning" | |
}, | |
"type": "array" | |
}, | |
"helperText": { | |
"type": "string" | |
}, | |
"iconImageUrl": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"internalName": { | |
"type": "string" | |
}, | |
"isNew": { | |
"type": "boolean" | |
}, | |
"lastUpdatedTimestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"locale": { | |
"type": "string" | |
}, | |
"metadata": { | |
"$ref": "#/definitions/LolNpeTutorialPathMissionMetadata" | |
}, | |
"missionType": { | |
"type": "string" | |
}, | |
"objectives": { | |
"items": { | |
"$ref": "#/definitions/LolNpeTutorialPathObjective" | |
}, | |
"type": "array" | |
}, | |
"requirements": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"rewardStrategy": { | |
"$ref": "#/definitions/LolNpeTutorialPathRewardStrategy" | |
}, | |
"rewards": { | |
"items": { | |
"$ref": "#/definitions/LolNpeTutorialPathReward" | |
}, | |
"type": "array" | |
}, | |
"seriesName": { | |
"type": "string" | |
}, | |
"startTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"status": { | |
"type": "string" | |
}, | |
"title": { | |
"type": "string" | |
}, | |
"viewed": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathMissionMetadata": { | |
"properties": { | |
"tutorial": { | |
"$ref": "#/definitions/LolNpeTutorialPathTutorialMetadata" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathObjective": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"progress": { | |
"$ref": "#/definitions/LolNpeTutorialPathProgress" | |
}, | |
"sequence": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathParticipant": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"participantId": { | |
"type": "integer" | |
}, | |
"stats": { | |
"$ref": "#/definitions/LolNpeTutorialPathParticipantStatistics" | |
}, | |
"teamId": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathParticipantIdentities": { | |
"properties": { | |
"participantId": { | |
"type": "integer" | |
}, | |
"player": { | |
"$ref": "#/definitions/LolNpeTutorialPathParticipantIdentityPlayer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathParticipantIdentityPlayer": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathParticipantStatistics": { | |
"properties": { | |
"assists": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"goldEarned": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"inhibitorKills": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"kills": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"largestKillingSpree": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"largestMultiKill": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"neutralMinionsKilled": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"totalMinionsKilled": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"turretKills": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathProgress": { | |
"properties": { | |
"currentProgress": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"lastViewedProgress": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"totalCount": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathRequirement": { | |
"properties": { | |
"expression": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathReward": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"iconUrl": { | |
"type": "string" | |
}, | |
"itemId": { | |
"type": "string" | |
}, | |
"media": { | |
"$ref": "#/definitions/LolNpeTutorialPathMedia" | |
}, | |
"rewardFulfilled": { | |
"type": "boolean" | |
}, | |
"rewardGroup": { | |
"type": "string" | |
}, | |
"rewardGroupSelected": { | |
"type": "boolean" | |
}, | |
"rewardType": { | |
"type": "string" | |
}, | |
"sequence": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"uniqueName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathRewardGroupStrategy": { | |
"enum": [ | |
"ALL_GROUPS", | |
"SELECT_GROUPS", | |
"RANDOM_GROUPS" | |
], | |
"type": "string" | |
}, | |
"LolNpeTutorialPathRewardStrategy": { | |
"properties": { | |
"groupStrategy": { | |
"$ref": "#/definitions/LolNpeTutorialPathRewardGroupStrategy" | |
}, | |
"selectMaxGroupCount": { | |
"type": "integer" | |
}, | |
"selectMinGroupCount": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathSeries": { | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"internalName": { | |
"type": "string" | |
}, | |
"status": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathSeriesOpt": { | |
"properties": { | |
"optStatus": { | |
"type": "string" | |
}, | |
"seriesId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathSummoner": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"displayName": { | |
"type": "string" | |
}, | |
"percentCompleteForNextLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"xpSinceLastLevel": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"xpUntilNextLevel": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathSummonerIcon": { | |
"properties": { | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathTeam": { | |
"properties": { | |
"baronKills": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"dragonKills": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"inhibitorKills": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"riftHeraldKills": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"teamId": { | |
"type": "integer" | |
}, | |
"towerKills": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"win": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathTutorial": { | |
"properties": { | |
"backgroundUrl": { | |
"type": "string" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"isViewed": { | |
"type": "boolean" | |
}, | |
"queueId": { | |
"type": "string" | |
}, | |
"rewards": { | |
"items": { | |
"$ref": "#/definitions/LolNpeTutorialPathTutorialReward" | |
}, | |
"type": "array" | |
}, | |
"status": { | |
"$ref": "#/definitions/LolNpeTutorialPathTutorialStatus" | |
}, | |
"stepNumber": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"title": { | |
"type": "string" | |
}, | |
"type": { | |
"$ref": "#/definitions/LolNpeTutorialPathTutorialType" | |
}, | |
"useChosenChampion": { | |
"type": "boolean" | |
}, | |
"useQuickSearchMatchmaking": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathTutorialMetadata": { | |
"properties": { | |
"displayRewards": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"queueId": { | |
"type": "string" | |
}, | |
"stepNumber": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"useChosenChampion": { | |
"type": "boolean" | |
}, | |
"useQuickSearchMatchmaking": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathTutorialReward": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"iconUrl": { | |
"type": "string" | |
}, | |
"itemId": { | |
"type": "string" | |
}, | |
"media": { | |
"$ref": "#/definitions/LolNpeTutorialPathMedia" | |
}, | |
"rewardFulfilled": { | |
"type": "boolean" | |
}, | |
"rewardType": { | |
"type": "string" | |
}, | |
"sequence": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"uniqueName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolNpeTutorialPathTutorialStatus": { | |
"enum": [ | |
"LOCKED", | |
"UNLOCKED", | |
"COMPLETED" | |
], | |
"type": "string" | |
}, | |
"LolNpeTutorialPathTutorialType": { | |
"enum": [ | |
"CARD", | |
"REWARD" | |
], | |
"type": "string" | |
}, | |
"LolPerksChampSelectAction": { | |
"properties": { | |
"actorCellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"completed": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksChampSelectBannedChampions": { | |
"properties": { | |
"myTeamBans": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"numBans": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"theirTeamBans": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksChampSelectChatRoomDetails": { | |
"properties": { | |
"chatRoomName": { | |
"type": "string" | |
}, | |
"chatRoomPassword": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksChampSelectMySelection": { | |
"properties": { | |
"selectedSkinId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"spell1Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"spell2Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"wardSkinId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksChampSelectPlayerSelection": { | |
"properties": { | |
"assignedPosition": { | |
"type": "string" | |
}, | |
"cellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championPickIntent": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"playerType": { | |
"type": "string" | |
}, | |
"selectedSkinId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"spell1Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"spell2Id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"team": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"wardSkinId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksChampSelectSession": { | |
"properties": { | |
"actions": { | |
"items": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "array" | |
}, | |
"bans": { | |
"$ref": "#/definitions/LolPerksChampSelectBannedChampions" | |
}, | |
"chatDetails": { | |
"$ref": "#/definitions/LolPerksChampSelectChatRoomDetails" | |
}, | |
"isSpectating": { | |
"type": "boolean" | |
}, | |
"localPlayerCellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"myTeam": { | |
"items": { | |
"$ref": "#/definitions/LolPerksChampSelectPlayerSelection" | |
}, | |
"type": "array" | |
}, | |
"theirTeam": { | |
"items": { | |
"$ref": "#/definitions/LolPerksChampSelectPlayerSelection" | |
}, | |
"type": "array" | |
}, | |
"timer": { | |
"$ref": "#/definitions/LolPerksChampSelectTimer" | |
}, | |
"trades": { | |
"items": { | |
"$ref": "#/definitions/LolPerksChampSelectTradeContract" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksChampSelectTimer": { | |
"properties": { | |
"adjustedTimeLeftInPhase": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"adjustedTimeLeftInPhaseInSec": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"internalNowInEpochMs": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isInfinite": { | |
"type": "boolean" | |
}, | |
"phase": { | |
"type": "string" | |
}, | |
"timeLeftInPhase": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"timeLeftInPhaseInSec": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"totalTimeInPhase": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksChampSelectTradeContract": { | |
"properties": { | |
"cellId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolPerksChampSelectTradeState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksChampSelectTradeState": { | |
"enum": [ | |
"AVAILABLE", | |
"BUSY", | |
"INVALID", | |
"RECEIVED", | |
"SENT" | |
], | |
"type": "string" | |
}, | |
"LolPerksChampionPreferredStyle": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championName": { | |
"type": "string" | |
}, | |
"style": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksCustomizationLimits": { | |
"enum": [ | |
"Locked", | |
"CanSelectPages", | |
"CanSelectKeystones", | |
"CanSelectPrimaries", | |
"CanSelectSplash", | |
"CanUseAdvancedStyles" | |
], | |
"type": "string" | |
}, | |
"LolPerksGameCustomizationDTO": { | |
"properties": { | |
"category": { | |
"type": "string" | |
}, | |
"content": { | |
"type": "string" | |
}, | |
"queueType": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksGameflowGameData": { | |
"properties": { | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isCustomGame": { | |
"type": "boolean" | |
}, | |
"queue": { | |
"$ref": "#/definitions/LolPerksQueue" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolPerksGameflowSession": { | |
"properties": { | |
"gameData": { | |
"$ref": "#/definitions/LolPerksGameflowGameData" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolPerksGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksGetGameCustomizationDTO": { | |
"properties": { | |
"queueType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksGetResultFromServiceDTO": { | |
"properties": { | |
"error": { | |
"type": "string" | |
}, | |
"result": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksInventoryRunePageCount": { | |
"properties": { | |
"quantity": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolPerksLoginSessionState" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksLoginSessionState": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolPerksPerkBook": { | |
"properties": { | |
"currentPageId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pages": { | |
"items": { | |
"$ref": "#/definitions/LolPerksPerkPageResource" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksPerkGDSResource": { | |
"properties": { | |
"iconPath": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"longDesc": { | |
"type": "string" | |
}, | |
"majorChangePatchVersion": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"shortDesc": { | |
"type": "string" | |
}, | |
"tooltip": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksPerkIdListResource": { | |
"properties": { | |
"perkIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksPerkPageResource": { | |
"properties": { | |
"autoModifiedSelections": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"current": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isActive": { | |
"type": "boolean" | |
}, | |
"isDeletable": { | |
"type": "boolean" | |
}, | |
"isEditable": { | |
"type": "boolean" | |
}, | |
"isValid": { | |
"type": "boolean" | |
}, | |
"lastModified": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"order": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"primaryStyleId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"selectedPerkIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"subStyleId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksPerkSettingResource": { | |
"properties": { | |
"perkIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"perkStyle": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"perkSubStyle": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksPerkSettings": { | |
"properties": { | |
"pages": { | |
"items": { | |
"$ref": "#/definitions/LolPerksPerkPageResource" | |
}, | |
"type": "array" | |
}, | |
"perShardPerkBooks": { | |
"additionalProperties": { | |
"$ref": "#/definitions/LolPerksPerkBook" | |
}, | |
"type": "object" | |
}, | |
"settings": { | |
"$ref": "#/definitions/LolPerksUISettings" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksPerkStyleResource": { | |
"properties": { | |
"allowedSubStyles": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"assetMap": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"defaultPageName": { | |
"type": "string" | |
}, | |
"defaultPerks": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"defaultPerksWhenSplashed": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"defaultSubStyle": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"iconPath": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isAdvanced": { | |
"type": "boolean" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"slots": { | |
"items": { | |
"$ref": "#/definitions/LolPerksPerkStyleSlotResource" | |
}, | |
"type": "array" | |
}, | |
"subStyleBonus": { | |
"items": { | |
"$ref": "#/definitions/LolPerksPerkSubStyleBonusResource" | |
}, | |
"type": "array" | |
}, | |
"tooltip": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksPerkStyleSlotResource": { | |
"properties": { | |
"perks": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"slotLabel": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksPerkSubStyleBonusResource": { | |
"properties": { | |
"perkId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"styleId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksPerkUIPerk": { | |
"properties": { | |
"iconPath": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"longDesc": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"shortDesc": { | |
"type": "string" | |
}, | |
"tooltip": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksPerkUISlot": { | |
"properties": { | |
"perks": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"slotLabel": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksPerkUIStyle": { | |
"properties": { | |
"allowedSubStyles": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"assetMap": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"defaultPageName": { | |
"type": "string" | |
}, | |
"defaultPerks": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"defaultSubStyle": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"iconPath": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"slots": { | |
"items": { | |
"$ref": "#/definitions/LolPerksPerkUISlot" | |
}, | |
"type": "array" | |
}, | |
"subStyleBonus": { | |
"items": { | |
"$ref": "#/definitions/LolPerksPerkSubStyleBonusResource" | |
}, | |
"type": "array" | |
}, | |
"tooltip": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksPlatformConfig": { | |
"properties": { | |
"AutoRepairPagesEnabled": { | |
"type": "boolean" | |
}, | |
"PerksEnabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksPlayerInventory": { | |
"properties": { | |
"ownedPageCount": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksQueue": { | |
"properties": { | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksRiotMessagingServiceMessage": { | |
"properties": { | |
"payload": { | |
"type": "string" | |
}, | |
"resource": { | |
"type": "string" | |
}, | |
"service": { | |
"type": "string" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"version": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksServiceSettings": { | |
"properties": { | |
"serverSideStorageAvailable": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksSettingsStorageContainer": { | |
"properties": { | |
"data": { | |
"$ref": "#/definitions/LolPerksPerkSettings" | |
}, | |
"schemaVersion": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksSummoner": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"displayName": { | |
"type": "string" | |
}, | |
"internalName": { | |
"type": "string" | |
}, | |
"lastSeasonHighestRank": { | |
"type": "string" | |
}, | |
"percentCompleteForNextLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"rerollPoints": { | |
"$ref": "#/definitions/LolPerksSummonerRerollPoints" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"xpSinceLastLevel": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"xpUntilNextLevel": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksSummonerRerollPoints": { | |
"properties": { | |
"currentPoints": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"maxRolls": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numberOfRolls": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pointsCostToRoll": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"pointsToReroll": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksUISettings": { | |
"properties": { | |
"gameplayPatchVersionSeen": { | |
"type": "string" | |
}, | |
"gameplayUpdatedPerksSeen": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"gridModeEnabled": { | |
"type": "boolean" | |
}, | |
"showLongDescriptions": { | |
"type": "boolean" | |
}, | |
"showPresetPages": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPerksUpdatePageOrderRequest": { | |
"properties": { | |
"destinationPageId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"offset": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"targetPageId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersAuthenticationRequest": { | |
"properties": { | |
"token": { | |
"type": "string" | |
}, | |
"tokenType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersAuthenticationResponse": { | |
"properties": { | |
"expiration": { | |
"type": "string" | |
}, | |
"token": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gasToken": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"idToken": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolPersonalizedOffersLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolPersonalizedOffersOffer": { | |
"properties": { | |
"discountPrice": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"expirationDate": { | |
"type": "string" | |
}, | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"offerId": { | |
"type": "string" | |
}, | |
"originalPrice": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"owned": { | |
"type": "boolean" | |
}, | |
"revealed": { | |
"type": "boolean" | |
}, | |
"spotIndex": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersOfferData": { | |
"properties": { | |
"offers": { | |
"items": { | |
"$ref": "#/definitions/LolPersonalizedOffersOffer" | |
}, | |
"type": "array" | |
}, | |
"promotion": { | |
"$ref": "#/definitions/LolPersonalizedOffersPromotion" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersOfferId": { | |
"properties": { | |
"offerId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersOfferIds": { | |
"properties": { | |
"offers": { | |
"items": { | |
"$ref": "#/definitions/LolPersonalizedOffersOfferId" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersOfferRequest": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"offerId": { | |
"type": "string" | |
}, | |
"price": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersOfferRequests": { | |
"properties": { | |
"offers": { | |
"items": { | |
"$ref": "#/definitions/LolPersonalizedOffersOfferRequest" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersPromotion": { | |
"properties": { | |
"endTime": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"startTime": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersPurchaseItem": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pricePaid": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersPurchaseResponse": { | |
"properties": { | |
"items": { | |
"items": { | |
"$ref": "#/definitions/LolPersonalizedOffersPurchaseItem" | |
}, | |
"type": "array" | |
}, | |
"wallet": { | |
"$ref": "#/definitions/LolPersonalizedOffersWallet" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersUIOffer": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"discountPrice": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"expirationDate": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"originalPrice": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"owned": { | |
"type": "boolean" | |
}, | |
"revealed": { | |
"type": "boolean" | |
}, | |
"skinId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"skinName": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersUIStatus": { | |
"properties": { | |
"endTime": { | |
"type": "string" | |
}, | |
"hubEnabled": { | |
"type": "boolean" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"startTime": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPersonalizedOffersWallet": { | |
"properties": { | |
"rp": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPftGameflowGameDodge": { | |
"properties": { | |
"dodgeIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolPftGameflowGameDodgeState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPftGameflowGameDodgeState": { | |
"enum": [ | |
"Invalid", | |
"PartyDodged", | |
"StrangerDodged", | |
"TournamentDodged" | |
], | |
"type": "string" | |
}, | |
"LolPftGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolPftGameflowSession": { | |
"properties": { | |
"gameDodge": { | |
"$ref": "#/definitions/LolPftGameflowGameDodge" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolPftGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPftLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"idToken": { | |
"type": "string" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolPftLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPftLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolPftPFTEndOfGamePlayer": { | |
"properties": { | |
"botPlayer": { | |
"type": "boolean" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"elo": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"eloChange": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isReportingDisabled": { | |
"type": "boolean" | |
}, | |
"items": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"leaver": { | |
"type": "boolean" | |
}, | |
"leaves": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"level": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"losses": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"skinName": { | |
"type": "string" | |
}, | |
"spell1Id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"spell2Id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"stats": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
}, | |
"teamId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"userId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"wins": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPftPFTEndOfGamePoints": { | |
"properties": { | |
"pointChangeFromChampionsOwned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pointChangeFromGameplay": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pointsUntilNextReroll": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pointsUsed": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"previousPoints": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rerollCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"totalPoints": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPftPFTEndOfGameStats": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"basePoints": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"battleBoostIpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"boostIpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"boostXpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"causedEarlySurrender": { | |
"type": "boolean" | |
}, | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"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" | |
}, | |
"isAramGame": { | |
"type": "boolean" | |
}, | |
"leveledUp": { | |
"type": "boolean" | |
}, | |
"loyaltyBoostIpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"loyaltyBoostXpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"myTeamStatus": { | |
"type": "string" | |
}, | |
"newSpells": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"odinBonusIp": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"partyRewardsBonusIpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pointsPenalties": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"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" | |
}, | |
"rerollData": { | |
"$ref": "#/definitions/LolPftPFTEndOfGamePoints" | |
}, | |
"roomName": { | |
"type": "string" | |
}, | |
"roomPassword": { | |
"type": "string" | |
}, | |
"rpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"sendStatsToTournamentProvider": { | |
"type": "boolean" | |
}, | |
"skinId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"skinIndex": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
}, | |
"talentPointsGained": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"teamEarlySurrendered": { | |
"type": "boolean" | |
}, | |
"teams": { | |
"items": { | |
"$ref": "#/definitions/LolPftPFTEndOfGameTeam" | |
}, | |
"type": "array" | |
}, | |
"timeUntilNextFirstWinBonus": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"userId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPftPFTEndOfGameTeam": { | |
"properties": { | |
"championBans": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"fullId": { | |
"type": "string" | |
}, | |
"isBottomTeam": { | |
"type": "boolean" | |
}, | |
"isPlayerTeam": { | |
"type": "boolean" | |
}, | |
"isWinningTeam": { | |
"type": "boolean" | |
}, | |
"memberStatusString": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"players": { | |
"items": { | |
"$ref": "#/definitions/LolPftPFTEndOfGamePlayer" | |
}, | |
"type": "array" | |
}, | |
"stats": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"tag": { | |
"type": "string" | |
}, | |
"teamId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPftPFTEvent": { | |
"properties": { | |
"action": { | |
"type": "string" | |
}, | |
"data": { | |
"items": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "array" | |
}, | |
"playerSurveyId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPftPFTMetadata": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"appName": { | |
"type": "string" | |
}, | |
"appVersion": { | |
"type": "string" | |
}, | |
"env": { | |
"type": "string" | |
}, | |
"locale": { | |
"type": "string" | |
}, | |
"stats": { | |
"$ref": "#/definitions/LolPftPFTEndOfGameStats" | |
}, | |
"systemOs": { | |
"type": "string" | |
}, | |
"webRegion": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPftPFTQuestionResponse": { | |
"properties": { | |
"questionId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"responseData": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPftPFTSurvey": { | |
"properties": { | |
"caption": { | |
"type": "string" | |
}, | |
"data": { | |
"additionalProperties": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "object" | |
}, | |
"display": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"title": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPftPFTSurveyResults": { | |
"properties": { | |
"actions": { | |
"items": { | |
"$ref": "#/definitions/LolPftPFTEvent" | |
}, | |
"type": "array" | |
}, | |
"questionResponses": { | |
"items": { | |
"$ref": "#/definitions/LolPftPFTQuestionResponse" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPftPFTSurveyV1": { | |
"properties": { | |
"caption": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"title": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
}, | |
"url": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerBehaviorBanNotification": { | |
"properties": { | |
"displayReformCard": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isPermaBan": { | |
"type": "boolean" | |
}, | |
"reason": { | |
"type": "string" | |
}, | |
"source": { | |
"$ref": "#/definitions/LolPlayerBehaviorNotificationSource" | |
}, | |
"timeUntilBanExpires": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerBehaviorGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolPlayerBehaviorNotificationSource": { | |
"enum": [ | |
"Invalid", | |
"Login", | |
"ForcedShutdown", | |
"Message" | |
], | |
"type": "string" | |
}, | |
"LolPlayerBehaviorPlayerBehaviorConfig": { | |
"properties": { | |
"IsLoaded": { | |
"type": "boolean" | |
}, | |
"ReformCardV2Enabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerBehaviorPlayerBehavior_GameflowSessionResource": { | |
"properties": { | |
"phase": { | |
"$ref": "#/definitions/LolPlayerBehaviorGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerBehaviorPlayerBehavior_LoginError": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"messageId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerBehaviorPlayerBehavior_LoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"error": { | |
"$ref": "#/definitions/LolPlayerBehaviorPlayerBehavior_LoginError" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolPlayerBehaviorPlayerBehavior_LoginSessionState" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerBehaviorPlayerBehavior_LoginSessionState": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolPlayerBehaviorPlayerBehavior_SimpleMessage": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"msgId": { | |
"type": "string" | |
}, | |
"params": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerBehaviorPlayerNotificationResource": { | |
"properties": { | |
"backgroundUrl": { | |
"type": "string" | |
}, | |
"created": { | |
"type": "string" | |
}, | |
"critical": { | |
"type": "boolean" | |
}, | |
"data": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"detailKey": { | |
"type": "string" | |
}, | |
"expires": { | |
"type": "string" | |
}, | |
"iconUrl": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"source": { | |
"type": "string" | |
}, | |
"state": { | |
"type": "string" | |
}, | |
"titleKey": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerBehaviorReformCard": { | |
"properties": { | |
"chatLogs": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"gameIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerFacingMessage": { | |
"type": "string" | |
}, | |
"punishmentLengthGames": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"punishmentLengthTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"punishmentType": { | |
"type": "string" | |
}, | |
"reason": { | |
"type": "string" | |
}, | |
"restrictedChatGamesRemaining": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"timeWhenPunishmentExpires": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerBehaviorReformCardChatLogs": { | |
"properties": { | |
"inGameChatLogs": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"postGameChatLogs": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"preGameChatLogs": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerBehaviorReformCardV2": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"playerFacingMessage": { | |
"type": "string" | |
}, | |
"punishedForGameIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"punishedForReformCardChatLogs": { | |
"items": { | |
"$ref": "#/definitions/LolPlayerBehaviorReformCardChatLogs" | |
}, | |
"type": "array" | |
}, | |
"punishedUntilDateMillis": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"punishmentLengthGames": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"punishmentLengthMillis": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"punishmentReason": { | |
"type": "string" | |
}, | |
"punishmentType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerBehaviorReporterFeedback": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerBehaviorRestrictionNotification": { | |
"properties": { | |
"displayReformCard": { | |
"type": "boolean" | |
}, | |
"gamesRemaining": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"source": { | |
"$ref": "#/definitions/LolPlayerBehaviorNotificationSource" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerLevelUpEndOfGameStats": { | |
"properties": { | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameMutators": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"gameType": { | |
"type": "string" | |
}, | |
"leveledUp": { | |
"type": "boolean" | |
}, | |
"newSpells": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"previousLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"queueType": { | |
"type": "string" | |
}, | |
"rpEarned": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerLevelUpGameDataSummonerSpell": { | |
"properties": { | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerLevelUpLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolPlayerLevelUpLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerLevelUpLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolPlayerLevelUpPlayerLevelUpEvent": { | |
"properties": { | |
"leveledUp": { | |
"type": "boolean" | |
}, | |
"newQueues": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"newRuneSlotUnlocked": { | |
"type": "boolean" | |
}, | |
"newSpells": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"newSummonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"nowHasAccessToLoot": { | |
"type": "boolean" | |
}, | |
"nowHasAccessToPublicChatRooms": { | |
"type": "boolean" | |
}, | |
"rpEarned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"switchedToStandardFreeToPlayChampRotation": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerLevelUpPlayerLevelUpEventAck": { | |
"properties": { | |
"newSummonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"seenThisEvent": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPlayerLevelUpQueue": { | |
"properties": { | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPreEndOfGameGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolPreEndOfGameGameflowSessionResource": { | |
"properties": { | |
"phase": { | |
"$ref": "#/definitions/LolPreEndOfGameGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPreEndOfGameSequenceEvent": { | |
"properties": { | |
"name": { | |
"type": "string" | |
}, | |
"priority": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceAccountSettingsCategoryDataResource": { | |
"properties": { | |
"autoJoin": { | |
"type": "boolean" | |
}, | |
"inputMode": { | |
"$ref": "#/definitions/LolPremadeVoiceInputMode" | |
}, | |
"muteOnConnect": { | |
"type": "boolean" | |
}, | |
"pushToTalkKey": { | |
"type": "string" | |
}, | |
"showFirstExperienceInGame": { | |
"type": "boolean" | |
}, | |
"showFirstExperienceInLCU": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceAccountSettingsCategoryResource": { | |
"properties": { | |
"data": { | |
"$ref": "#/definitions/LolPremadeVoiceAccountSettingsCategoryDataResource" | |
}, | |
"schemaVersion": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceAudioPropertiesResource": { | |
"properties": { | |
"isLoopbackEnabled": { | |
"type": "boolean" | |
}, | |
"micEnergy": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceDeviceResource": { | |
"properties": { | |
"handle": { | |
"type": "string" | |
}, | |
"is_current_device": { | |
"type": "boolean" | |
}, | |
"is_default": { | |
"type": "boolean" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"usable": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceEntitlementsToken": { | |
"properties": { | |
"entitlements": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceFirstExperience": { | |
"properties": { | |
"showFirstExperienceInGame": { | |
"type": "boolean" | |
}, | |
"showFirstExperienceInLCU": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceGameEventHotkeys": { | |
"properties": { | |
"evtPushToTalk": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceGameInputSettings": { | |
"properties": { | |
"GameEvents": { | |
"$ref": "#/definitions/LolPremadeVoiceGameEventHotkeys" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceGameflowGameClient": { | |
"properties": { | |
"running": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolPremadeVoiceGameflowSession": { | |
"properties": { | |
"gameClient": { | |
"$ref": "#/definitions/LolPremadeVoiceGameflowGameClient" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolPremadeVoiceGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceInputMode": { | |
"enum": [ | |
"voiceActivity", | |
"pushToTalk" | |
], | |
"type": "string" | |
}, | |
"LolPremadeVoiceLocalSettingsCategoryDataResource": { | |
"properties": { | |
"currentCaptureDeviceHandle": { | |
"type": "string" | |
}, | |
"inputVolume": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"vadSensitivity": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceLocalSettingsCategoryResource": { | |
"properties": { | |
"data": { | |
"$ref": "#/definitions/LolPremadeVoiceLocalSettingsCategoryDataResource" | |
}, | |
"schemaVersion": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceLoginSession": { | |
"properties": { | |
"connected": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceParticipantResource": { | |
"properties": { | |
"energy": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"isMuted": { | |
"type": "boolean" | |
}, | |
"isSpeaking": { | |
"type": "boolean" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"volume": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoicePartyDto": { | |
"properties": { | |
"partyId": { | |
"type": "string" | |
}, | |
"players": { | |
"additionalProperties": { | |
"$ref": "#/definitions/LolPremadeVoicePlayerDto" | |
}, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoicePartyMemberRoleEnum": { | |
"enum": [ | |
"LEADER", | |
"MEMBER", | |
"INVITED", | |
"HOLD", | |
"KICKED", | |
"DECLINED" | |
], | |
"type": "string" | |
}, | |
"LolPremadeVoicePlayerDto": { | |
"properties": { | |
"displayName": { | |
"type": "string" | |
}, | |
"partyId": { | |
"type": "string" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"role": { | |
"$ref": "#/definitions/LolPremadeVoicePartyMemberRoleEnum" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoicePremadeVoiceParticipantDto": { | |
"properties": { | |
"displayName": { | |
"type": "string" | |
}, | |
"energy": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isMuted": { | |
"type": "boolean" | |
}, | |
"isSpeaking": { | |
"type": "boolean" | |
}, | |
"participantId": { | |
"type": "string" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"volume": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoicePushToTalkResource": { | |
"properties": { | |
"pttEnabled": { | |
"type": "boolean" | |
}, | |
"pttKeyBinding": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceSessionResource": { | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"isMuted": { | |
"type": "boolean" | |
}, | |
"isTransmitEnabled": { | |
"type": "boolean" | |
}, | |
"participants": { | |
"items": { | |
"$ref": "#/definitions/LolPremadeVoiceParticipantResource" | |
}, | |
"type": "array" | |
}, | |
"status": { | |
"$ref": "#/definitions/LolPremadeVoiceSessionStatus" | |
}, | |
"volume": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceSessionStatus": { | |
"enum": [ | |
"active", | |
"onHold" | |
], | |
"type": "string" | |
}, | |
"LolPremadeVoiceSettingsResource": { | |
"properties": { | |
"autoJoin": { | |
"type": "boolean" | |
}, | |
"currentCaptureDeviceHandle": { | |
"type": "string" | |
}, | |
"inputMode": { | |
"$ref": "#/definitions/LolPremadeVoiceInputMode" | |
}, | |
"localMicMuted": { | |
"type": "boolean" | |
}, | |
"loopbackEnabled": { | |
"type": "boolean" | |
}, | |
"micLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"muteOnConnect": { | |
"type": "boolean" | |
}, | |
"pttActive": { | |
"type": "boolean" | |
}, | |
"pttKey": { | |
"type": "string" | |
}, | |
"vadActive": { | |
"type": "boolean" | |
}, | |
"vadHangoverTime": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"vadSensitivity": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceStateResource": { | |
"properties": { | |
"connected": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceSummoner": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"puuid": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPremadeVoiceVoiceAvailability": { | |
"properties": { | |
"connectedToVoiceServer": { | |
"type": "boolean" | |
}, | |
"disabledAfterLogin": { | |
"type": "boolean" | |
}, | |
"enabled": { | |
"type": "boolean" | |
}, | |
"showDisconnectedState": { | |
"type": "boolean" | |
}, | |
"showUI": { | |
"type": "boolean" | |
}, | |
"voiceChannelAvailable": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetBalance": { | |
"properties": { | |
"amount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"currencyType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetItemKey": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetItemPrice": { | |
"properties": { | |
"currencyType": { | |
"type": "string" | |
}, | |
"price": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"purchasable": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"idToken": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolPurchaseWidgetLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolPurchaseWidgetPurchaseItem": { | |
"properties": { | |
"itemKey": { | |
"$ref": "#/definitions/LolPurchaseWidgetItemKey" | |
}, | |
"purchaseCurrencyInfo": { | |
"$ref": "#/definitions/LolPurchaseWidgetItemPrice" | |
}, | |
"quantity": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"source": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetPurchaseRequest": { | |
"properties": { | |
"items": { | |
"items": { | |
"$ref": "#/definitions/LolPurchaseWidgetPurchaseItem" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetPurchaseResponse": { | |
"properties": { | |
"items": { | |
"items": { | |
"$ref": "#/definitions/LolPurchaseWidgetPurchaseItem" | |
}, | |
"type": "array" | |
}, | |
"transactions": { | |
"items": { | |
"$ref": "#/definitions/LolPurchaseWidgetTransaction" | |
}, | |
"type": "array" | |
}, | |
"wallet": { | |
"$ref": "#/definitions/LolPurchaseWidgetWallet" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetPurchaseWidgetConfig": { | |
"properties": { | |
"enabled": { | |
"type": "boolean" | |
}, | |
"purchaseDisclaimerEnabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetSale": { | |
"properties": { | |
"endDate": { | |
"type": "string" | |
}, | |
"prices": { | |
"items": { | |
"$ref": "#/definitions/LolPurchaseWidgetItemPrice" | |
}, | |
"type": "array" | |
}, | |
"startDate": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetTransaction": { | |
"properties": { | |
"iconUrl": { | |
"type": "string" | |
}, | |
"itemKey": { | |
"$ref": "#/definitions/LolPurchaseWidgetItemKey" | |
}, | |
"itemName": { | |
"type": "string" | |
}, | |
"transactionId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetValidationRequest": { | |
"properties": { | |
"items": { | |
"items": { | |
"$ref": "#/definitions/LolPurchaseWidgetValidationRequestItem" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetValidationRequestItem": { | |
"properties": { | |
"itemKey": { | |
"$ref": "#/definitions/LolPurchaseWidgetItemKey" | |
}, | |
"quantity": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetValidationResponse": { | |
"properties": { | |
"items": { | |
"items": { | |
"$ref": "#/definitions/LolPurchaseWidgetValidationResponseItem" | |
}, | |
"type": "array" | |
}, | |
"valid": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetValidationResponseItem": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"itemKey": { | |
"$ref": "#/definitions/LolPurchaseWidgetItemKey" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"prices": { | |
"items": { | |
"$ref": "#/definitions/LolPurchaseWidgetItemPrice" | |
}, | |
"type": "array" | |
}, | |
"quantity": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"sale": { | |
"$ref": "#/definitions/LolPurchaseWidgetSale" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolPurchaseWidgetWallet": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"balances": { | |
"items": { | |
"$ref": "#/definitions/LolPurchaseWidgetBalance" | |
}, | |
"type": "array" | |
}, | |
"version": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolQueueEligibilityChampionPlayableCountsForEligibility": { | |
"properties": { | |
"championsFreeToPlay": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championsFreeToPlayReward": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championsOwned": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"championsRented": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolQueueEligibilityCollectionsChampion": { | |
"properties": { | |
"disabledQueues": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"freeToPlay": { | |
"type": "boolean" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolQueueEligibilityCollectionsOwnership" | |
}, | |
"purchased": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rankedPlayEnabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolQueueEligibilityCollectionsOwnership": { | |
"properties": { | |
"freeToPlayReward": { | |
"type": "boolean" | |
}, | |
"owned": { | |
"type": "boolean" | |
}, | |
"rental": { | |
"$ref": "#/definitions/LolQueueEligibilityCollectionsRental" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolQueueEligibilityCollectionsPlayableChampionCounts": { | |
"properties": { | |
"championsOwned": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolQueueEligibilityCollectionsRental": { | |
"properties": { | |
"rented": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolQueueEligibilityEligibility": { | |
"properties": { | |
"eligible": { | |
"type": "boolean" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"restrictions": { | |
"items": { | |
"$ref": "#/definitions/LolQueueEligibilityEligibilityRestriction" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolQueueEligibilityEligibilityQueryParams": { | |
"properties": { | |
"queueIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"summonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolQueueEligibilityEligibilityRestriction": { | |
"properties": { | |
"expiredTimestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"restrictionArgs": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"restrictionCode": { | |
"$ref": "#/definitions/LolQueueEligibilityEligibilityRestrictionCode" | |
}, | |
"summonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolQueueEligibilityEligibilityRestrictionCode": { | |
"enum": [ | |
"QueueDisabled", | |
"QueueUnsupported", | |
"PlayerLevelRestriction", | |
"PlayerTimedRestriction", | |
"PlayerBannedRestriction", | |
"PlayerAvailableChampionRestriction", | |
"TeamDivisionRestriction", | |
"TeamMaxSizeRestriction", | |
"TeamMinSizeRestriction", | |
"PlayerBingeRestriction", | |
"PlayerDodgeRestriction", | |
"PlayerInGameRestriction", | |
"PlayerLeaverBustedRestriction", | |
"PlayerLeaverTaintedWarningRestriction", | |
"PlayerMaxLevelRestriction", | |
"PlayerMinLevelRestriction", | |
"PlayerMinorRestriction", | |
"PlayerRankedSuspensionRestriction", | |
"TeamHighMMRMaxSizeRestriction", | |
"TeamSizeRestriction", | |
"PrerequisiteQueuesNotPlayedRestriction", | |
"UnknownRestriction" | |
], | |
"type": "string" | |
}, | |
"LolQueueEligibilityLeague": { | |
"properties": { | |
"leagueTier": { | |
"type": "string" | |
}, | |
"queueType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolQueueEligibilityLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolQueueEligibilityLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolQueueEligibilityLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolQueueEligibilityQueue": { | |
"properties": { | |
"allowablePremadeSizes": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"areFreeChampionsAllowed": { | |
"type": "boolean" | |
}, | |
"championsRequiredToPlay": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isRanked": { | |
"type": "boolean" | |
}, | |
"maxLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"maximumParticipantListSize": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numPlayersPerTeam": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"queueAvailability": { | |
"$ref": "#/definitions/LolQueueEligibilityQueueAvailability" | |
}, | |
"showPositionSelector": { | |
"type": "boolean" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolQueueEligibilityQueueAvailability": { | |
"enum": [ | |
"Available", | |
"PlatformDisabled", | |
"DoesntMeetRequirements" | |
], | |
"type": "string" | |
}, | |
"LolQueueEligibilityQueueShutdownStatus": { | |
"properties": { | |
"isDisabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolQueueEligibilitySummonerSummoner": { | |
"properties": { | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRankedStatsLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolRankedStatsLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRankedStatsLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolRankedStatsPluginStatus": { | |
"properties": { | |
"ready": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRankedStatsRankedData": { | |
"properties": { | |
"rankedData": { | |
"items": { | |
"$ref": "#/definitions/LolRankedStatsRankedEntry" | |
}, | |
"type": "array" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRankedStatsRankedEntry": { | |
"properties": { | |
"apexDaysUntilDecay": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"division": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"games": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"isApexTier": { | |
"type": "boolean" | |
}, | |
"leagueName": { | |
"type": "string" | |
}, | |
"lp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rankedQueue": { | |
"$ref": "#/definitions/LolRankedStatsRankedQueue" | |
}, | |
"rankedTier": { | |
"$ref": "#/definitions/LolRankedStatsRankedTier" | |
}, | |
"wins": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRankedStatsRankedQueue": { | |
"enum": [ | |
"INVALID", | |
"RANKED_FLEX_TT", | |
"RANKED_FLEX_SR", | |
"RANKED_SOLO_5x5", | |
"RANKED_TEAM_3x3", | |
"RANKED_TEAM_5x5" | |
], | |
"type": "string" | |
}, | |
"LolRankedStatsRankedSummonerResource": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRankedStatsRankedTier": { | |
"enum": [ | |
"NOT_RANKED", | |
"PROVISIONAL", | |
"BRONZE", | |
"SILVER", | |
"GOLD", | |
"PLATINUM", | |
"DIAMOND", | |
"MASTER", | |
"CHALLENGER" | |
], | |
"type": "string" | |
}, | |
"LolRecommendationsAcsChampionGames": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"lane": { | |
"type": "string" | |
}, | |
"queue": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"role": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsAcsChampionGamesCollection": { | |
"properties": { | |
"champions": { | |
"items": { | |
"$ref": "#/definitions/LolRecommendationsAcsChampionGames" | |
}, | |
"type": "array" | |
}, | |
"gameCount": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsCatalogItem": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"itemRequirements": { | |
"items": { | |
"$ref": "#/definitions/LolRecommendationsItemKey" | |
}, | |
"type": "array" | |
}, | |
"maxQuantity": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"prices": { | |
"items": { | |
"$ref": "#/definitions/LolRecommendationsItemCost" | |
}, | |
"type": "array" | |
}, | |
"sale": { | |
"$ref": "#/definitions/LolRecommendationsSale" | |
}, | |
"tags": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsCollectionsChampionMinimal": { | |
"properties": { | |
"active": { | |
"type": "boolean" | |
}, | |
"alias": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolRecommendationsCollectionsOwnership" | |
}, | |
"purchased": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsCollectionsChampionSkinMinimal": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"disabled": { | |
"type": "boolean" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"isBase": { | |
"type": "boolean" | |
}, | |
"lastSelected": { | |
"type": "boolean" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"ownership": { | |
"$ref": "#/definitions/LolRecommendationsCollectionsOwnership" | |
}, | |
"stillObtainable": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsCollectionsOwnership": { | |
"properties": { | |
"freeToPlayReward": { | |
"type": "boolean" | |
}, | |
"owned": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsItemCost": { | |
"properties": { | |
"cost": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currency": { | |
"type": "string" | |
}, | |
"discount": { | |
"format": "float", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsItemKey": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsItemType": { | |
"enum": [ | |
"CHAMPION", | |
"CHAMPION_SKIN", | |
"BUNDLES", | |
"HEXTECH_CRAFTING", | |
"SUMMONER_ICON", | |
"WARD_SKIN", | |
"EMOTE" | |
], | |
"type": "string" | |
}, | |
"LolRecommendationsLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gasToken": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"idToken": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolRecommendationsLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolRecommendationsMatchHistoryGame": { | |
"properties": { | |
"gameCreation": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameCreationDate": { | |
"type": "string" | |
}, | |
"gameDuration": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameMode": { | |
"type": "string" | |
}, | |
"gameType": { | |
"type": "string" | |
}, | |
"gameVersion": { | |
"type": "string" | |
}, | |
"mapId": { | |
"type": "integer" | |
}, | |
"participantIdentities": { | |
"items": { | |
"$ref": "#/definitions/LolRecommendationsMatchHistoryParticipantIdentities" | |
}, | |
"type": "array" | |
}, | |
"participants": { | |
"items": { | |
"$ref": "#/definitions/LolRecommendationsMatchHistoryParticipant" | |
}, | |
"type": "array" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"seasonId": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsMatchHistoryGameList": { | |
"properties": { | |
"gameBeginDate": { | |
"type": "string" | |
}, | |
"gameCount": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameEndDate": { | |
"type": "string" | |
}, | |
"gameIndexBegin": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameIndexEnd": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"games": { | |
"items": { | |
"$ref": "#/definitions/LolRecommendationsMatchHistoryGame" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsMatchHistoryList": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"games": { | |
"$ref": "#/definitions/LolRecommendationsMatchHistoryGameList" | |
}, | |
"platformId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsMatchHistoryParticipant": { | |
"properties": { | |
"championId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"highestAchievedSeasonTier": { | |
"type": "string" | |
}, | |
"participantId": { | |
"type": "integer" | |
}, | |
"spell1Id": { | |
"type": "integer" | |
}, | |
"spell2Id": { | |
"type": "integer" | |
}, | |
"teamId": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsMatchHistoryParticipantIdentities": { | |
"properties": { | |
"participantId": { | |
"type": "integer" | |
}, | |
"player": { | |
"$ref": "#/definitions/LolRecommendationsMatchHistoryParticipantIdentityPlayer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsMatchHistoryParticipantIdentityPlayer": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currentAccountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currentPlatformId": { | |
"type": "string" | |
}, | |
"matchHistoryUri": { | |
"type": "string" | |
}, | |
"platformId": { | |
"type": "string" | |
}, | |
"profileIcon": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsRecommendation": { | |
"properties": { | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"itemType": { | |
"$ref": "#/definitions/LolRecommendationsItemType" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsRecommendationsCollection": { | |
"properties": { | |
"recommendations": { | |
"items": { | |
"$ref": "#/definitions/LolRecommendationsRecommendation" | |
}, | |
"type": "array" | |
}, | |
"uuid": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolRecommendationsSale": { | |
"properties": { | |
"endDate": { | |
"type": "string" | |
}, | |
"prices": { | |
"items": { | |
"$ref": "#/definitions/LolRecommendationsItemCost" | |
}, | |
"type": "array" | |
}, | |
"startDate": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolReplaysClashPlaymodeRestrictedInfo": { | |
"properties": { | |
"isRestricted": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolReplaysGameflowAvailability": { | |
"properties": { | |
"state": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolReplaysGameflowGameClient": { | |
"properties": { | |
"running": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolReplaysGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolReplaysGameflowSession": { | |
"properties": { | |
"gameClient": { | |
"$ref": "#/definitions/LolReplaysGameflowGameClient" | |
}, | |
"phase": { | |
"$ref": "#/definitions/LolReplaysGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolReplaysGameflowWatchPhase": { | |
"enum": [ | |
"None", | |
"WatchStarted", | |
"WatchInProgress", | |
"WatchFailedToLaunch" | |
], | |
"type": "string" | |
}, | |
"LolReplaysMetadataState": { | |
"enum": [ | |
"checking", | |
"found", | |
"watch", | |
"download", | |
"downloading", | |
"incompatible", | |
"missingOrExpired", | |
"retryDownload", | |
"lost", | |
"unsupported", | |
"error" | |
], | |
"type": "string" | |
}, | |
"LolReplaysReplayContextData": { | |
"properties": { | |
"componentType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolReplaysReplayCreateMetadata": { | |
"properties": { | |
"gameEnd": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gameType": { | |
"type": "string" | |
}, | |
"gameVersion": { | |
"type": "string" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolReplaysReplayMetadata": { | |
"properties": { | |
"downloadProgress": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolReplaysMetadataState" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolReplaysReplaysConfiguration": { | |
"properties": { | |
"gameVersion": { | |
"type": "string" | |
}, | |
"isInTournament": { | |
"type": "boolean" | |
}, | |
"isLoggedIn": { | |
"type": "boolean" | |
}, | |
"isPatching": { | |
"type": "boolean" | |
}, | |
"isPlayingGame": { | |
"type": "boolean" | |
}, | |
"isPlayingReplay": { | |
"type": "boolean" | |
}, | |
"isReplaysEnabled": { | |
"type": "boolean" | |
}, | |
"isReplaysForEndOfGameEnabled": { | |
"type": "boolean" | |
}, | |
"isReplaysForMatchHistoryEnabled": { | |
"type": "boolean" | |
}, | |
"minServerVersion": { | |
"type": "string" | |
}, | |
"minutesUntilReplayConsideredLost": { | |
"format": "double", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolReplaysReplaysDynamicConfig": { | |
"properties": { | |
"MinSupportedGameServerVersion": { | |
"type": "string" | |
}, | |
"MinutesUntilReplayConsideredLost": { | |
"format": "double", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolReplaysReplaysSettingsData": { | |
"properties": { | |
"highlights-folder-path": { | |
"type": "string" | |
}, | |
"replays-folder-path": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolReplaysReplaysSettingsResource": { | |
"properties": { | |
"data": { | |
"$ref": "#/definitions/LolReplaysReplaysSettingsData" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolReplaysRoflFileMetadata": { | |
"properties": { | |
"gameLength": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gameVersion": { | |
"type": "string" | |
}, | |
"lastGameChunkId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"lastKeyFrameId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSettingsLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gasToken": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolSettingsLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSettingsLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolSettingsSettingCategory": { | |
"properties": { | |
"data": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"schemaVersion": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSimpleDialogMessagesGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolSimpleDialogMessagesGameflowSession": { | |
"properties": { | |
"phase": { | |
"$ref": "#/definitions/LolSimpleDialogMessagesGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSimpleDialogMessagesLocalMessageRequest": { | |
"properties": { | |
"msgBody": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"msgType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSimpleDialogMessagesLoginDataPacket": { | |
"properties": { | |
"simpleMessages": { | |
"items": { | |
"$ref": "#/definitions/LolSimpleDialogMessagesSimpleMessage" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSimpleDialogMessagesMessage": { | |
"properties": { | |
"body": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSimpleDialogMessagesSimpleMessage": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"msgId": { | |
"type": "string" | |
}, | |
"params": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreAllSummonerData": { | |
"properties": { | |
"summoner": { | |
"$ref": "#/definitions/LolStoreSummoner" | |
}, | |
"summonerLevelAndPoints": { | |
"$ref": "#/definitions/LolStoreSummonerLevelAndPoints" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreBundleItemDTO": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"discountedRp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"iconUrl": { | |
"type": "string" | |
}, | |
"inventoryType": { | |
"type": "string" | |
}, | |
"ip": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
}, | |
"owned": { | |
"type": "boolean" | |
}, | |
"quantity": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rp": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreBundled": { | |
"properties": { | |
"flexible": { | |
"type": "boolean" | |
}, | |
"items": { | |
"items": { | |
"$ref": "#/definitions/LolStoreBundledItem" | |
}, | |
"type": "array" | |
}, | |
"minimumPrices": { | |
"items": { | |
"$ref": "#/definitions/LolStoreBundledItemCost" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreBundledItem": { | |
"properties": { | |
"discountPrices": { | |
"items": { | |
"$ref": "#/definitions/LolStoreBundledItemCost" | |
}, | |
"type": "array" | |
}, | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"quantity": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreBundledItemCost": { | |
"properties": { | |
"cost": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"costType": { | |
"type": "string" | |
}, | |
"currency": { | |
"type": "string" | |
}, | |
"discount": { | |
"format": "float", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreCatalogItem": { | |
"properties": { | |
"active": { | |
"type": "boolean" | |
}, | |
"bundled": { | |
"$ref": "#/definitions/LolStoreBundled" | |
}, | |
"iconUrl": { | |
"type": "string" | |
}, | |
"inactiveDate": { | |
"type": "string" | |
}, | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"itemInstanceId": { | |
"type": "string" | |
}, | |
"itemRequirements": { | |
"items": { | |
"$ref": "#/definitions/LolStoreItemKey" | |
}, | |
"type": "array" | |
}, | |
"localizations": { | |
"additionalProperties": { | |
"$ref": "#/definitions/LolStoreItemLocalization" | |
}, | |
"type": "object" | |
}, | |
"maxQuantity": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"prices": { | |
"items": { | |
"$ref": "#/definitions/LolStoreItemCost" | |
}, | |
"type": "array" | |
}, | |
"releaseDate": { | |
"type": "string" | |
}, | |
"sale": { | |
"$ref": "#/definitions/LolStoreSale" | |
}, | |
"subInventoryType": { | |
"type": "string" | |
}, | |
"tags": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreItemCost": { | |
"properties": { | |
"cost": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currency": { | |
"type": "string" | |
}, | |
"discount": { | |
"format": "float", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreItemKey": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreItemLocalization": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"language": { | |
"type": "string" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreLoginDataPacket": { | |
"properties": { | |
"allSummonerData": { | |
"$ref": "#/definitions/LolStoreAllSummonerData" | |
}, | |
"simpleMessages": { | |
"items": { | |
"$ref": "#/definitions/LolStoreSimpleDialogMessage" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"gasToken": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"idToken": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolStoreLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolStoreNotification": { | |
"properties": { | |
"backgroundUrl": { | |
"type": "string" | |
}, | |
"created": { | |
"type": "string" | |
}, | |
"critical": { | |
"type": "boolean" | |
}, | |
"data": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"detailKey": { | |
"type": "string" | |
}, | |
"dismissible": { | |
"type": "boolean" | |
}, | |
"expires": { | |
"type": "string" | |
}, | |
"iconUrl": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"source": { | |
"type": "string" | |
}, | |
"state": { | |
"type": "string" | |
}, | |
"titleKey": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreOrderNotificationResource": { | |
"properties": { | |
"eventType": { | |
"type": "string" | |
}, | |
"eventTypeId": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"status": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStorePageDTO": { | |
"properties": { | |
"Player": { | |
"$ref": "#/definitions/LolStorePlayer" | |
}, | |
"catalog": { | |
"items": { | |
"$ref": "#/definitions/LolStoreCatalogItem" | |
}, | |
"type": "array" | |
}, | |
"groupOrder": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"itemGroups": { | |
"additionalProperties": { | |
"$ref": "#/definitions/LolStorePageGroupingDTO" | |
}, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStorePageGroupingDTO": { | |
"properties": { | |
"grouped": { | |
"type": "boolean" | |
}, | |
"hidden": { | |
"type": "boolean" | |
}, | |
"items": { | |
"items": { | |
"$ref": "#/definitions/LolStoreItemKey" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStorePlayer": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"ip": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreRiotMessagingServiceMessage": { | |
"properties": { | |
"payload": { | |
"type": "string" | |
}, | |
"resource": { | |
"type": "string" | |
}, | |
"service": { | |
"type": "string" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"version": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreSale": { | |
"properties": { | |
"endDate": { | |
"type": "string" | |
}, | |
"prices": { | |
"items": { | |
"$ref": "#/definitions/LolStoreItemCost" | |
}, | |
"type": "array" | |
}, | |
"startDate": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreServiceBalance": { | |
"properties": { | |
"amount": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"currency": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreServiceWallet": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"balances": { | |
"items": { | |
"$ref": "#/definitions/LolStoreServiceBalance" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreSimpleDialogMessage": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"msgId": { | |
"type": "string" | |
}, | |
"params": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreSummoner": { | |
"properties": { | |
"acctId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"sumId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreSummonerLevelAndPoints": { | |
"properties": { | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolStoreWallet": { | |
"properties": { | |
"ip": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rp": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersEndOfGamePlayer": { | |
"properties": { | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersEndOfGameStats": { | |
"properties": { | |
"teams": { | |
"items": { | |
"$ref": "#/definitions/LolSuggestedPlayersEndOfGameTeam" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersEndOfGameTeam": { | |
"properties": { | |
"isWinningTeam": { | |
"type": "boolean" | |
}, | |
"players": { | |
"items": { | |
"$ref": "#/definitions/LolSuggestedPlayersEndOfGamePlayer" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersSuggestedPlayersConfig": { | |
"properties": { | |
"Enabled": { | |
"type": "boolean" | |
}, | |
"FriendsOfFriendsEnabled": { | |
"type": "boolean" | |
}, | |
"FriendsOfFriendsLimit": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"MaxNumReplacements": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"MaxNumSuggestedPlayers": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"OnlineFriendsLimit": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"PreviousPremadesLimit": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"VicoriousComradesLimit": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersSuggestedPlayersDynamicClientConfig": { | |
"properties": { | |
"SuggestedPlayers": { | |
"$ref": "#/definitions/LolSuggestedPlayersSuggestedPlayersConfig" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersSuggestedPlayersFriend": { | |
"properties": { | |
"availability": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersSuggestedPlayersKudoedPlayer": { | |
"properties": { | |
"kudoedSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"kudoedSummonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersSuggestedPlayersLobbyStatus": { | |
"properties": { | |
"invitedSummonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"memberSummonerIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersSuggestedPlayersPlayerStatus": { | |
"properties": { | |
"currentLobbyStatus": { | |
"$ref": "#/definitions/LolSuggestedPlayersSuggestedPlayersLobbyStatus" | |
}, | |
"lastQueuedLobbyStatus": { | |
"$ref": "#/definitions/LolSuggestedPlayersSuggestedPlayersLobbyStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersSuggestedPlayersQueue": { | |
"properties": { | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"minLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersSuggestedPlayersReason": { | |
"enum": [ | |
"PreviousPremade", | |
"OnlineFriend", | |
"FriendOfFriend", | |
"VictoriousComrade", | |
"LegacyPlayAgain" | |
], | |
"type": "string" | |
}, | |
"LolSuggestedPlayersSuggestedPlayersReportedPlayer": { | |
"properties": { | |
"reportedSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersSuggestedPlayersSuggestedPlayer": { | |
"properties": { | |
"commonFriendId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"commonFriendName": { | |
"type": "string" | |
}, | |
"reason": { | |
"$ref": "#/definitions/LolSuggestedPlayersSuggestedPlayersReason" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersSuggestedPlayersSummoner": { | |
"properties": { | |
"displayName": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSuggestedPlayersSuggestedPlayersVictoriousComrade": { | |
"properties": { | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerAutoFillDto": { | |
"properties": { | |
"autoFillQueues": { | |
"items": { | |
"$ref": "#/definitions/LolSummonerAutoFillQueueDto" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerAutoFillQueueDto": { | |
"properties": { | |
"autoFillEligible": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForPromos": { | |
"type": "boolean" | |
}, | |
"autoFillProtectedForStreaking": { | |
"type": "boolean" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerGameloopPlayerInfoV1": { | |
"properties": { | |
"autoFillDataBagByQueueId": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"rerollDataBag": { | |
"$ref": "#/definitions/LolSummonerRerollDataBagForClientV1" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerInternalSummoner": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"advancedTutorialFlag": { | |
"type": "boolean" | |
}, | |
"displayEloQuestionaireFlag": { | |
"type": "boolean" | |
}, | |
"displayName": { | |
"type": "string" | |
}, | |
"helpFlag": { | |
"type": "boolean" | |
}, | |
"internalName": { | |
"type": "string" | |
}, | |
"lastSeasonHighestRank": { | |
"type": "string" | |
}, | |
"nameChangeFlag": { | |
"type": "boolean" | |
}, | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"tutorialFlag": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerLoginSession": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"connected": { | |
"type": "boolean" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"state": { | |
"$ref": "#/definitions/LolSummonerLoginSessionStates" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerLoginSessionStates": { | |
"enum": [ | |
"IN_PROGRESS", | |
"SUCCEEDED", | |
"LOGGING_OUT", | |
"ERROR" | |
], | |
"type": "string" | |
}, | |
"LolSummonerRMSLevelField": { | |
"properties": { | |
"finalLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"initialLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"progress": { | |
"$ref": "#/definitions/LolSummonerRMSLevelProgression" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerRMSLevelProgression": { | |
"properties": { | |
"finalLevelBoundary": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"finalXp": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"initialLevelBoundary": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"initialXp": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerRMSMessage": { | |
"properties": { | |
"payload": { | |
"type": "string" | |
}, | |
"timestamp": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerRMSXpAndLevelMessage": { | |
"properties": { | |
"level": { | |
"$ref": "#/definitions/LolSummonerRMSLevelField" | |
}, | |
"xp": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerRerollDataBagForClientV1": { | |
"properties": { | |
"maximumRerolls": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pointCostOfReroll": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"pointsGainedLastGame": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"pointsUntilNextReroll": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"queueId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"rerollCount": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"totalPoints": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerSummoner": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"displayName": { | |
"type": "string" | |
}, | |
"internalName": { | |
"type": "string" | |
}, | |
"lastSeasonHighestRank": { | |
"type": "string" | |
}, | |
"percentCompleteForNextLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"puuid": { | |
"type": "string" | |
}, | |
"rerollPoints": { | |
"$ref": "#/definitions/LolSummonerSummonerRerollPoints" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"summonerLevel": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"xpSinceLastLevel": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"xpUntilNextLevel": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerSummonerCreatedId": { | |
"properties": { | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerSummonerIcon": { | |
"properties": { | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerSummonerIdAndIcon": { | |
"properties": { | |
"profileIconId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerSummonerIdAndName": { | |
"properties": { | |
"displayName": { | |
"type": "string" | |
}, | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerSummonerProfileUpdate": { | |
"properties": { | |
"inventory": { | |
"type": "string" | |
}, | |
"key": { | |
"type": "string" | |
}, | |
"value": { | |
"additionalProperties": true, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerSummonerRequestedName": { | |
"properties": { | |
"name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolSummonerSummonerRerollPoints": { | |
"properties": { | |
"currentPoints": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"maxRolls": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"numberOfRolls": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pointsCostToRoll": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"pointsToReroll": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolTrophiesCapClashTrophyEntitlementPayload": { | |
"properties": { | |
"rewardSpec": { | |
"$ref": "#/definitions/LolTrophiesClashV2TrophyRewardSpec" | |
}, | |
"rewardType": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolTrophiesClashV2TrophyRewardSpec": { | |
"properties": { | |
"bracket": { | |
"type": "string" | |
}, | |
"seasonId": { | |
"type": "string" | |
}, | |
"theme": { | |
"type": "string" | |
}, | |
"tier": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolTrophiesInventoryItemsByType": { | |
"properties": { | |
"TOURNAMENT_TROPHY": { | |
"items": { | |
"$ref": "#/definitions/LolTrophiesTournamentTrophyInventoryItem" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolTrophiesInventoryResponse": { | |
"properties": { | |
"items": { | |
"$ref": "#/definitions/LolTrophiesInventoryItemsByType" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolTrophiesOtherPlayerTrophyInventoryItem": { | |
"properties": { | |
"inventoryType": { | |
"type": "string" | |
}, | |
"itemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"payload": { | |
"$ref": "#/definitions/LolTrophiesCapClashTrophyEntitlementPayload" | |
}, | |
"purchaseDate": { | |
"type": "string" | |
}, | |
"uuid": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolTrophiesTournamentTrophyInventoryItem": { | |
"properties": { | |
"payload": { | |
"$ref": "#/definitions/LolTrophiesCapClashTrophyEntitlementPayload" | |
}, | |
"purchaseDate": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolTrophiesTrophyProfileData": { | |
"properties": { | |
"bracket": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"seasonId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"theme": { | |
"type": "string" | |
}, | |
"tier": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LolUserExperienceGameflowPhase": { | |
"enum": [ | |
"None", | |
"Lobby", | |
"Matchmaking", | |
"CheckedIntoTournament", | |
"ReadyCheck", | |
"ChampSelect", | |
"GameStart", | |
"FailedToLaunch", | |
"InProgress", | |
"Reconnect", | |
"WaitingForStats", | |
"PreEndOfGame", | |
"EndOfGame", | |
"TerminatedInError" | |
], | |
"type": "string" | |
}, | |
"LolUserExperienceGameflowSession": { | |
"properties": { | |
"phase": { | |
"$ref": "#/definitions/LolUserExperienceGameflowPhase" | |
} | |
}, | |
"type": "object" | |
}, | |
"LootItemClientDTO": { | |
"properties": { | |
"asset": { | |
"type": "string" | |
}, | |
"displayCategories": { | |
"type": "string" | |
}, | |
"expiryTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lootName": { | |
"type": "string" | |
}, | |
"rarity": { | |
"type": "string" | |
}, | |
"rentalGames": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"rentalSeconds": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"storeItemId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"tags": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
}, | |
"upgradeLootName": { | |
"type": "string" | |
}, | |
"value": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LootItemListClientDTO": { | |
"properties": { | |
"lastUpdate": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"lootItems": { | |
"items": { | |
"$ref": "#/definitions/LootItemClientDTO" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LootLcdsClientConfigurationDTO": { | |
"properties": { | |
"currenciesUsingCapWallets": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"lootItemsUsingBreakoutRecipeMenu": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"lootMaterialsToAlwaysRender": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LootLcdsLootDescriptionDTO": { | |
"properties": { | |
"childLootTableNames": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"localizationLongDescriptionMap": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"localizationMap": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"lootName": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LootLcdsRecipeClientDTO": { | |
"properties": { | |
"crafterName": { | |
"type": "string" | |
}, | |
"displayCategories": { | |
"type": "string" | |
}, | |
"metadata": { | |
"$ref": "#/definitions/LootLcdsRecipeMetadata" | |
}, | |
"outputs": { | |
"items": { | |
"$ref": "#/definitions/LootLcdsRecipeOutputDTO" | |
}, | |
"type": "array" | |
}, | |
"recipeName": { | |
"type": "string" | |
}, | |
"slots": { | |
"items": { | |
"$ref": "#/definitions/LootLcdsRecipeSlotClientDTO" | |
}, | |
"type": "array" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LootLcdsRecipeListClientDTO": { | |
"properties": { | |
"lastUpdate": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"recipes": { | |
"items": { | |
"$ref": "#/definitions/LootLcdsRecipeClientDTO" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"LootLcdsRecipeMetadata": { | |
"properties": { | |
"bonusDescriptions": { | |
"items": { | |
"$ref": "#/definitions/LootLcdsLootDescriptionDTO" | |
}, | |
"type": "array" | |
}, | |
"guaranteedDescriptions": { | |
"items": { | |
"$ref": "#/definitions/LootLcdsLootDescriptionDTO" | |
}, | |
"type": "array" | |
}, | |
"tooltipsDisabled": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"LootLcdsRecipeOutputDTO": { | |
"properties": { | |
"allowDuplicates": { | |
"type": "boolean" | |
}, | |
"lootName": { | |
"type": "string" | |
}, | |
"probability": { | |
"format": "double", | |
"type": "number" | |
}, | |
"quantityExpression": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LootLcdsRecipeSlotClientDTO": { | |
"properties": { | |
"quantityExpression": { | |
"type": "string" | |
}, | |
"query": { | |
"type": "string" | |
}, | |
"slotNumber": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"LootNameRefId": { | |
"properties": { | |
"lootName": { | |
"type": "string" | |
}, | |
"refId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"LootSimpleDialogMessageResponse": { | |
"properties": { | |
"accountId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"command": { | |
"type": "string" | |
}, | |
"msgId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsBustedLeaver": { | |
"properties": { | |
"accessToken": { | |
"type": "string" | |
}, | |
"leaverPenaltyMillisRemaining": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"reasonFailed": { | |
"type": "string" | |
}, | |
"summoner": { | |
"$ref": "#/definitions/MatchmakingLcdsSummoner" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsFailedJoinPlayer": { | |
"properties": { | |
"reasonFailed": { | |
"type": "string" | |
}, | |
"summoner": { | |
"$ref": "#/definitions/MatchmakingLcdsSummoner" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsGameDTO": { | |
"properties": { | |
"gameState": { | |
"type": "string" | |
}, | |
"statusOfParticipants": { | |
"type": "string" | |
}, | |
"teamOne": { | |
"items": { | |
"$ref": "#/definitions/MatchmakingLcdsPlayerParticipant" | |
}, | |
"type": "array" | |
}, | |
"teamTwo": { | |
"items": { | |
"$ref": "#/definitions/MatchmakingLcdsPlayerParticipant" | |
}, | |
"type": "array" | |
}, | |
"terminatedCondition": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsGameNotification": { | |
"properties": { | |
"messageArgument": { | |
"type": "string" | |
}, | |
"messageCode": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsMatchMakerParams": { | |
"properties": { | |
"botDifficulty": { | |
"type": "string" | |
}, | |
"invitationId": { | |
"type": "string" | |
}, | |
"languages": { | |
"type": "string" | |
}, | |
"lastMaestroMessage": { | |
"type": "string" | |
}, | |
"queueIds": { | |
"items": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"team": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"teamId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsMatchMakerPayload": { | |
"properties": { | |
"LEAVER_BUSTER_ACCESS_TOKEN": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsPlayerParticipant": { | |
"properties": { | |
"summonerId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsQueueDisabled": { | |
"properties": { | |
"message": { | |
"type": "string" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"reasonFailed": { | |
"type": "string" | |
}, | |
"summoner": { | |
"$ref": "#/definitions/MatchmakingLcdsSummoner" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsQueueDodger": { | |
"properties": { | |
"dodgePenaltyRemainingTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"reasonFailed": { | |
"type": "string" | |
}, | |
"summoner": { | |
"$ref": "#/definitions/MatchmakingLcdsSummoner" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsQueueInfo": { | |
"properties": { | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"waitTime": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsQueueRestricted": { | |
"properties": { | |
"message": { | |
"type": "string" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"reasonFailed": { | |
"type": "string" | |
}, | |
"summoner": { | |
"$ref": "#/definitions/MatchmakingLcdsSummoner" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsQueueThrottled": { | |
"properties": { | |
"message": { | |
"type": "string" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"reasonFailed": { | |
"type": "string" | |
}, | |
"summoner": { | |
"$ref": "#/definitions/MatchmakingLcdsSummoner" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsSearchingForMatchNotification": { | |
"properties": { | |
"joinedQueues": { | |
"items": { | |
"$ref": "#/definitions/MatchmakingLcdsQueueInfo" | |
}, | |
"type": "array" | |
}, | |
"playerJoinFailures": { | |
"items": { | |
"additionalProperties": true, | |
"type": "object" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingLcdsSummoner": { | |
"properties": { | |
"name": { | |
"type": "string" | |
}, | |
"sumId": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingSearchErrorResource": { | |
"properties": { | |
"errorType": { | |
"type": "string" | |
}, | |
"id": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"message": { | |
"type": "string" | |
}, | |
"penalizedSummonerId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"penaltyTimeRemaining": { | |
"format": "double", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"MatchmakingSearchResource": { | |
"properties": { | |
"errors": { | |
"items": { | |
"$ref": "#/definitions/MatchmakingSearchErrorResource" | |
}, | |
"type": "array" | |
}, | |
"queueId": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"MetricDataType": { | |
"enum": [ | |
"unknown", | |
"int", | |
"uint", | |
"float", | |
"bool", | |
"string" | |
], | |
"type": "string" | |
}, | |
"MetricMetadata": { | |
"properties": { | |
"alerts": { | |
"items": { | |
"$ref": "#/definitions/MetricMetadataAlert" | |
}, | |
"type": "array" | |
}, | |
"category": { | |
"type": "string" | |
}, | |
"data_type": { | |
"$ref": "#/definitions/MetricDataType" | |
}, | |
"description": { | |
"type": "string" | |
}, | |
"destination": { | |
"type": "string" | |
}, | |
"info": { | |
"type": "string" | |
}, | |
"notify": { | |
"$ref": "#/definitions/MetricMetadataNotify" | |
}, | |
"period": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"pretty_name": { | |
"type": "string" | |
}, | |
"priority": { | |
"$ref": "#/definitions/MetricPriority" | |
}, | |
"sample_window_ms": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"transientAggregation": { | |
"$ref": "#/definitions/AggregationType" | |
}, | |
"type": { | |
"$ref": "#/definitions/MetricType" | |
}, | |
"units": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"MetricMetadataAlert": { | |
"properties": { | |
"description": { | |
"type": "string" | |
}, | |
"info": { | |
"type": "string" | |
}, | |
"level": { | |
"type": "string" | |
}, | |
"max": { | |
"format": "double", | |
"type": "number" | |
}, | |
"min": { | |
"format": "double", | |
"type": "number" | |
}, | |
"notify": { | |
"$ref": "#/definitions/MetricMetadataNotify" | |
}, | |
"pretty_name": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"MetricMetadataHipchatNotification": { | |
"properties": { | |
"roomid": { | |
"type": "string" | |
}, | |
"tags": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"MetricMetadataNotify": { | |
"properties": { | |
"email": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"hipchat": { | |
"items": { | |
"$ref": "#/definitions/MetricMetadataHipchatNotification" | |
}, | |
"type": "array" | |
}, | |
"pagerduty": { | |
"items": { | |
"$ref": "#/definitions/MetricMetadataPagerDutyNotification" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"MetricMetadataPagerDutyNotification": { | |
"properties": { | |
"apikey": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"MetricPriority": { | |
"enum": [ | |
"low", | |
"medium", | |
"high" | |
], | |
"type": "string" | |
}, | |
"MetricType": { | |
"enum": [ | |
"unknown", | |
"percentage", | |
"count", | |
"duration", | |
"rate" | |
], | |
"type": "string" | |
}, | |
"MissionAlertDTO": { | |
"properties": { | |
"alertTime": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"message": { | |
"type": "string" | |
}, | |
"type": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"MissionMetadata": { | |
"properties": { | |
"tutorial": { | |
"$ref": "#/definitions/TutorialMetadata" | |
} | |
}, | |
"type": "object" | |
}, | |
"MissionProgressDTO": { | |
"properties": { | |
"currentProgress": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"lastViewedProgress": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"totalCount": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"MissionRequirementDTO": { | |
"properties": { | |
"expression": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"MissionRewardMediaDTO": { | |
"properties": { | |
"intro": { | |
"$ref": "#/definitions/MissionRewardMediaItemDTO" | |
}, | |
"loop": { | |
"$ref": "#/definitions/MissionRewardMediaItemDTO" | |
}, | |
"outro": { | |
"$ref": "#/definitions/MissionRewardMediaItemDTO" | |
} | |
}, | |
"type": "object" | |
}, | |
"MissionRewardMediaItemDTO": { | |
"properties": { | |
"sound": { | |
"type": "string" | |
}, | |
"video": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"MultipleReplayMetadataRequestV2": { | |
"properties": { | |
"gameIds": { | |
"items": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"type": "array" | |
}, | |
"platformId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"MultipleReplayMetadataResponseItemV2": { | |
"properties": { | |
"gameId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"metadata": { | |
"$ref": "#/definitions/ReplayMetadataV2" | |
}, | |
"status": { | |
"$ref": "#/definitions/ReplayResponseStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"MultipleReplayMetadataResponseV2": { | |
"properties": { | |
"metadataResponses": { | |
"items": { | |
"$ref": "#/definitions/MultipleReplayMetadataResponseItemV2" | |
}, | |
"type": "array" | |
} | |
}, | |
"type": "object" | |
}, | |
"NetworkTestingGameLatencyExperimentResult": { | |
"properties": { | |
"latency": { | |
"format": "double", | |
"type": "number" | |
}, | |
"server": { | |
"type": "string" | |
}, | |
"size": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"NetworkTestingGameLatencyExperimentResults": { | |
"properties": { | |
"results": { | |
"items": { | |
"$ref": "#/definitions/NetworkTestingGameLatencyExperimentResult" | |
}, | |
"type": "array" | |
}, | |
"timestamp": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"NetworkTestingNetworkExperimentResource": { | |
"properties": { | |
"status": { | |
"$ref": "#/definitions/NetworkTestingNetworkExperimentStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"NetworkTestingNetworkExperimentStatus": { | |
"enum": [ | |
"Disabled", | |
"Skipped", | |
"InProgress", | |
"Completed" | |
], | |
"type": "string" | |
}, | |
"NetworkTestingNetworkExperimentsResource": { | |
"properties": { | |
"experiments": { | |
"additionalProperties": { | |
"$ref": "#/definitions/NetworkTestingNetworkExperimentResource" | |
}, | |
"type": "object" | |
} | |
}, | |
"type": "object" | |
}, | |
"NetworkTestingNetworkTestingDynamicConfig": { | |
"properties": { | |
"GameLatencyProbability": { | |
"format": "double", | |
"type": "number" | |
}, | |
"GameLatencyProbeCount": { | |
"type": "integer" | |
}, | |
"GameLatencyProbePort": { | |
"type": "integer" | |
}, | |
"GameLatencyProbeServers": { | |
"type": "string" | |
}, | |
"GameLatencyProbeSize": { | |
"type": "integer" | |
}, | |
"GameLatencyTimeoutSecs": { | |
"format": "double", | |
"type": "number" | |
}, | |
"IPv4OptionsProbability": { | |
"format": "double", | |
"type": "number" | |
}, | |
"IPv4OptionsProbeCount": { | |
"type": "integer" | |
}, | |
"IPv4OptionsProbePort": { | |
"type": "integer" | |
}, | |
"IPv4OptionsProbeServers": { | |
"type": "string" | |
}, | |
"IPv6SupportProbability": { | |
"format": "double", | |
"type": "number" | |
}, | |
"IPv6SupportProbeCount": { | |
"type": "integer" | |
}, | |
"IPv6SupportProbePort": { | |
"type": "integer" | |
}, | |
"IPv6SupportProbeServers": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"PartiesVoiceDTO": { | |
"properties": { | |
"jwt": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatchConfiguration": { | |
"properties": { | |
"cache_path": { | |
"type": "string" | |
}, | |
"cache_size": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatchError": { | |
"properties": { | |
"code": { | |
"$ref": "#/definitions/PatchErrorCode" | |
}, | |
"message": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatchErrorCode": { | |
"enum": [ | |
"Unspecified", | |
"Cancelled", | |
"NotEnoughDiskSpace", | |
"AccessDenied", | |
"FileNotFound", | |
"DownloaderConnection", | |
"DownloaderClientError", | |
"DownloaderServerError", | |
"DownloaderAuthorization", | |
"DownloadedCorruptData", | |
"CorruptData", | |
"CorruptPatchPlan", | |
"InvalidUpdateOptions", | |
"InvalidPlannerOptions", | |
"InvalidDeployData" | |
], | |
"type": "string" | |
}, | |
"PatchInstall": { | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"metadata_path": { | |
"type": "string" | |
}, | |
"path": { | |
"type": "string" | |
}, | |
"requests": { | |
"$ref": "#/definitions/PatchRequests" | |
}, | |
"status": { | |
"$ref": "#/definitions/PatchStatus" | |
}, | |
"target_path": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatchInstallParams": { | |
"properties": { | |
"metadata_path": { | |
"type": "string" | |
}, | |
"path": { | |
"type": "string" | |
}, | |
"target_path": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatchPatchRequest": { | |
"properties": { | |
"headers": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"repair": { | |
"type": "boolean" | |
}, | |
"tags": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"url": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatchPatchStatus": { | |
"properties": { | |
"error": { | |
"$ref": "#/definitions/PatchError" | |
}, | |
"progress": { | |
"$ref": "#/definitions/PatchProgress" | |
}, | |
"state": { | |
"$ref": "#/definitions/PatchPatchStatusState" | |
}, | |
"tags": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"url": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatchPatchStatusState": { | |
"enum": [ | |
"updating", | |
"out_of_date", | |
"up_to_date" | |
], | |
"type": "string" | |
}, | |
"PatchProgress": { | |
"properties": { | |
"bytes_to_download": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"bytes_to_read": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"bytes_to_write": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"downloaded_bytes": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"progress": { | |
"format": "double", | |
"type": "number" | |
}, | |
"read_bytes": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"written_bytes": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatchRequests": { | |
"properties": { | |
"patch": { | |
"$ref": "#/definitions/PatchPatchRequest" | |
}, | |
"seed": { | |
"$ref": "#/definitions/PatchSeedRequest" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatchSeedRequest": { | |
"properties": { | |
"headers": { | |
"additionalProperties": { | |
"type": "string" | |
}, | |
"type": "object" | |
}, | |
"tags": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"url": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatchSeedStatus": { | |
"properties": { | |
"error": { | |
"$ref": "#/definitions/PatchError" | |
}, | |
"progress": { | |
"$ref": "#/definitions/PatchProgress" | |
}, | |
"state": { | |
"$ref": "#/definitions/PatchSeedStatusState" | |
}, | |
"tags": { | |
"items": { | |
"type": "string" | |
}, | |
"type": "array" | |
}, | |
"url": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatchSeedStatusState": { | |
"enum": [ | |
"updating", | |
"out_of_date", | |
"up_to_date" | |
], | |
"type": "string" | |
}, | |
"PatchStatus": { | |
"properties": { | |
"patch": { | |
"$ref": "#/definitions/PatchPatchStatus" | |
}, | |
"seed": { | |
"$ref": "#/definitions/PatchSeedStatus" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatcherComponentActionProgress": { | |
"properties": { | |
"currentItem": { | |
"type": "string" | |
}, | |
"network": { | |
"$ref": "#/definitions/PatcherComponentStateProgress" | |
}, | |
"primaryWork": { | |
"$ref": "#/definitions/PatcherComponentStateWorkType" | |
}, | |
"total": { | |
"$ref": "#/definitions/PatcherComponentStateProgress" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatcherComponentResource": { | |
"properties": { | |
"copy_to_solution": { | |
"type": "boolean" | |
}, | |
"headers": { | |
"items": { | |
"$ref": "#/definitions/PatcherHeaderEntry" | |
}, | |
"type": "array" | |
}, | |
"history": { | |
"$ref": "#/definitions/PatcherComponentResourceHistory" | |
}, | |
"hostname": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"install_dir": { | |
"type": "string" | |
}, | |
"locale": { | |
"type": "string" | |
}, | |
"region": { | |
"type": "string" | |
}, | |
"remote_path": { | |
"type": "string" | |
}, | |
"type": { | |
"$ref": "#/definitions/PatcherComponentResourceType" | |
}, | |
"use_tls": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatcherComponentResourceHistory": { | |
"enum": [ | |
"none", | |
"keep" | |
], | |
"type": "string" | |
}, | |
"PatcherComponentResourceType": { | |
"enum": [ | |
"project", | |
"solution" | |
], | |
"type": "string" | |
}, | |
"PatcherComponentState": { | |
"properties": { | |
"action": { | |
"$ref": "#/definitions/PatcherComponentStateAction" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"isCorrupted": { | |
"type": "boolean" | |
}, | |
"isUpToDate": { | |
"type": "boolean" | |
}, | |
"isUpdateAvailable": { | |
"type": "boolean" | |
}, | |
"progress": { | |
"$ref": "#/definitions/PatcherComponentActionProgress" | |
}, | |
"timeOfLastUpToDateCheckISO8601": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatcherComponentStateAction": { | |
"enum": [ | |
"Idle", | |
"CheckingForUpdates", | |
"Patching", | |
"Repairing" | |
], | |
"type": "string" | |
}, | |
"PatcherComponentStateProgress": { | |
"properties": { | |
"bytesComplete": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"bytesPerSecond": { | |
"format": "double", | |
"type": "number" | |
}, | |
"bytesRequired": { | |
"format": "int64", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatcherComponentStateWorkType": { | |
"enum": [ | |
"Scanning", | |
"Network", | |
"Disk" | |
], | |
"type": "string" | |
}, | |
"PatcherHeaderEntry": { | |
"properties": { | |
"key": { | |
"type": "string" | |
}, | |
"value": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatcherInjectedPatcherError": { | |
"enum": [ | |
"UnspecifiedError", | |
"FailedToFindFile", | |
"FailedToResolveHostName", | |
"FailedFailedToWriteFile" | |
], | |
"type": "string" | |
}, | |
"PatcherNotification": { | |
"properties": { | |
"id": { | |
"type": "string" | |
}, | |
"notificationId": { | |
"$ref": "#/definitions/PatcherNotificationId" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatcherNotificationId": { | |
"enum": [ | |
"UnspecifiedError", | |
"ConnectionError", | |
"MissingFilesError", | |
"FailedToWriteError", | |
"WillRestoreClientBackupOnRestart", | |
"DidRestoreClientBackup" | |
], | |
"type": "string" | |
}, | |
"PatcherP2PStatus": { | |
"properties": { | |
"isAllowedByUser": { | |
"type": "boolean" | |
}, | |
"isEnabledForPatchline": { | |
"type": "boolean" | |
}, | |
"requiresRestart": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatcherP2PStatusUpdate": { | |
"properties": { | |
"isAllowedByUser": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatcherProductResource": { | |
"properties": { | |
"components": { | |
"items": { | |
"$ref": "#/definitions/PatcherComponentResource" | |
}, | |
"type": "array" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"refresh_period": { | |
"format": "int32", | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatcherProductState": { | |
"properties": { | |
"action": { | |
"$ref": "#/definitions/PatcherComponentStateAction" | |
}, | |
"components": { | |
"items": { | |
"$ref": "#/definitions/PatcherComponentState" | |
}, | |
"type": "array" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"isCorrupted": { | |
"type": "boolean" | |
}, | |
"isStopped": { | |
"type": "boolean" | |
}, | |
"isUpToDate": { | |
"type": "boolean" | |
}, | |
"isUpdateAvailable": { | |
"type": "boolean" | |
}, | |
"percentPatched": { | |
"format": "double", | |
"type": "number" | |
} | |
}, | |
"type": "object" | |
}, | |
"PatcherStatus": { | |
"properties": { | |
"connectedToPatchServer": { | |
"type": "boolean" | |
}, | |
"hasUpdatesOnRestart": { | |
"type": "boolean" | |
}, | |
"successfullyInstalledVersion": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"willRestartOnSelfUpdate": { | |
"type": "boolean" | |
} | |
}, | |
"type": "object" | |
}, | |
"PaymentsFrontEndRequest": { | |
"properties": { | |
"gifteeAccountId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gifteeMessage": { | |
"type": "string" | |
}, | |
"isPrepaid": { | |
"type": "boolean" | |
}, | |
"localeId": { | |
"type": "string" | |
}, | |
"rsoToken": { | |
"type": "string" | |
}, | |
"summonerLevel": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"PaymentsFrontEndResult": { | |
"properties": { | |
"url": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"PaymentsPMCStartUrlRequest": { | |
"properties": { | |
"gifteeAccountId": { | |
"format": "int32", | |
"type": "integer" | |
}, | |
"gifteeMessage": { | |
"type": "string" | |
}, | |
"isPrepaid": { | |
"type": "boolean" | |
}, | |
"localeId": { | |
"type": "string" | |
}, | |
"summonerLevel": { | |
"type": "integer" | |
} | |
}, | |
"type": "object" | |
}, | |
"PaymentsPMCStartUrlResult": { | |
"properties": { | |
"createdAt": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" | |
}, | |
"localeId": { | |
"type": "string" | |
}, | |
"playerFacingId": { | |
"type": "string" | |
}, | |
"pmcStartUrl": { | |
"type": "string" | |
}, | |
"summonerLevel": { | |
"type": "integer" | |
}, | |
"userId": { | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
}, | |
"PendingRosterDTO": { | |
"properties": { | |
"captainId": { | |
"format": "int64", | |
"type": "integer" | |
}, | |
"highTierVariance": { | |
"type": "boolean" | |
}, | |
"invitationId": { | |
"type": "string" | |
}, | |
"inviteFaileds": { | |
"items": { | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment