2023-09-22 11:00:20 +08:00

75671 lines
1.8 MiB

{
"components": {
"schemas": {
"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"
},
"BannedChampion": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"pickTurn": {
"format": "int32",
"type": "integer"
},
"teamId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"BasePlayerDTO": {
"properties": {
"code": {
"format": "int32",
"type": "integer"
},
"data": {
"$ref": "#/components/schemas/MatchedPlayerDTO"
},
"message": {
"type": "string"
}
},
"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": "#/components/schemas/BindingFullEventHelp"
},
"type": "array"
},
"functions": {
"items": {
"$ref": "#/components/schemas/BindingFullFunctionHelp"
},
"type": "array"
},
"types": {
"items": {
"$ref": "#/components/schemas/BindingFullTypeHelp"
},
"type": "array"
}
},
"type": "object"
},
"BindingFullArgumentHelp": {
"description": "Describes a function parameter.",
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
},
"type": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/BindingFullTypeIdentifier"
}
},
"type": "object"
},
"BindingFullFunctionHelp": {
"description": "Describes a function.",
"properties": {
"arguments": {
"items": {
"$ref": "#/components/schemas/BindingFullArgumentHelp"
},
"type": "array"
},
"async": {
"type": "string"
},
"description": {
"type": "string"
},
"help": {
"type": "string"
},
"name": {
"type": "string"
},
"nameSpace": {
"type": "string"
},
"returns": {
"$ref": "#/components/schemas/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": "#/components/schemas/BindingFullFieldHelp"
},
"type": "array"
},
"name": {
"type": "string"
},
"nameSpace": {
"type": "string"
},
"size": {
"format": "int32",
"type": "integer"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"values": {
"items": {
"$ref": "#/components/schemas/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": {
"id": {
"format": "int64",
"type": "integer"
},
"matches": {
"items": {
"$ref": "#/components/schemas/BracketMatch"
},
"type": "array"
},
"phaseId": {
"format": "int64",
"type": "integer"
},
"rosters": {
"items": {
"$ref": "#/components/schemas/BracketRoster"
},
"type": "array"
},
"size": {
"format": "int32",
"type": "integer"
},
"tournamentId": {
"format": "int64",
"type": "integer"
},
"version": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"BracketMatch": {
"properties": {
"failRosterStatus": {
"format": "int32",
"type": "integer"
},
"forfeitRosterId": {
"format": "int64",
"type": "integer"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"gameStartTime": {
"format": "int64",
"type": "integer"
},
"highestPossiblePosition": {
"format": "int32",
"type": "integer"
},
"id": {
"format": "int64",
"type": "integer"
},
"loserBracket": {
"type": "boolean"
},
"lowestPossiblePosition": {
"format": "int32",
"type": "integer"
},
"order": {
"format": "int32",
"type": "integer"
},
"resultHistory": {
"type": "string"
},
"rosterId1": {
"format": "int64",
"type": "integer"
},
"rosterId2": {
"format": "int64",
"type": "integer"
},
"round": {
"format": "int32",
"type": "integer"
},
"roundStartTime": {
"format": "int64",
"type": "integer"
},
"status": {
"$ref": "#/components/schemas/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"
},
"BuildInfo": {
"properties": {
"branch": {
"type": "string"
},
"patchline": {
"type": "string"
},
"patchlineVisibleName": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"CapacityEnum": {
"enum": [
"LOW",
"MEDIUM",
"HIGH",
"FULL"
],
"type": "string"
},
"ChampSelectLcdsGameDTO": {
"properties": {
"bannedChampions": {
"items": {
"$ref": "#/components/schemas/BannedChampion"
},
"type": "array"
},
"gameMutators": {
"items": {
"type": "string"
},
"type": "array"
},
"gameState": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"multiUserChatJwtMap": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"name": {
"type": "string"
},
"optimisticLock": {
"format": "int64",
"type": "integer"
},
"pickTurn": {
"format": "int32",
"type": "integer"
},
"playerChampionSelections": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/ClashRewardSpec"
},
"rewardType": {
"type": "string"
},
"rosterId": {
"format": "int64",
"type": "integer"
},
"seasonId": {
"format": "int32",
"type": "integer"
},
"teamLogoChromaId": {
"type": "string"
},
"teamLogoName": {
"type": "string"
},
"teamName": {
"type": "string"
},
"teamShortName": {
"type": "string"
},
"theme": {
"type": "string"
},
"tier": {
"type": "string"
},
"tournamentId": {
"format": "int64",
"type": "integer"
},
"tournamentName": {
"type": "string"
}
},
"type": "object"
},
"ClashOfflineNotification": {
"properties": {
"metaData": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"reason": {
"type": "string"
},
"tournamentId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"ClashRewardConfigClient": {
"properties": {
"entries": {
"items": {
"$ref": "#/components/schemas/ClashRewardConfigEntry"
},
"type": "array"
},
"grantToSub": {
"type": "boolean"
},
"keyDef": {
"items": {
"$ref": "#/components/schemas/ClashRewardKeyType"
},
"type": "array"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"ClashRewardConfigEntry": {
"properties": {
"key": {
"type": "string"
},
"vals": {
"items": {
"$ref": "#/components/schemas/ClashRewardOutput"
},
"type": "array"
}
},
"type": "object"
},
"ClashRewardDefinition": {
"properties": {
"rewardSpec": {
"$ref": "#/components/schemas/ClashRewardSpec"
},
"rewardType": {
"$ref": "#/components/schemas/ClashRewardType"
}
},
"type": "object"
},
"ClashRewardKeyType": {
"enum": [
"TIER",
"CUP",
"TICKET_COUNT",
"TICKET_TYPE",
"LOWEST_POSITION",
"TOURNAMENT_WIN_POS",
"WINS",
"POINTS",
"THEME_VP",
"SEASON_VP",
"SEASON_FLAG_COUNT",
"TOC_STATE"
],
"type": "string"
},
"ClashRewardOutput": {
"properties": {
"alternative": {
"$ref": "#/components/schemas/ClashRewardDefinition"
},
"grant": {
"$ref": "#/components/schemas/ClashRewardTime"
},
"primary": {
"$ref": "#/components/schemas/ClashRewardDefinition"
},
"show": {
"$ref": "#/components/schemas/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",
"TOC"
],
"type": "string"
},
"ClashSeasonRewardResult": {
"properties": {
"banned": {
"type": "boolean"
},
"eligible": {
"type": "boolean"
},
"honorLevel": {
"format": "int32",
"type": "integer"
},
"playerId": {
"format": "int64",
"type": "integer"
},
"rewards": {
"items": {
"$ref": "#/components/schemas/ClashRewardDefinition"
},
"type": "array"
},
"seasonId": {
"format": "int32",
"type": "integer"
},
"seasonVp": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"ClientBracketMatchStatus": {
"enum": [
"UPCOMING",
"STARTED",
"COMPLETED"
],
"type": "string"
},
"ClientConfigAuthenticatedConnection": {
"properties": {
"authToken": {
"type": "string"
},
"connectionId": {
"format": "int32",
"type": "integer"
},
"subscribed": {
"type": "boolean"
}
},
"type": "object"
},
"ClientConfigBuildInfo": {
"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"
},
"ClientConfigClientConfig": {
"properties": {
"data": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
},
"params": {
"$ref": "#/components/schemas/ClientConfigConfigParams"
},
"updateTime": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"ClientConfigConfigNamespaceUpdate": {
"properties": {
"player": {
"items": {
"type": "string"
},
"type": "array"
},
"public": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"ClientConfigConfigParams": {
"properties": {
"appName": {
"type": "string"
},
"namespace": {
"type": "string"
},
"patchline": {
"type": "string"
},
"region": {
"type": "string"
},
"type": {
"$ref": "#/components/schemas/ClientConfigConfigType"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"ClientConfigConfigReadinessEnum": {
"enum": [
"NotReady",
"Ready",
"Disabled"
],
"type": "string"
},
"ClientConfigConfigStatus": {
"properties": {
"readiness": {
"$ref": "#/components/schemas/ClientConfigConfigReadinessEnum"
},
"updateId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"ClientConfigConfigType": {
"enum": [
"public",
"player"
],
"type": "string"
},
"ClientConfigDataPaths": {
"properties": {
"configRoot": {
"type": "string"
},
"dataRoot": {
"type": "string"
},
"localSettingsPath": {
"type": "string"
},
"privateSettingsPath": {
"type": "string"
},
"userDataRoot": {
"type": "string"
}
},
"type": "object"
},
"ClientConfigDepInjectorEntitlements": {
"properties": {
"accessToken": {
"type": "string"
},
"entitlements": {
"items": {
"type": "string"
},
"type": "array"
},
"issuer": {
"type": "string"
},
"subject": {
"type": "string"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"ClientConfigDepInjectorEntitlementsUpdate": {
"properties": {
"EntitlementsTokenResource": {
"$ref": "#/components/schemas/ClientConfigDepInjectorEntitlements"
},
"EntitlementsUpdateType": {
"$ref": "#/components/schemas/ClientConfigDepInjectorEntitlementsUpdateType"
}
},
"type": "object"
},
"ClientConfigDepInjectorEntitlementsUpdateType": {
"enum": [
"Create",
"Update",
"Delete"
],
"type": "string"
},
"ClientConfigEntitlements": {
"properties": {
"accessToken": {
"type": "string"
},
"entitlements": {
"items": {
"type": "string"
},
"type": "array"
},
"issuer": {
"type": "string"
},
"subject": {
"type": "string"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"ClientConfigEntitlementsUpdate": {
"properties": {
"EntitlementsTokenResource": {
"$ref": "#/components/schemas/ClientConfigEntitlements"
},
"UpdateType": {
"$ref": "#/components/schemas/ClientConfigUpdateType"
}
},
"type": "object"
},
"ClientConfigSession": {
"properties": {
"connections": {
"items": {
"$ref": "#/components/schemas/ClientConfigAuthenticatedConnection"
},
"type": "array"
},
"isInternal": {
"type": "boolean"
},
"patchlineId": {
"type": "string"
},
"productId": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"ClientConfigUpdateType": {
"enum": [
"Create",
"Update",
"Delete"
],
"type": "string"
},
"ClientDynamicConfig": {
"properties": {
"compressed": {
"type": "boolean"
},
"configs": {
"type": "string"
},
"delta": {
"type": "boolean"
}
},
"type": "object"
},
"ClientRequestError": {
"enum": [
"ALREADY_IN_GAME",
"ALREADY_MEMBER",
"ALREADY_INVITED",
"ALREADY_SUGGESTED",
"ALREADY_DECLINE_WITHDRAW",
"ALREADY_DECLINED",
"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",
"PHASE_CANCELLED",
"PHASE_FULL",
"ROSTER_ELIMINATED",
"ROSTER_DISBAND_NOT_ALLOWED",
"SUGGEST_INVITEE_NOT_EXIST",
"SMS_NOT_VERIFIED",
"TICKET_ALREADY_SET",
"TICKET_OFFER_NOT_EXIST",
"TICKET_OFFER_INVALID_COUNT",
"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": "#/components/schemas/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"
},
"CollectionsLcdsStoreFulfillmentNotification": {
"properties": {
"data": {
"additionalProperties": true,
"type": "object"
},
"inventoryType": {
"type": "string"
}
},
"type": "object"
},
"ContentItemIdentifier": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"CraftLootRefTransactionDTO": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"clientId": {
"type": "string"
},
"lootNameRefIds": {
"items": {
"$ref": "#/components/schemas/LootNameRefId"
},
"type": "array"
},
"playerId": {
"format": "int64",
"type": "integer"
},
"puuid": {
"type": "string"
},
"recipeName": {
"type": "string"
},
"repeat": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"CrashReportingEnvironment": {
"properties": {
"environment": {
"type": "string"
},
"userId": {
"type": "string"
},
"userName": {
"type": "string"
}
},
"type": "object"
},
"DownloadUrlRequestV2": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"platformId": {
"type": "string"
}
},
"type": "object"
},
"DownloadUrlResponseV2": {
"properties": {
"url": {
"type": "string"
}
},
"type": "object"
},
"ElevationAction": {
"enum": [
"FixBrokenPermissions"
],
"type": "string"
},
"ElevationRequest": {
"properties": {
"action": {
"$ref": "#/components/schemas/ElevationAction"
}
},
"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"
},
"multiUserChatJwt": {
"type": "string"
},
"myTeamInfo": {
"$ref": "#/components/schemas/EndOfGameLcdsTeamInfo"
},
"myTeamStatus": {
"type": "string"
},
"newSpells": {
"items": {
"$ref": "#/components/schemas/EndOfGameLcdsSpell"
},
"type": "array"
},
"odinBonusIp": {
"format": "int32",
"type": "integer"
},
"otherTeamInfo": {
"$ref": "#/components/schemas/EndOfGameLcdsTeamInfo"
},
"otherTeamPlayerParticipantStats": {
"items": {
"$ref": "#/components/schemas/EndOfGameLcdsPlayerParticipantStatsSummary"
},
"type": "array"
},
"partyRewardsBonusIpEarned": {
"format": "int32",
"type": "integer"
},
"pointsPenalties": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/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"
},
"detectedTeamPosition": {
"type": "string"
},
"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"
},
"selectedPosition": {
"type": "string"
},
"skinIndex": {
"format": "int32",
"type": "integer"
},
"skinName": {
"type": "string"
},
"spell1Id": {
"format": "int32",
"type": "integer"
},
"spell2Id": {
"format": "int32",
"type": "integer"
},
"statistics": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/EndOfGameLcdsTeamId"
}
},
"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": "#/components/schemas/BannedChampion"
},
"type": "array"
},
"gameState": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"teamOne": {
"items": {
"$ref": "#/components/schemas/PlayerParticipant"
},
"type": "array"
},
"teamTwo": {
"items": {
"$ref": "#/components/schemas/PlayerParticipant"
},
"type": "array"
}
},
"type": "object"
},
"ExternalPluginsAvailability": {
"enum": [
"NotAvailable",
"Preparing",
"Connected",
"Recovering",
"Error"
],
"type": "string"
},
"ExternalPluginsResource": {
"properties": {
"errorString": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/ExternalPluginsAvailability"
}
},
"type": "object"
},
"FailedInvite": {
"properties": {
"exception": {
"$ref": "#/components/schemas/ClientRequestError"
},
"playerId": {
"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": "#/components/schemas/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"
},
"removalFromGameAllowed": {
"type": "boolean"
},
"removalFromGameDelayMinutes": {
"format": "int32",
"type": "integer"
},
"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"
},
"gameQueueConfigId": {
"format": "int32",
"type": "integer"
},
"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": "#/components/schemas/GameflowLcdsGameDTO"
},
"playerCredentials": {
"$ref": "#/components/schemas/GameflowLcdsPlayerCredentialsDto"
},
"reconnectDelay": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"IdsDTO": {
"properties": {
"missionIds": {
"items": {
"type": "string"
},
"type": "array"
},
"seriesIds": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"InviteType": {
"enum": [
"FREEAGENT",
"FRIEND",
"SUGGEST",
"SELFJOIN",
"NONE"
],
"type": "string"
},
"LCDSBroadcastNotification": {
"properties": {
"broadcastMessages": {
"items": {
"$ref": "#/components/schemas/LolServiceStatusBroadcastMessage"
},
"type": "array"
}
},
"type": "object"
},
"LCDSChampionReward": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"skins": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"LCDSGlobalRewards": {
"properties": {
"allChampions": {
"type": "boolean"
}
},
"type": "object"
},
"LCDSLoyaltyRewards": {
"properties": {
"champions": {
"items": {
"$ref": "#/components/schemas/LCDSChampionReward"
},
"type": "array"
},
"global": {
"$ref": "#/components/schemas/LCDSGlobalRewards"
},
"ipBoost": {
"format": "int32",
"type": "integer"
},
"xpBoost": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LCDSLoyaltyStateChangeNotification": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"notificationCategory": {
"$ref": "#/components/schemas/LCDSLoyaltyStateChangeNotificationCategory"
},
"rewards": {
"$ref": "#/components/schemas/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": "#/components/schemas/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"
},
"multiUserChatJwtMap": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"name": {
"type": "string"
},
"observers": {
"items": {
"$ref": "#/components/schemas/LcdsPlayerParticipant"
},
"type": "array"
},
"optimisticLock": {
"format": "int64",
"type": "integer"
},
"ownerSummary": {
"$ref": "#/components/schemas/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": "#/components/schemas/LcdsPlayerParticipant"
},
"type": "array"
},
"teamTwo": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LcdsInvitationState"
},
"invitePayload": {
"type": "string"
},
"inviteType": {
"type": "string"
},
"inviter": {
"$ref": "#/components/schemas/LcdsInviter"
},
"owner": {
"$ref": "#/components/schemas/LcdsPlayer"
}
},
"type": "object"
},
"LcdsInvitationState": {
"enum": [
"ACTIVE",
"ON_HOLD",
"REVOKED"
],
"type": "string"
},
"LcdsInviteFailed": {
"properties": {
"exception": {
"$ref": "#/components/schemas/LcdsGameInviteBaseRuntimeException"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerName": {
"type": "string"
}
},
"type": "object"
},
"LcdsInvitePrivileges": {
"properties": {
"canInvite": {
"type": "boolean"
}
},
"type": "object"
},
"LcdsInvitee": {
"properties": {
"inviteeState": {
"$ref": "#/components/schemas/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": "#/components/schemas/LcdsInvitee"
},
"type": "array"
},
"members": {
"items": {
"$ref": "#/components/schemas/LcdsMember"
},
"type": "array"
},
"owner": {
"$ref": "#/components/schemas/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": "#/components/schemas/LcdsGameMap"
},
"gameMode": {
"type": "string"
},
"gameMutators": {
"items": {
"type": "string"
},
"type": "array"
},
"gameName": {
"type": "string"
},
"gamePassword": {
"type": "string"
},
"gameTypeConfig": {
"format": "int32",
"type": "integer"
},
"gameVersion": {
"type": "string"
},
"maxNumPlayers": {
"format": "int32",
"type": "integer"
},
"passbackDataPacket": {
"type": "string"
},
"passbackUrl": {
"type": "string"
},
"region": {
"type": "string"
}
},
"type": "object"
},
"LcdsPracticeGameSearchResult": {
"properties": {
"allowSpectators": {
"type": "string"
},
"gameMap": {
"$ref": "#/components/schemas/LcdsGameMap"
},
"gameMapId": {
"format": "int32",
"type": "integer"
},
"gameMode": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"maxNumPlayers": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"owner": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/LcdsFailedJoinPlayer"
},
"type": "array"
}
},
"type": "object"
},
"LcdsSummoner": {
"properties": {
"name": {
"type": "string"
},
"sumId": {
"format": "int64",
"type": "integer"
}
},
"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"
},
"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": "#/components/schemas/LogSeverityLevels"
}
},
"type": "object"
},
"LogSeverityLevels": {
"description": "Allowable severity levels for log events.",
"enum": [
"Okay",
"Warning",
"Error",
"Always"
],
"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": "#/components/schemas/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"
},
"LolActiveBoostsActiveBoosts": {
"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"
},
"LolActiveBoostsEndOfGameStats": {
"properties": {
"timeUntilNextFirstWinBonus": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolActiveBoostsLoginDataPacket": {
"properties": {
"timeUntilFirstWinOfDay": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolAntiAddictionAntiAddictionState": {
"properties": {
"antiAddictionToken": {
"type": "string"
},
"localizationKey": {
"type": "string"
},
"policyType": {
"$ref": "#/components/schemas/LolAntiAddictionPolicyType"
}
},
"type": "object"
},
"LolAntiAddictionAntiAddictionToken": {
"properties": {
"antiAddictionToken": {
"type": "string"
}
},
"type": "object"
},
"LolAntiAddictionPolicyType": {
"enum": [
"antiAddictionWarning",
"antiAddictionShutdown",
"antiAddictionHeartbeat"
],
"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": "#/components/schemas/LolBannersClashV2FlagRewardSpec"
},
"rewardType": {
"type": "string"
}
},
"type": "object"
},
"LolBannersCapClashFrameEntitlementPayload": {
"properties": {
"rewardSpec": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolBannersTournamentFlagInventoryItem"
},
"type": "array"
},
"TOURNAMENT_FRAME": {
"items": {
"$ref": "#/components/schemas/LolBannersTournamentFrameInventoryItem"
},
"type": "array"
}
},
"type": "object"
},
"LolBannersInventoryResponse": {
"properties": {
"items": {
"$ref": "#/components/schemas/LolBannersInventoryItemsByType"
}
},
"type": "object"
},
"LolBannersLoadout": {
"properties": {
"id": {
"type": "string"
},
"loadout": {
"additionalProperties": {
"$ref": "#/components/schemas/LolBannersLoadoutsSlot"
},
"type": "object"
},
"name": {
"type": "string"
},
"scope": {
"type": "string"
}
},
"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": "#/components/schemas/LolBannersCapClashFlagEntitlementPayload"
},
"purchaseDate": {
"type": "string"
}
},
"type": "object"
},
"LolBannersTournamentFrameInventoryItem": {
"properties": {
"payload": {
"$ref": "#/components/schemas/LolBannersCapClashFrameEntitlementPayload"
},
"purchaseDate": {
"type": "string"
}
},
"type": "object"
},
"LolCareerStatsCareerStatsQueueType": {
"enum": [
"draft5",
"rank5flex",
"rank5solo",
"blind5",
"aram",
"blind3",
"rank3flex",
"other"
],
"type": "string"
},
"LolCareerStatsChampionQueueStatsResponse": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"position": {
"$ref": "#/components/schemas/LolCareerStatsSummonersRiftPosition"
},
"queueType": {
"$ref": "#/components/schemas/LolCareerStatsCareerStatsQueueType"
},
"rankTier": {
"$ref": "#/components/schemas/LolCareerStatsRankedTier"
},
"stats": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"LolCareerStatsChampionStatistics": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"experts": {
"items": {
"$ref": "#/components/schemas/LolCareerStatsExpertPlayer"
},
"type": "array"
},
"queueStats": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolCareerStatsSummonersRiftPosition"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerName": {
"type": "string"
},
"winRate": {
"format": "float",
"type": "number"
}
},
"type": "object"
},
"LolCareerStatsPositionStatistics": {
"properties": {
"experts": {
"items": {
"$ref": "#/components/schemas/LolCareerStatsExpertPlayer"
},
"type": "array"
},
"position": {
"$ref": "#/components/schemas/LolCareerStatsSummonersRiftPosition"
},
"queueStats": {
"items": {
"$ref": "#/components/schemas/LolCareerStatsStatisticsByQueue"
},
"type": "array"
}
},
"type": "object"
},
"LolCareerStatsPositionStatsQueryRequest": {
"properties": {
"position": {
"$ref": "#/components/schemas/LolCareerStatsSummonersRiftPosition"
},
"queueType": {
"$ref": "#/components/schemas/LolCareerStatsCareerStatsQueueType"
},
"rankTier": {
"$ref": "#/components/schemas/LolCareerStatsRankedTier"
},
"season": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCareerStatsRankedTier": {
"enum": [
"ALL",
"UNRANKED",
"IRON",
"BRONZE",
"SILVER",
"GOLD",
"PLATINUM",
"DIAMOND",
"MASTER",
"GRANDMASTER",
"CHALLENGER"
],
"type": "string"
},
"LolCareerStatsStatisticsByQueue": {
"properties": {
"queueType": {
"$ref": "#/components/schemas/LolCareerStatsCareerStatsQueueType"
},
"stats": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"LolCareerStatsStatisticsPercentilesResponse": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"position": {
"$ref": "#/components/schemas/LolCareerStatsSummonersRiftPosition"
},
"queueType": {
"$ref": "#/components/schemas/LolCareerStatsCareerStatsQueueType"
},
"rankTier": {
"$ref": "#/components/schemas/LolCareerStatsRankedTier"
},
"season": {
"format": "int32",
"type": "integer"
},
"stats": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"LolCareerStatsStatsQueryRequest": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"position": {
"$ref": "#/components/schemas/LolCareerStatsSummonersRiftPosition"
},
"queueType": {
"$ref": "#/components/schemas/LolCareerStatsCareerStatsQueueType"
},
"rankTier": {
"$ref": "#/components/schemas/LolCareerStatsRankedTier"
},
"season": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCareerStatsSummonersRiftPosition": {
"enum": [
"ALL",
"UNKNOWN",
"TOP",
"JUNGLE",
"MID",
"BOTTOM",
"SUPPORT"
],
"type": "string"
},
"LolCatalogBundled": {
"properties": {
"flexible": {
"type": "boolean"
},
"items": {
"items": {
"$ref": "#/components/schemas/LolCatalogBundledItem"
},
"type": "array"
},
"minimumPrices": {
"items": {
"$ref": "#/components/schemas/LolCatalogBundledItemCost"
},
"type": "array"
}
},
"type": "object"
},
"LolCatalogBundledItem": {
"properties": {
"discountPrices": {
"items": {
"$ref": "#/components/schemas/LolCatalogBundledItemCost"
},
"type": "array"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"quantity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCatalogBundledItemCost": {
"properties": {
"cost": {
"format": "int64",
"type": "integer"
},
"costType": {
"type": "string"
},
"currency": {
"type": "string"
},
"discount": {
"format": "float",
"type": "number"
}
},
"type": "object"
},
"LolCatalogCatalogItem": {
"properties": {
"active": {
"type": "boolean"
},
"bundled": {
"$ref": "#/components/schemas/LolCatalogBundled"
},
"iconUrl": {
"type": "string"
},
"inactiveDate": {
"type": "string"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"itemInstanceId": {
"type": "string"
},
"itemRequirements": {
"items": {
"$ref": "#/components/schemas/LolCatalogItemKey"
},
"type": "array"
},
"localizations": {
"additionalProperties": {
"$ref": "#/components/schemas/LolCatalogItemLocalization"
},
"type": "object"
},
"metadata": {
"items": {
"$ref": "#/components/schemas/LolCatalogItemMetadataEntry"
},
"type": "array"
},
"offerId": {
"type": "string"
},
"prices": {
"items": {
"$ref": "#/components/schemas/LolCatalogItemCost"
},
"type": "array"
},
"releaseDate": {
"type": "string"
},
"sale": {
"$ref": "#/components/schemas/LolCatalogSale"
},
"subInventoryType": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolCatalogCatalogPluginItem": {
"properties": {
"active": {
"type": "boolean"
},
"description": {
"type": "string"
},
"imagePath": {
"type": "string"
},
"inactiveDate": {
"format": "int64",
"type": "integer"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"itemInstanceId": {
"type": "string"
},
"metadata": {
"items": {
"$ref": "#/components/schemas/LolCatalogItemMetadataEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"offerId": {
"type": "string"
},
"owned": {
"type": "boolean"
},
"ownershipType": {
"$ref": "#/components/schemas/LolCatalogInventoryOwnership"
},
"prices": {
"items": {
"$ref": "#/components/schemas/LolCatalogCatalogPluginPrice"
},
"type": "array"
},
"purchaseDate": {
"format": "int64",
"type": "integer"
},
"questSkinInfo": {
"$ref": "#/components/schemas/LolCatalogSkinLineInfo"
},
"releaseDate": {
"format": "int64",
"type": "integer"
},
"sale": {
"$ref": "#/components/schemas/LolCatalogSale"
},
"subInventoryType": {
"type": "string"
},
"subTitle": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolCatalogCatalogPluginItemAssets": {
"properties": {
"colors": {
"items": {
"type": "string"
},
"type": "array"
},
"emblems": {
"items": {
"$ref": "#/components/schemas/LolCatalogChampionSkinEmblem"
},
"type": "array"
},
"iconPath": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"tilePath": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogCatalogPluginItemWithDetails": {
"properties": {
"assets": {
"$ref": "#/components/schemas/LolCatalogCatalogPluginItemAssets"
},
"bundledDiscountPrices": {
"items": {
"$ref": "#/components/schemas/LolCatalogCatalogPluginPrice"
},
"type": "array"
},
"bundledItems": {
"items": {
"$ref": "#/components/schemas/LolCatalogCatalogPluginItemWithDetails"
},
"type": "array"
},
"item": {
"$ref": "#/components/schemas/LolCatalogCatalogPluginItem"
},
"minimumBundlePrices": {
"items": {
"$ref": "#/components/schemas/LolCatalogCatalogPluginPrice"
},
"type": "array"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"requiredItems": {
"items": {
"$ref": "#/components/schemas/LolCatalogCatalogPluginItemWithDetails"
},
"type": "array"
}
},
"type": "object"
},
"LolCatalogCatalogPluginPrice": {
"properties": {
"cost": {
"format": "int64",
"type": "integer"
},
"costType": {
"type": "string"
},
"currency": {
"type": "string"
},
"sale": {
"$ref": "#/components/schemas/LolCatalogCatalogPluginRetailDiscount"
}
},
"type": "object"
},
"LolCatalogCatalogPluginRetailDiscount": {
"properties": {
"cost": {
"format": "int64",
"type": "integer"
},
"discount": {
"format": "float",
"type": "number"
},
"endDate": {
"type": "string"
},
"startDate": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogChampionSkinEmblem": {
"properties": {
"emblemPath": {
"$ref": "#/components/schemas/LolCatalogChampionSkinEmblemPath"
},
"emblemPosition": {
"$ref": "#/components/schemas/LolCatalogChampionSkinEmblemPosition"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogChampionSkinEmblemPath": {
"properties": {
"large": {
"type": "string"
},
"small": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogChampionSkinEmblemPosition": {
"properties": {
"horizontal": {
"type": "string"
},
"vertical": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogGameDataChampion": {
"properties": {
"skins": {
"items": {
"$ref": "#/components/schemas/LolCatalogGameDataChampionSkin"
},
"type": "array"
}
},
"type": "object"
},
"LolCatalogGameDataChampionChroma": {
"properties": {
"chromaPath": {
"type": "string"
},
"colors": {
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogGameDataChampionSkin": {
"properties": {
"chromaPath": {
"type": "string"
},
"chromas": {
"items": {
"$ref": "#/components/schemas/LolCatalogGameDataChampionChroma"
},
"type": "array"
},
"colors": {
"items": {
"type": "string"
},
"type": "array"
},
"emblems": {
"items": {
"$ref": "#/components/schemas/LolCatalogChampionSkinEmblem"
},
"type": "array"
},
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
},
"questSkinInfo": {
"$ref": "#/components/schemas/LolCatalogSkinLineInfo"
},
"splashPath": {
"type": "string"
},
"tilePath": {
"type": "string"
},
"uncenteredSplashPath": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogGameDataChampionSummary": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
},
"skins": {
"items": {
"$ref": "#/components/schemas/LolCatalogGameDataChampionSkin"
},
"type": "array"
},
"squarePortraitPath": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogGameDataItemReference": {
"properties": {
"contentId": {
"type": "string"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCatalogGameDataStatstone": {
"properties": {
"category": {
"type": "string"
},
"contentId": {
"type": "string"
},
"description": {
"type": "string"
},
"iconFull": {
"type": "string"
},
"isDuration": {
"type": "boolean"
},
"isEpic": {
"type": "boolean"
},
"isRetired": {
"type": "boolean"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogGameDataStatstonePack": {
"properties": {
"contentId": {
"type": "string"
},
"description": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogGameDataStatstoneSet": {
"properties": {
"name": {
"type": "string"
},
"statstones": {
"items": {
"$ref": "#/components/schemas/LolCatalogGameDataStatstone"
},
"type": "array"
}
},
"type": "object"
},
"LolCatalogGameDataStatstonesInfo": {
"properties": {
"champIdToPackIds": {
"additionalProperties": true,
"type": "object"
},
"collectionIdToStatStoneIds": {
"additionalProperties": true,
"type": "object"
},
"packData": {
"items": {
"$ref": "#/components/schemas/LolCatalogGameDataStatstonePack"
},
"type": "array"
},
"packIdToChampIds": {
"additionalProperties": true,
"type": "object"
},
"packIdToStatStonesIds": {
"additionalProperties": true,
"type": "object"
},
"packIdToSubPackIds": {
"additionalProperties": true,
"type": "object"
},
"seriesIdToStatStoneIds": {
"additionalProperties": true,
"type": "object"
},
"statstoneData": {
"items": {
"$ref": "#/components/schemas/LolCatalogGameDataStatstoneSet"
},
"type": "array"
}
},
"type": "object"
},
"LolCatalogGameDataSummonerEmote": {
"properties": {
"description": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"inventoryIcon": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogGameDataSummonerIcon": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"imagePath": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogGameDataWardSkin": {
"properties": {
"description": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
},
"wardImagePath": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogInventoryContent": {
"properties": {
"itemId": {
"format": "int64",
"type": "integer"
},
"ownershipType": {
"$ref": "#/components/schemas/LolCatalogInventoryOwnership"
},
"purchaseDate": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogInventoryOwnership": {
"enum": [
"OWNED",
"RENTED",
"LOYALTY",
"F2P"
],
"type": "string"
},
"LolCatalogItemChoiceDetails": {
"properties": {
"backgroundImage": {
"type": "string"
},
"contents": {
"items": {
"$ref": "#/components/schemas/LolCatalogItemDetails"
},
"type": "array"
},
"discount": {
"type": "string"
},
"displayType": {
"type": "string"
},
"fullPrice": {
"format": "int64",
"type": "integer"
},
"item": {
"$ref": "#/components/schemas/LolCatalogCatalogPluginItem"
},
"metadata": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"LolCatalogItemCost": {
"properties": {
"cost": {
"format": "int64",
"type": "integer"
},
"currency": {
"type": "string"
},
"discount": {
"format": "float",
"type": "number"
}
},
"type": "object"
},
"LolCatalogItemDetails": {
"properties": {
"description": {
"type": "string"
},
"iconUrl": {
"type": "string"
},
"subTitle": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogItemKey": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCatalogItemLocalization": {
"properties": {
"description": {
"type": "string"
},
"language": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogItemMetadataEntry": {
"properties": {
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogSale": {
"properties": {
"endDate": {
"type": "string"
},
"prices": {
"items": {
"$ref": "#/components/schemas/LolCatalogItemCost"
},
"type": "array"
},
"startDate": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogSkinLineDescriptionInfo": {
"properties": {
"description": {
"type": "string"
},
"iconPath": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogSkinLineInfo": {
"properties": {
"collectionCardPath": {
"type": "string"
},
"collectionDescription": {
"type": "string"
},
"descriptionInfo": {
"items": {
"$ref": "#/components/schemas/LolCatalogSkinLineDescriptionInfo"
},
"type": "array"
},
"name": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"tiers": {
"items": {
"$ref": "#/components/schemas/LolCatalogSkinLineTier"
},
"type": "array"
},
"tilePath": {
"type": "string"
},
"uncenteredSplashPath": {
"type": "string"
}
},
"type": "object"
},
"LolCatalogSkinLineTier": {
"properties": {
"collectionSplashVideoPath": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"loadScreenPath": {
"type": "string"
},
"name": {
"type": "string"
},
"shortName": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"splashVideoPath": {
"type": "string"
},
"stage": {
"format": "int64",
"type": "integer"
},
"tilePath": {
"type": "string"
},
"uncenteredSplashPath": {
"type": "string"
}
},
"type": "object"
},
"LolChallengesChallengeData": {
"properties": {
"category": {
"type": "string"
},
"currentLevel": {
"type": "string"
},
"currentLevelAchievedTime": {
"format": "int64",
"type": "integer"
},
"currentThreshold": {
"format": "double",
"type": "number"
},
"currentValue": {
"format": "double",
"type": "number"
},
"friendsAtLevels": {
"items": {
"$ref": "#/components/schemas/LolChallengesFriendLevelsData"
},
"type": "array"
},
"id": {
"format": "int64",
"type": "integer"
},
"initValue": {
"format": "double",
"type": "number"
},
"legacy": {
"type": "boolean"
},
"newLevels": {
"items": {
"type": "string"
},
"type": "array"
},
"nextLevel": {
"type": "string"
},
"nextThreshold": {
"format": "double",
"type": "number"
},
"percentile": {
"format": "double",
"type": "number"
},
"playersInLevel": {
"format": "int32",
"type": "integer"
},
"position": {
"format": "int32",
"type": "integer"
},
"previousLevel": {
"type": "string"
},
"previousThreshold": {
"format": "double",
"type": "number"
},
"previousValue": {
"format": "double",
"type": "number"
},
"seasonId": {
"format": "int32",
"type": "integer"
},
"seasonal": {
"type": "boolean"
}
},
"type": "object"
},
"LolChallengesChallengeLevelData": {
"properties": {
"level": {
"type": "string"
}
},
"type": "object"
},
"LolChallengesChallengePlayerData": {
"properties": {
"apexLaderUpdateTime": {
"format": "int64",
"type": "integer"
},
"categoryPoints": {
"additionalProperties": {
"$ref": "#/components/schemas/LolChallengesChallengePoints"
},
"type": "object"
},
"id": {
"type": "string"
},
"levelPoints": {
"additionalProperties": {
"format": "int64",
"type": "integer"
},
"type": "object"
},
"playerChallenges": {
"items": {
"$ref": "#/components/schemas/LolChallengesChallengeData"
},
"type": "array"
},
"preferences": {
"$ref": "#/components/schemas/LolChallengesPlayerClientPreferences"
},
"puuid": {
"type": "string"
},
"source": {
"$ref": "#/components/schemas/LolChallengesSource"
},
"tags": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"totalPoints": {
"$ref": "#/components/schemas/LolChallengesChallengePoints"
}
},
"type": "object"
},
"LolChallengesChallengePoints": {
"properties": {
"current": {
"format": "int32",
"type": "integer"
},
"level": {
"type": "string"
},
"max": {
"format": "int32",
"type": "integer"
},
"percentile": {
"format": "double",
"type": "number"
}
},
"type": "object"
},
"LolChallengesChallengeSignedUpdatePayload": {
"properties": {
"tokensByType": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
},
"type": "object"
},
"LolChallengesChallengeThreshold": {
"properties": {
"rewardGroupId": {
"type": "string"
},
"rewards": {
"items": {
"$ref": "#/components/schemas/LolChallengesChallengeThresholdReward"
},
"type": "array"
},
"value": {
"format": "double",
"type": "number"
}
},
"type": "object"
},
"LolChallengesChallengeThresholdReward": {
"properties": {
"category": {
"type": "string"
},
"id": {
"type": "string"
},
"quantity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChallengesChallengesPlayerPreferences": {
"properties": {
"bannerAccent": {
"type": "string"
},
"challengeIds": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"signedJWTPayload": {
"$ref": "#/components/schemas/LolChallengesChallengeSignedUpdatePayload"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"LolChallengesChallengesRMSNotification": {
"properties": {
"ackRequired": {
"type": "boolean"
},
"payload": {
"type": "string"
}
},
"type": "object"
},
"LolChallengesChallengesRMSPayload": {
"properties": {
"id": {
"type": "string"
},
"playerKey": {
"$ref": "#/components/schemas/LolChallengesChallengesRMSPlayerKey"
}
},
"type": "object"
},
"LolChallengesChallengesRMSPlayerKey": {
"properties": {
"product": {
"type": "string"
},
"puuid": {
"type": "string"
}
},
"type": "object"
},
"LolChallengesEndOfGameStats": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChallengesFriendLevelsData": {
"properties": {
"friends": {
"items": {
"type": "string"
},
"type": "array"
},
"level": {
"type": "string"
}
},
"type": "object"
},
"LolChallengesFriendResource": {
"properties": {
"puuid": {
"type": "string"
}
},
"type": "object"
},
"LolChallengesGameDataChallengeConfig": {
"properties": {
"description": {
"type": "string"
},
"descriptionShort": {
"type": "string"
},
"iconPath": {
"type": "string"
},
"leaderboard": {
"type": "boolean"
},
"levelToIconPath": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"name": {
"type": "string"
},
"queueIds": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"reverseDirection": {
"type": "boolean"
},
"source": {
"type": "string"
},
"tags": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"thresholds": {
"additionalProperties": {
"$ref": "#/components/schemas/LolChallengesChallengeThreshold"
},
"type": "object"
}
},
"type": "object"
},
"LolChallengesGameDataChallengeTitle": {
"properties": {
"itemId": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolChallengesGameDataChallengesData": {
"properties": {
"challenges": {
"additionalProperties": {
"$ref": "#/components/schemas/LolChallengesGameDataChallengeConfig"
},
"type": "object"
},
"titles": {
"additionalProperties": {
"$ref": "#/components/schemas/LolChallengesGameDataChallengeTitle"
},
"type": "object"
}
},
"type": "object"
},
"LolChallengesInventoryTypeAchievementTitle": {
"properties": {
"itemId": {
"format": "int32",
"type": "integer"
},
"uuid": {
"type": "string"
}
},
"type": "object"
},
"LolChallengesPlayerClientPreferences": {
"properties": {
"tabard": {
"type": "string"
},
"title": {
"type": "string"
},
"tokens": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"LolChallengesQueue": {
"properties": {
"gameMode": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChallengesSource": {
"enum": [
"CHALLENGES",
"EOGD",
"CAP_INVENTORY",
"HONOR",
"CHAMPION_MASTERY",
"RANKED_LEAGUES",
"CLASH",
"LOOT",
"ETERNALS"
],
"type": "string"
},
"LolChallengesUICategoryProgress": {
"properties": {
"category": {
"type": "string"
},
"current": {
"format": "int32",
"type": "integer"
},
"level": {
"type": "string"
},
"max": {
"format": "int32",
"type": "integer"
},
"positionPercentile": {
"format": "double",
"type": "number"
}
},
"type": "object"
},
"LolChallengesUIChallenge": {
"properties": {
"capstoneGroupId": {
"format": "int64",
"type": "integer"
},
"capstoneGroupName": {
"type": "string"
},
"capstoneId": {
"format": "int64",
"type": "integer"
},
"category": {
"type": "string"
},
"currentLevel": {
"type": "string"
},
"currentLevelAchievedTime": {
"format": "int64",
"type": "integer"
},
"currentThreshold": {
"format": "double",
"type": "number"
},
"currentValue": {
"format": "double",
"type": "number"
},
"description": {
"type": "string"
},
"descriptionShort": {
"type": "string"
},
"friendsAtLevels": {
"items": {
"$ref": "#/components/schemas/LolChallengesFriendLevelsData"
},
"type": "array"
},
"gameModes": {
"items": {
"type": "string"
},
"type": "array"
},
"hasLeaderboard": {
"type": "boolean"
},
"iconPath": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"isApex": {
"type": "boolean"
},
"isCapstone": {
"type": "boolean"
},
"isReverseDirection": {
"type": "boolean"
},
"levelToIconPath": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"name": {
"type": "string"
},
"nextLevel": {
"type": "string"
},
"nextLevelIconPath": {
"type": "string"
},
"nextThreshold": {
"format": "double",
"type": "number"
},
"percentile": {
"format": "double",
"type": "number"
},
"pointsAwarded": {
"format": "int64",
"type": "integer"
},
"position": {
"format": "int32",
"type": "integer"
},
"previousLevel": {
"type": "string"
},
"previousValue": {
"format": "double",
"type": "number"
},
"source": {
"type": "string"
},
"thresholds": {
"additionalProperties": {
"$ref": "#/components/schemas/LolChallengesUIChallengeThreshold"
},
"type": "object"
},
"valueMapping": {
"type": "string"
}
},
"type": "object"
},
"LolChallengesUIChallengeReward": {
"properties": {
"asset": {
"type": "string"
},
"category": {
"type": "string"
},
"name": {
"type": "string"
},
"quantity": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChallengesUIChallengeThreshold": {
"properties": {
"rewards": {
"items": {
"$ref": "#/components/schemas/LolChallengesUIChallengeReward"
},
"type": "array"
},
"value": {
"format": "double",
"type": "number"
}
},
"type": "object"
},
"LolChallengesUIPlayerSummary": {
"properties": {
"apexLadderUpdateTime": {
"format": "int64",
"type": "integer"
},
"categoryProgress": {
"items": {
"$ref": "#/components/schemas/LolChallengesUICategoryProgress"
},
"type": "array"
},
"overallChallengeLevel": {
"type": "string"
},
"pointsUntilNextRank": {
"format": "int64",
"type": "integer"
},
"positionPercentile": {
"format": "double",
"type": "number"
},
"title": {
"$ref": "#/components/schemas/LolChallengesUITitle"
},
"topChallenges": {
"items": {
"$ref": "#/components/schemas/LolChallengesUIChallenge"
},
"type": "array"
},
"totalChallengeScore": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChallengesUITitle": {
"properties": {
"contentId": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolChampSelectChampGridChampion": {
"properties": {
"disabled": {
"type": "boolean"
},
"freeToPlay": {
"type": "boolean"
},
"freeToPlayForQueue": {
"type": "boolean"
},
"freeToPlayReward": {
"type": "boolean"
},
"id": {
"format": "int32",
"type": "integer"
},
"masteryChestGranted": {
"type": "boolean"
},
"masteryLevel": {
"format": "int32",
"type": "integer"
},
"masteryPoints": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"owned": {
"type": "boolean"
},
"positionsFavorited": {
"items": {
"type": "string"
},
"type": "array"
},
"rented": {
"type": "boolean"
},
"roles": {
"items": {
"type": "string"
},
"type": "array"
},
"selectionStatus": {
"$ref": "#/components/schemas/LolChampSelectChampionSelection"
},
"squarePortraitPath": {
"type": "string"
}
},
"type": "object"
},
"LolChampSelectChampSelectAction": {
"properties": {
"actorCellId": {
"format": "int64",
"type": "integer"
},
"championId": {
"format": "int32",
"type": "integer"
},
"completed": {
"type": "boolean"
},
"id": {
"format": "int64",
"type": "integer"
},
"isAllyAction": {
"type": "boolean"
},
"type": {
"type": "string"
}
},
"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"
},
"LolChampSelectChampSelectMySelection": {
"properties": {
"selectedSkinId": {
"format": "int32",
"type": "integer"
},
"spell1Id": {
"format": "int64",
"type": "integer"
},
"spell2Id": {
"format": "int64",
"type": "integer"
},
"wardSkinId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChampSelectChampSelectPinDropNotification": {
"properties": {
"mapSide": {
"type": "string"
},
"pinDropSummoners": {
"items": {
"$ref": "#/components/schemas/LolChampSelectChampSelectPinDropSummoner"
},
"type": "array"
}
},
"type": "object"
},
"LolChampSelectChampSelectPinDropSummoner": {
"properties": {
"isLocalSummoner": {
"type": "boolean"
},
"isPlaceholder": {
"type": "boolean"
},
"lane": {
"type": "string"
},
"lanePosition": {
"format": "int32",
"type": "integer"
},
"position": {
"type": "string"
},
"slotId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChampSelectChampSelectPlayerSelection": {
"properties": {
"assignedPosition": {
"type": "string"
},
"cellId": {
"format": "int64",
"type": "integer"
},
"championId": {
"format": "int32",
"type": "integer"
},
"championPickIntent": {
"format": "int32",
"type": "integer"
},
"entitledFeatureType": {
"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"
},
"allowLockedEvents": {
"type": "boolean"
},
"allowRerolling": {
"type": "boolean"
},
"allowSkinSelection": {
"type": "boolean"
},
"bans": {
"$ref": "#/components/schemas/LolChampSelectChampSelectBannedChampions"
},
"benchChampionIds": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"benchEnabled": {
"type": "boolean"
},
"boostableSkinCount": {
"format": "int32",
"type": "integer"
},
"chatDetails": {
"$ref": "#/components/schemas/LolChampSelectChampSelectChatRoomDetails"
},
"counter": {
"format": "int64",
"type": "integer"
},
"entitledFeatureState": {
"$ref": "#/components/schemas/LolChampSelectEntitledFeatureState"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"hasSimultaneousBans": {
"type": "boolean"
},
"hasSimultaneousPicks": {
"type": "boolean"
},
"isCustomGame": {
"type": "boolean"
},
"isSpectating": {
"type": "boolean"
},
"localPlayerCellId": {
"format": "int64",
"type": "integer"
},
"lockedEventIndex": {
"format": "int32",
"type": "integer"
},
"myTeam": {
"items": {
"$ref": "#/components/schemas/LolChampSelectChampSelectPlayerSelection"
},
"type": "array"
},
"recoveryCounter": {
"format": "int64",
"type": "integer"
},
"rerollsRemaining": {
"format": "int32",
"type": "integer"
},
"skipChampionSelect": {
"type": "boolean"
},
"theirTeam": {
"items": {
"$ref": "#/components/schemas/LolChampSelectChampSelectPlayerSelection"
},
"type": "array"
},
"timer": {
"$ref": "#/components/schemas/LolChampSelectChampSelectTimer"
},
"trades": {
"items": {
"$ref": "#/components/schemas/LolChampSelectChampSelectTradeContract"
},
"type": "array"
}
},
"type": "object"
},
"LolChampSelectChampSelectSummoner": {
"properties": {
"actingBackgroundAnimationState": {
"type": "string"
},
"activeActionType": {
"type": "string"
},
"areSummonerActionsComplete": {
"type": "boolean"
},
"assignedPosition": {
"type": "string"
},
"banIntentSquarePortratPath": {
"type": "string"
},
"cellId": {
"format": "int64",
"type": "integer"
},
"championIconStyle": {
"type": "string"
},
"championName": {
"type": "string"
},
"currentChampionVotePercentInteger": {
"format": "int32",
"type": "integer"
},
"entitledFeatureType": {
"type": "string"
},
"isActingNow": {
"type": "boolean"
},
"isDonePicking": {
"type": "boolean"
},
"isOnPlayersTeam": {
"type": "boolean"
},
"isPickIntenting": {
"type": "boolean"
},
"isPlaceholder": {
"type": "boolean"
},
"isSelf": {
"type": "boolean"
},
"pickSnipedClass": {
"type": "string"
},
"shouldShowActingBar": {
"type": "boolean"
},
"shouldShowBanIntentIcon": {
"type": "boolean"
},
"shouldShowExpanded": {
"type": "boolean"
},
"shouldShowRingAnimations": {
"type": "boolean"
},
"shouldShowSelectedSkin": {
"type": "boolean"
},
"shouldShowSpells": {
"type": "boolean"
},
"showMuted": {
"type": "boolean"
},
"showTrades": {
"type": "boolean"
},
"skinId": {
"format": "int32",
"type": "integer"
},
"skinSplashPath": {
"type": "string"
},
"slotId": {
"format": "int32",
"type": "integer"
},
"spell1IconPath": {
"type": "string"
},
"spell2IconPath": {
"type": "string"
},
"statusMessageKey": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"tradeId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChampSelectChampSelectTimer": {
"properties": {
"adjustedTimeLeftInPhase": {
"format": "int64",
"type": "integer"
},
"internalNowInEpochMs": {
"format": "int64",
"type": "integer"
},
"isInfinite": {
"type": "boolean"
},
"phase": {
"type": "string"
},
"totalTimeInPhase": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChampSelectChampSelectTradeContract": {
"properties": {
"cellId": {
"format": "int64",
"type": "integer"
},
"id": {
"format": "int64",
"type": "integer"
},
"state": {
"$ref": "#/components/schemas/LolChampSelectChampSelectTradeState"
}
},
"type": "object"
},
"LolChampSelectChampSelectTradeNotification": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"initiatedByLocalPlayer": {
"type": "boolean"
},
"otherSummonerId": {
"format": "int64",
"type": "integer"
},
"requesterChampionName": {
"type": "string"
},
"requesterChampionSplashPath": {
"type": "string"
},
"responderChampionName": {
"type": "string"
},
"responderIndex": {
"format": "int64",
"type": "integer"
},
"state": {
"$ref": "#/components/schemas/LolChampSelectChampSelectTradeState"
}
},
"type": "object"
},
"LolChampSelectChampSelectTradeState": {
"enum": [
"AVAILABLE",
"BUSY",
"INVALID",
"RECEIVED",
"SENT",
"DECLINED",
"CANCELLED",
"ACCEPTED"
],
"type": "string"
},
"LolChampSelectChampionQuestSkinInfo": {
"properties": {
"splashPath": {
"type": "string"
},
"tiers": {
"items": {
"$ref": "#/components/schemas/LolChampSelectCollectionsChampionQuestSkin"
},
"type": "array"
},
"tilePath": {
"type": "string"
}
},
"type": "object"
},
"LolChampSelectChampionSelection": {
"properties": {
"banIntented": {
"type": "boolean"
},
"banIntentedByMe": {
"type": "boolean"
},
"isBanned": {
"type": "boolean"
},
"pickIntented": {
"type": "boolean"
},
"pickIntentedByMe": {
"type": "boolean"
},
"pickIntentedPosition": {
"type": "string"
},
"pickedByOtherOrBanned": {
"type": "boolean"
},
"selectedByMe": {
"type": "boolean"
}
},
"type": "object"
},
"LolChampSelectCollectionsChampionChroma": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"chromaPath": {
"type": "string"
},
"colors": {
"items": {
"type": "string"
},
"type": "array"
},
"disabled": {
"type": "boolean"
},
"id": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"ownership": {
"$ref": "#/components/schemas/LolChampSelectCollectionsOwnership"
},
"stillObtainable": {
"type": "boolean"
}
},
"type": "object"
},
"LolChampSelectCollectionsChampionMastery": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"championLevel": {
"format": "int32",
"type": "integer"
},
"championPoints": {
"format": "int32",
"type": "integer"
},
"chestGranted": {
"type": "boolean"
}
},
"type": "object"
},
"LolChampSelectCollectionsChampionMinimal": {
"properties": {
"banVoPath": {
"type": "string"
},
"baseSplashPath": {
"type": "string"
},
"chooseVoPath": {
"type": "string"
},
"disabledQueues": {
"items": {
"type": "string"
},
"type": "array"
},
"freeToPlay": {
"type": "boolean"
},
"id": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"ownership": {
"$ref": "#/components/schemas/LolChampSelectCollectionsOwnership"
},
"roles": {
"items": {
"type": "string"
},
"type": "array"
},
"squarePortraitPath": {
"type": "string"
},
"stingerSfxPath": {
"type": "string"
}
},
"type": "object"
},
"LolChampSelectCollectionsChampionQuestSkin": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"chromaPath": {
"type": "string"
},
"disabled": {
"type": "boolean"
},
"id": {
"format": "int32",
"type": "integer"
},
"isBase": {
"type": "boolean"
},
"name": {
"type": "string"
},
"ownership": {
"$ref": "#/components/schemas/LolChampSelectCollectionsOwnership"
},
"shortName": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"splashVideoPath": {
"type": "string"
},
"stage": {
"format": "int32",
"type": "integer"
},
"stillObtainable": {
"type": "boolean"
},
"tilePath": {
"type": "string"
}
},
"type": "object"
},
"LolChampSelectCollectionsChampionSkin": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"chromaPath": {
"type": "string"
},
"chromas": {
"items": {
"$ref": "#/components/schemas/LolChampSelectCollectionsChampionChroma"
},
"type": "array"
},
"disabled": {
"type": "boolean"
},
"emblems": {
"items": {
"$ref": "#/components/schemas/LolChampSelectCollectionsChampionSkinEmblem"
},
"type": "array"
},
"id": {
"format": "int32",
"type": "integer"
},
"isBase": {
"type": "boolean"
},
"name": {
"type": "string"
},
"ownership": {
"$ref": "#/components/schemas/LolChampSelectCollectionsOwnership"
},
"questSkinInfo": {
"$ref": "#/components/schemas/LolChampSelectChampionQuestSkinInfo"
},
"rarityGemPath": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"splashVideoPath": {
"type": "string"
},
"stillObtainable": {
"type": "boolean"
},
"tilePath": {
"type": "string"
}
},
"type": "object"
},
"LolChampSelectCollectionsChampionSkinEmblem": {
"properties": {
"emblemPath": {
"$ref": "#/components/schemas/LolChampSelectCollectionsChampionSkinEmblemPath"
},
"name": {
"type": "string"
},
"positions": {
"$ref": "#/components/schemas/LolChampSelectCollectionsChampionSkinEmblemPosition"
}
},
"type": "object"
},
"LolChampSelectCollectionsChampionSkinEmblemPath": {
"properties": {
"large": {
"type": "string"
},
"small": {
"type": "string"
}
},
"type": "object"
},
"LolChampSelectCollectionsChampionSkinEmblemPosition": {
"properties": {
"horizontal": {
"type": "string"
},
"vertical": {
"type": "string"
}
},
"type": "object"
},
"LolChampSelectCollectionsChampionSkinMinimal": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"chromaPath": {
"type": "string"
},
"disabled": {
"type": "boolean"
},
"id": {
"format": "int32",
"type": "integer"
},
"isBase": {
"type": "boolean"
},
"name": {
"type": "string"
},
"ownership": {
"$ref": "#/components/schemas/LolChampSelectCollectionsOwnership"
},
"splashPath": {
"type": "string"
},
"stillObtainable": {
"type": "boolean"
},
"tilePath": {
"type": "string"
}
},
"type": "object"
},
"LolChampSelectCollectionsOwnership": {
"properties": {
"freeToPlayReward": {
"type": "boolean"
},
"owned": {
"type": "boolean"
},
"rental": {
"$ref": "#/components/schemas/LolChampSelectCollectionsRental"
}
},
"type": "object"
},
"LolChampSelectCollectionsRental": {
"properties": {
"rented": {
"type": "boolean"
}
},
"type": "object"
},
"LolChampSelectEntitledFeatureState": {
"properties": {
"additionalRerolls": {
"format": "int32",
"type": "integer"
},
"unlockedSkinIds": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"LolChampSelectGameDataSummonerSpell": {
"properties": {
"iconPath": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChampSelectLegacyChampSelectAction": {
"properties": {
"actorCellId": {
"format": "int64",
"type": "integer"
},
"championId": {
"format": "int32",
"type": "integer"
},
"completed": {
"type": "boolean"
},
"id": {
"format": "int64",
"type": "integer"
},
"isAllyAction": {
"type": "boolean"
},
"isInProgress": {
"type": "boolean"
},
"pickTurn": {
"format": "int32",
"type": "integer"
},
"type": {
"type": "string"
}
},
"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"
},
"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": "#/components/schemas/LolChampSelectLegacyChampSelectBannedChampions"
},
"chatDetails": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampSelectChatRoomDetails"
},
"hasSimultaneousBans": {
"type": "boolean"
},
"hasSimultaneousPicks": {
"type": "boolean"
},
"isCustomGame": {
"type": "boolean"
},
"isSpectating": {
"type": "boolean"
},
"localPlayerCellId": {
"format": "int64",
"type": "integer"
},
"myTeam": {
"items": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampSelectPlayerSelection"
},
"type": "array"
},
"rerollsRemaining": {
"format": "int32",
"type": "integer"
},
"theirTeam": {
"items": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampSelectPlayerSelection"
},
"type": "array"
},
"timer": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampSelectTimer"
},
"trades": {
"items": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampSelectTradeContract"
},
"type": "array"
}
},
"type": "object"
},
"LolChampSelectLegacyChampSelectTimer": {
"properties": {
"adjustedTimeLeftInPhase": {
"format": "int64",
"type": "integer"
},
"internalNowInEpochMs": {
"format": "int64",
"type": "integer"
},
"isInfinite": {
"type": "boolean"
},
"phase": {
"type": "string"
},
"totalTimeInPhase": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChampSelectLegacyChampSelectTradeContract": {
"properties": {
"cellId": {
"format": "int64",
"type": "integer"
},
"id": {
"format": "int64",
"type": "integer"
},
"state": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampSelectTradeState"
}
},
"type": "object"
},
"LolChampSelectLegacyChampSelectTradeState": {
"enum": [
"AVAILABLE",
"BUSY",
"INVALID",
"RECEIVED",
"SENT"
],
"type": "string"
},
"LolChampSelectLegacyChampionSelectPreferences": {
"properties": {
"skins": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
},
"spells": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
},
"type": "object"
},
"LolChampSelectLegacyCollectionsChampion": {
"properties": {
"active": {
"type": "boolean"
},
"disabledQueues": {
"items": {
"type": "string"
},
"type": "array"
},
"freeToPlay": {
"type": "boolean"
},
"id": {
"format": "int32",
"type": "integer"
},
"ownership": {
"$ref": "#/components/schemas/LolChampSelectLegacyCollectionsOwnership"
}
},
"type": "object"
},
"LolChampSelectLegacyCollectionsOwnership": {
"properties": {
"freeToPlayReward": {
"type": "boolean"
},
"owned": {
"type": "boolean"
},
"rental": {
"$ref": "#/components/schemas/LolChampSelectLegacyCollectionsRental"
}
},
"type": "object"
},
"LolChampSelectLegacyCollectionsRental": {
"properties": {
"rented": {
"type": "boolean"
}
},
"type": "object"
},
"LolChampSelectLegacyGameflowGameClient": {
"properties": {
"running": {
"type": "boolean"
},
"visible": {
"type": "boolean"
}
},
"type": "object"
},
"LolChampSelectLegacyGameflowGameData": {
"properties": {
"queue": {
"$ref": "#/components/schemas/LolChampSelectLegacyQueue"
}
},
"type": "object"
},
"LolChampSelectLegacyGameflowGameDodge": {
"properties": {
"dodgeIds": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"state": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolChampSelectLegacyGameflowGameClient"
},
"gameData": {
"$ref": "#/components/schemas/LolChampSelectLegacyGameflowGameData"
},
"phase": {
"$ref": "#/components/schemas/LolChampSelectLegacyGameflowPhase"
}
},
"type": "object"
},
"LolChampSelectLegacyInventoryItemWithPayload": {
"properties": {
"itemId": {
"format": "int64",
"type": "integer"
},
"payload": {
"additionalProperties": true,
"type": "object"
}
},
"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": {
"connected": {
"type": "boolean"
},
"state": {
"$ref": "#/components/schemas/LolChampSelectLegacyLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChampSelectLegacyLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolChampSelectLegacyPlayerStatus": {
"properties": {
"currentLobbyStatus": {
"$ref": "#/components/schemas/LolChampSelectLegacyLobbyStatus"
},
"lastQueuedLobbyStatus": {
"$ref": "#/components/schemas/LolChampSelectLegacyLobbyStatus"
}
},
"type": "object"
},
"LolChampSelectLegacyQueue": {
"properties": {
"areFreeChampionsAllowed": {
"type": "boolean"
},
"gameTypeConfig": {
"$ref": "#/components/schemas/LolChampSelectLegacyQueueGameTypeConfig"
}
},
"type": "object"
},
"LolChampSelectLegacyQueueGameTypeConfig": {
"properties": {
"allowTrades": {
"type": "boolean"
},
"battleBoost": {
"type": "boolean"
},
"maxAllowableBans": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolChampSelectLegacySettingCategoryResource": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampionSelectPreferences"
},
"schemaVersion": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChampSelectLegacySummoner": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
},
"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"
},
"LolChampSelectLoginSession": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChampSelectMutedPlayerInfo": {
"properties": {
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChampSelectSettingsResource": {
"properties": {
"data": {
"additionalProperties": true,
"type": "object"
},
"schemaVersion": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChampSelectSfxNotification": {
"properties": {
"delayMillis": {
"format": "int64",
"type": "integer"
},
"eventType": {
"type": "string"
},
"path": {
"type": "string"
}
},
"type": "object"
},
"LolChampSelectSkinSelectorChildSkin": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"chromaPreviewPath": {
"type": "string"
},
"colors": {
"items": {
"type": "string"
},
"type": "array"
},
"disabled": {
"type": "boolean"
},
"id": {
"format": "int32",
"type": "integer"
},
"isBase": {
"type": "boolean"
},
"isChampionUnlocked": {
"type": "boolean"
},
"isUnlockedFromEntitledFeature": {
"type": "boolean"
},
"name": {
"type": "string"
},
"ownership": {
"$ref": "#/components/schemas/LolChampSelectCollectionsOwnership"
},
"parentSkinId": {
"format": "int32",
"type": "integer"
},
"shortName": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"splashVideoPath": {
"type": "string"
},
"stage": {
"format": "int32",
"type": "integer"
},
"stillObtainable": {
"type": "boolean"
},
"tilePath": {
"type": "string"
},
"unlocked": {
"type": "boolean"
}
},
"type": "object"
},
"LolChampSelectSkinSelectorInfo": {
"properties": {
"championName": {
"type": "string"
},
"isSkinGrantedFromBoost": {
"type": "boolean"
},
"selectedChampionId": {
"format": "int32",
"type": "integer"
},
"selectedSkinId": {
"format": "int32",
"type": "integer"
},
"showSkinSelector": {
"type": "boolean"
},
"skinSelectionDisabled": {
"type": "boolean"
}
},
"type": "object"
},
"LolChampSelectSkinSelectorSkin": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"childSkins": {
"items": {
"$ref": "#/components/schemas/LolChampSelectSkinSelectorChildSkin"
},
"type": "array"
},
"chromaPreviewPath": {
"type": "string"
},
"disabled": {
"type": "boolean"
},
"emblems": {
"items": {
"$ref": "#/components/schemas/LolChampSelectCollectionsChampionSkinEmblem"
},
"type": "array"
},
"groupSplash": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
},
"isBase": {
"type": "boolean"
},
"isChampionUnlocked": {
"type": "boolean"
},
"isUnlockedFromEntitledFeature": {
"type": "boolean"
},
"name": {
"type": "string"
},
"ownership": {
"$ref": "#/components/schemas/LolChampSelectCollectionsOwnership"
},
"rarityGemPath": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"splashVideoPath": {
"type": "string"
},
"stillObtainable": {
"type": "boolean"
},
"tilePath": {
"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"
},
"LolChampionsChampionQuestSkinInfo": {
"properties": {
"collectionCardPath": {
"type": "string"
},
"collectionDescription": {
"type": "string"
},
"descriptionInfo": {
"items": {
"$ref": "#/components/schemas/LolChampionsQuestSkinDescriptionInfo"
},
"type": "array"
},
"name": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"tiers": {
"items": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionQuestSkin"
},
"type": "array"
},
"tilePath": {
"type": "string"
},
"uncenteredSplashPath": {
"type": "string"
}
},
"type": "object"
},
"LolChampionsCollectionsChampion": {
"properties": {
"active": {
"type": "boolean"
},
"alias": {
"type": "string"
},
"banVoPath": {
"type": "string"
},
"baseLoadScreenPath": {
"type": "string"
},
"baseSplashPath": {
"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": "#/components/schemas/LolChampionsCollectionsOwnership"
},
"passive": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionSpell"
},
"purchased": {
"format": "int64",
"type": "integer"
},
"rankedPlayEnabled": {
"type": "boolean"
},
"roles": {
"items": {
"type": "string"
},
"type": "array"
},
"skins": {
"items": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionSkin"
},
"type": "array"
},
"spells": {
"items": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionSpell"
},
"type": "array"
},
"squarePortraitPath": {
"type": "string"
},
"stingerSfxPath": {
"type": "string"
},
"tacticalInfo": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionTacticalInfo"
},
"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": "#/components/schemas/LolChampionsCollectionsOwnership"
},
"stillObtainable": {
"type": "boolean"
}
},
"type": "object"
},
"LolChampionsCollectionsChampionMinimal": {
"properties": {
"active": {
"type": "boolean"
},
"alias": {
"type": "string"
},
"banVoPath": {
"type": "string"
},
"baseLoadScreenPath": {
"type": "string"
},
"baseSplashPath": {
"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": "#/components/schemas/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"
},
"LolChampionsCollectionsChampionQuestSkin": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"chromaPath": {
"type": "string"
},
"collectionSplashVideoPath": {
"type": "string"
},
"description": {
"type": "string"
},
"disabled": {
"type": "boolean"
},
"id": {
"format": "int32",
"type": "integer"
},
"isBase": {
"type": "boolean"
},
"lastSelected": {
"type": "boolean"
},
"loadScreenPath": {
"type": "string"
},
"name": {
"type": "string"
},
"ownership": {
"$ref": "#/components/schemas/LolChampionsCollectionsOwnership"
},
"shortName": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"splashVideoPath": {
"type": "string"
},
"stage": {
"format": "int32",
"type": "integer"
},
"stillObtainable": {
"type": "boolean"
},
"tilePath": {
"type": "string"
},
"uncenteredSplashPath": {
"type": "string"
}
},
"type": "object"
},
"LolChampionsCollectionsChampionSkin": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"chromaPath": {
"type": "string"
},
"chromas": {
"items": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionChroma"
},
"type": "array"
},
"collectionSplashVideoPath": {
"type": "string"
},
"disabled": {
"type": "boolean"
},
"emblems": {
"items": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionSkinEmblem"
},
"type": "array"
},
"featuresText": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
},
"isBase": {
"type": "boolean"
},
"lastSelected": {
"type": "boolean"
},
"loadScreenPath": {
"type": "string"
},
"name": {
"type": "string"
},
"ownership": {
"$ref": "#/components/schemas/LolChampionsCollectionsOwnership"
},
"questSkinInfo": {
"$ref": "#/components/schemas/LolChampionsChampionQuestSkinInfo"
},
"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": "#/components/schemas/LolChampionsCollectionsChampionSkinEmblemPath"
},
"name": {
"type": "string"
},
"positions": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolChampionsCollectionsOwnership"
},
"splashPath": {
"type": "string"
},
"stillObtainable": {
"type": "boolean"
},
"tilePath": {
"type": "string"
}
},
"type": "object"
},
"LolChampionsCollectionsChampionSpell": {
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolChampionsCollectionsChampionTacticalInfo": {
"properties": {
"damageType": {
"type": "string"
},
"difficulty": {
"format": "int32",
"type": "integer"
},
"style": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChampionsCollectionsOwnership": {
"properties": {
"freeToPlayReward": {
"type": "boolean"
},
"owned": {
"type": "boolean"
},
"rental": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolChampionsGameDataChampionSpell"
},
"roles": {
"items": {
"type": "string"
},
"type": "array"
},
"skins": {
"items": {
"$ref": "#/components/schemas/LolChampionsGameDataChampionSkin"
},
"type": "array"
},
"spells": {
"items": {
"$ref": "#/components/schemas/LolChampionsGameDataChampionSpell"
},
"type": "array"
},
"squarePortraitPath": {
"type": "string"
},
"stingerSfxPath": {
"type": "string"
},
"tacticalInfo": {
"$ref": "#/components/schemas/LolChampionsGameDataChampionTacticalInfo"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"LolChampionsGameDataChampionChroma": {
"properties": {
"chromaPath": {
"type": "string"
},
"colors": {
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChampionsGameDataChampionQuestSkin": {
"properties": {
"collectionSplashVideoPath": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
},
"loadScreenPath": {
"type": "string"
},
"name": {
"type": "string"
},
"shortName": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"splashVideoPath": {
"type": "string"
},
"stage": {
"format": "int32",
"type": "integer"
},
"tilePath": {
"type": "string"
},
"uncenteredSplashPath": {
"type": "string"
}
},
"type": "object"
},
"LolChampionsGameDataChampionSkin": {
"properties": {
"chromaPath": {
"type": "string"
},
"chromas": {
"items": {
"$ref": "#/components/schemas/LolChampionsGameDataChampionChroma"
},
"type": "array"
},
"collectionSplashVideoPath": {
"type": "string"
},
"emblems": {
"items": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionSkinEmblem"
},
"type": "array"
},
"featuresText": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
},
"loadScreenPath": {
"type": "string"
},
"name": {
"type": "string"
},
"questSkinInfo": {
"$ref": "#/components/schemas/LolChampionsGameDataQuestSkinInfo"
},
"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"
},
"LolChampionsGameDataChampionTacticalInfo": {
"properties": {
"damageType": {
"type": "string"
},
"difficulty": {
"format": "int32",
"type": "integer"
},
"style": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChampionsGameDataQuestSkinDescriptionInfo": {
"properties": {
"description": {
"type": "string"
},
"iconPath": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"LolChampionsGameDataQuestSkinInfo": {
"properties": {
"collectionCardPath": {
"type": "string"
},
"collectionDescription": {
"type": "string"
},
"descriptionInfo": {
"items": {
"$ref": "#/components/schemas/LolChampionsGameDataQuestSkinDescriptionInfo"
},
"type": "array"
},
"name": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"tiers": {
"items": {
"$ref": "#/components/schemas/LolChampionsGameDataChampionQuestSkin"
},
"type": "array"
},
"tilePath": {
"type": "string"
},
"uncenteredSplashPath": {
"type": "string"
}
},
"type": "object"
},
"LolChampionsLcdsDynamicClientConfig": {
"properties": {
"DisabledChampions": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"LolChampionsLoginSession": {
"properties": {
"connected": {
"type": "boolean"
},
"state": {
"$ref": "#/components/schemas/LolChampionsLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChampionsLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolChampionsLoyaltyStatus": {
"enum": [
"LEGACY",
"REWARDS_GRANT",
"EXPIRY",
"CHANGE",
"REVOKE",
"DISABLED"
],
"type": "string"
},
"LolChampionsLoyaltyStatusNotification": {
"properties": {
"status": {
"$ref": "#/components/schemas/LolChampionsLoyaltyStatus"
}
},
"type": "object"
},
"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"
},
"LolChampionsQuestSkinDescriptionInfo": {
"properties": {
"description": {
"type": "string"
},
"iconPath": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"LolChampionsSummoner": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChatAccountState": {
"enum": [
"offline",
"mobile",
"away",
"chat",
"dnd"
],
"type": "string"
},
"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"
},
"LolChatBlocked": {
"properties": {
"game_name": {
"type": "string"
},
"game_tag": {
"type": "string"
},
"name": {
"type": "string"
},
"pid": {
"type": "string"
}
},
"type": "object"
},
"LolChatBlockedList": {
"properties": {
"blocked": {
"items": {
"$ref": "#/components/schemas/LolChatBlocked"
},
"type": "array"
}
},
"type": "object"
},
"LolChatBlockedPlayerResource": {
"properties": {
"gameName": {
"type": "string"
},
"gameTag": {
"type": "string"
},
"icon": {
"format": "int32",
"type": "integer"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"pid": {
"type": "string"
},
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"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"
},
"P2PDomainName": {
"type": "string"
},
"PostGameDomainName": {
"type": "string"
}
},
"type": "object"
},
"LolChatChatFriendUpdate": {
"properties": {
"group": {
"type": "string"
},
"note": {
"type": "string"
},
"pid": {
"type": "string"
}
},
"type": "object"
},
"LolChatChatMessage": {
"properties": {
"body": {
"type": "string"
},
"cid": {
"type": "string"
},
"game_name": {
"type": "string"
},
"game_tag": {
"type": "string"
},
"id": {
"type": "string"
},
"mid": {
"type": "string"
},
"name": {
"type": "string"
},
"pid": {
"type": "string"
},
"read": {
"type": "boolean"
},
"time": {
"type": "string"
},
"type": {
"$ref": "#/components/schemas/LolChatMessageType"
}
},
"type": "object"
},
"LolChatChatMessageList": {
"properties": {
"messages": {
"items": {
"$ref": "#/components/schemas/LolChatChatMessage"
},
"type": "array"
}
},
"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": "#/components/schemas/LolChatChatPlatformLoginSessionState"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"userAuthToken": {
"type": "string"
},
"username": {
"type": "string"
}
},
"type": "object"
},
"LolChatChatPlatformLoginSessionState": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolChatChatServiceDynamicClientConfig": {
"properties": {
"ChatDomain": {
"$ref": "#/components/schemas/LolChatChatDomainConfig"
},
"LcuSocial": {
"$ref": "#/components/schemas/LolChatLcuSocialConfig"
}
},
"type": "object"
},
"LolChatChatSessionState": {
"enum": [
"disconnected",
"connecting",
"connected"
],
"type": "string"
},
"LolChatChatSettings": {
"properties": {
"bounceDockIconEnabled": {
"type": "boolean"
},
"chat-status-message": {
"type": "string"
},
"chatFilterDisabled": {
"type": "boolean"
},
"chatGBG": {
"type": "boolean"
},
"chatGroupMobile": {
"type": "boolean"
},
"chatGroupOffline": {
"type": "boolean"
},
"chatWindow": {
"$ref": "#/components/schemas/LolChatChatWindowSettings"
},
"chatWindowDockedHeight": {
"format": "int32",
"type": "integer"
},
"closed-conversations": {
"additionalProperties": {
"format": "int64",
"type": "integer"
},
"type": "object"
},
"friendRequestToastsDisabled": {
"type": "boolean"
},
"hidden-conversations": {
"additionalProperties": {
"format": "int64",
"type": "integer"
},
"type": "object"
},
"linkClickWarningEnabled": {
"type": "boolean"
},
"messageNotificationsEnabled": {
"type": "boolean"
},
"moreUnreadsEnabled": {
"type": "boolean"
},
"muted-conversations": {
"additionalProperties": {
"type": "integer"
},
"type": "object"
},
"recentlyPlayedFirstOpen": {
"type": "boolean"
},
"recentlyPlayedOpen": {
"type": "boolean"
},
"roster-group-collapsed": {
"additionalProperties": {
"type": "boolean"
},
"type": "object"
},
"showWhenTypingEnabled": {
"type": "boolean"
},
"sortBy": {
"type": "string"
},
"usePlayerPreferences": {
"type": "boolean"
}
},
"type": "object"
},
"LolChatChatSummoner": {
"properties": {
"displayName": {
"type": "string"
},
"profileIconId": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
},
"unnamed": {
"type": "boolean"
}
},
"type": "object"
},
"LolChatChatWindowSettings": {
"properties": {
"detached": {
"type": "boolean"
},
"height": {
"format": "int32",
"type": "integer"
},
"left": {
"format": "int32",
"type": "integer"
},
"top": {
"format": "int32",
"type": "integer"
},
"width": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChatCidBody": {
"properties": {
"cid": {
"type": "string"
}
},
"type": "object"
},
"LolChatConfigReadinessEnum": {
"enum": [
"NotReady",
"Ready",
"Disabled"
],
"type": "string"
},
"LolChatConfigStatus": {
"properties": {
"readiness": {
"$ref": "#/components/schemas/LolChatConfigReadinessEnum"
}
},
"type": "object"
},
"LolChatConfigType": {
"enum": [
"public",
"player"
],
"type": "string"
},
"LolChatContentCookies": {
"properties": {
"content_id": {
"type": "string"
},
"content_path": {
"type": "string"
},
"cookies": {
"items": {
"$ref": "#/components/schemas/LolChatcookie"
},
"type": "array"
}
},
"type": "object"
},
"LolChatConversation": {
"properties": {
"cid": {
"type": "string"
},
"mid": {
"type": "string"
},
"muted": {
"type": "boolean"
},
"type": {
"type": "string"
},
"unread_count": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChatConversationJoinFederated": {
"properties": {
"domain": {
"type": "string"
},
"hidden": {
"type": "boolean"
},
"id": {
"type": "string"
},
"password": {
"type": "string"
},
"targetRegion": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolChatConversationList": {
"properties": {
"conversations": {
"items": {
"$ref": "#/components/schemas/LolChatConversation"
},
"type": "array"
}
},
"type": "object"
},
"LolChatConversationMessageResource": {
"properties": {
"body": {
"type": "string"
},
"fromId": {
"type": "string"
},
"fromPid": {
"type": "string"
},
"fromSummonerId": {
"format": "int64",
"type": "integer"
},
"id": {
"type": "string"
},
"isHistorical": {
"type": "boolean"
},
"timestamp": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolChatConversationResource": {
"properties": {
"gameName": {
"type": "string"
},
"gameTag": {
"type": "string"
},
"id": {
"type": "string"
},
"inviterId": {
"type": "string"
},
"isMuted": {
"type": "boolean"
},
"lastMessage": {
"$ref": "#/components/schemas/LolChatConversationMessageResource"
},
"name": {
"type": "string"
},
"password": {
"type": "string"
},
"pid": {
"type": "string"
},
"targetRegion": {
"type": "string"
},
"type": {
"type": "string"
},
"unreadMessageCount": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChatConversationUpdate": {
"properties": {
"cid": {
"type": "string"
},
"hidden": {
"type": "boolean"
},
"muted": {
"type": "boolean"
}
},
"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"
},
"LolChatError": {
"properties": {
"cid": {
"type": "string"
},
"class": {
"type": "string"
},
"code": {
"type": "string"
},
"id": {
"type": "string"
},
"pid": {
"type": "string"
},
"subtype": {
"type": "string"
},
"text": {
"type": "string"
},
"ts": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolChatErrorList": {
"properties": {
"errors": {
"items": {
"$ref": "#/components/schemas/LolChatError"
},
"type": "array"
}
},
"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"
},
"LolChatFriend": {
"properties": {
"displayGroup": {
"type": "string"
},
"game_name": {
"type": "string"
},
"game_tag": {
"type": "string"
},
"group": {
"type": "string"
},
"name": {
"type": "string"
},
"note": {
"type": "string"
},
"pid": {
"type": "string"
},
"puuid": {
"type": "string"
},
"region": {
"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"
},
"LolChatFriendGroup": {
"properties": {
"collapsed": {
"type": "boolean"
},
"isMetaGroup": {
"type": "boolean"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolChatFriendGroupCreate": {
"properties": {
"collapsed": {
"type": "boolean"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolChatFriendGroupList": {
"properties": {
"groups": {
"items": {
"$ref": "#/components/schemas/LolChatFriendGroup"
},
"type": "array"
}
},
"type": "object"
},
"LolChatFriendGroupOrder": {
"properties": {
"groups": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolChatFriendGroupUpdate": {
"properties": {
"collapsed": {
"type": "boolean"
},
"name": {
"type": "string"
},
"new_name": {
"type": "string"
}
},
"type": "object"
},
"LolChatFriendList": {
"properties": {
"friends": {
"items": {
"$ref": "#/components/schemas/LolChatFriend"
},
"type": "array"
}
},
"type": "object"
},
"LolChatFriendRequest": {
"properties": {
"game_name": {
"type": "string"
},
"game_tag": {
"type": "string"
},
"name": {
"type": "string"
},
"note": {
"type": "string"
},
"pid": {
"type": "string"
},
"puuid": {
"type": "string"
},
"region": {
"type": "string"
},
"subscription": {
"$ref": "#/components/schemas/LolChatFriendSubscriptionType"
}
},
"type": "object"
},
"LolChatFriendRequestAdd": {
"properties": {
"game_name": {
"type": "string"
},
"game_tag": {
"type": "string"
},
"name": {
"type": "string"
},
"note": {
"type": "string"
},
"pid": {
"type": "string"
},
"puuid": {
"type": "string"
},
"region": {
"type": "string"
}
},
"type": "object"
},
"LolChatFriendRequestDirection": {
"enum": [
"in",
"out",
"both"
],
"type": "string"
},
"LolChatFriendRequestList": {
"properties": {
"requests": {
"items": {
"$ref": "#/components/schemas/LolChatFriendRequest"
},
"type": "array"
}
},
"type": "object"
},
"LolChatFriendRequestResource": {
"properties": {
"direction": {
"$ref": "#/components/schemas/LolChatFriendRequestDirection"
},
"gameName": {
"type": "string"
},
"gameTag": {
"type": "string"
},
"icon": {
"format": "int32",
"type": "integer"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"note": {
"type": "string"
},
"pid": {
"type": "string"
},
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChatFriendResource": {
"properties": {
"availability": {
"type": "string"
},
"displayGroupId": {
"format": "int32",
"type": "integer"
},
"displayGroupName": {
"type": "string"
},
"gameName": {
"type": "string"
},
"gameTag": {
"type": "string"
},
"groupId": {
"format": "int32",
"type": "integer"
},
"groupName": {
"type": "string"
},
"icon": {
"format": "int32",
"type": "integer"
},
"id": {
"type": "string"
},
"isP2PConversationMuted": {
"type": "boolean"
},
"lastSeenOnlineTimestamp": {
"type": "string"
},
"lol": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"name": {
"type": "string"
},
"note": {
"type": "string"
},
"patchline": {
"type": "string"
},
"pid": {
"type": "string"
},
"platformId": {
"type": "string"
},
"product": {
"type": "string"
},
"productName": {
"type": "string"
},
"puuid": {
"type": "string"
},
"statusMessage": {
"type": "string"
},
"summary": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"time": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChatFriendSubscriptionType": {
"enum": [
"pending_out",
"pending_in"
],
"type": "string"
},
"LolChatGameDataChampionSummary": {
"properties": {
"alias": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChatGameflowGameData": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"playerChampionSelections": {
"items": {
"$ref": "#/components/schemas/LolChatChampSelection"
},
"type": "array"
},
"queue": {
"$ref": "#/components/schemas/LolChatQueue"
},
"teamOne": {
"items": {
"$ref": "#/components/schemas/LolChatTeamPlayerEntry"
},
"type": "array"
},
"teamTwo": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolChatGameflowGameData"
},
"map": {
"$ref": "#/components/schemas/LolChatGameflowGameMap"
},
"phase": {
"$ref": "#/components/schemas/LolChatGameflowPhase"
}
},
"type": "object"
},
"LolChatGroupResource": {
"properties": {
"collapsed": {
"type": "boolean"
},
"id": {
"format": "int32",
"type": "integer"
},
"isLocalized": {
"type": "boolean"
},
"isMetaGroup": {
"type": "boolean"
},
"name": {
"type": "string"
},
"priority": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChatIdBody": {
"properties": {
"id": {
"type": "string"
}
},
"type": "object"
},
"LolChatLcuSocialConfig": {
"properties": {
"AggressiveScanning": {
"type": "boolean"
},
"ForceChatFilter": {
"type": "boolean"
},
"QueueJobGraceSeconds": {
"format": "int64",
"type": "integer"
},
"ReplaceRichMessages": {
"type": "boolean"
},
"SilenceChatWhileInGame": {
"type": "boolean"
},
"allowGroupByGame": {
"type": "boolean"
},
"gameNameTaglineEnabled": {
"type": "boolean"
},
"platformToRegionMap": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
},
"type": "object"
},
"LolChatLeagueDivision": {
"enum": [
"I",
"II",
"III",
"IV",
"V",
"NA"
],
"type": "string"
},
"LolChatLeagueQueueType": {
"enum": [
"NONE",
"RANKED_SOLO_5x5",
"RANKED_FLEX_SR",
"RANKED_FLEX_TT",
"RANKED_TFT"
],
"type": "string"
},
"LolChatLeagueTier": {
"enum": [
"NONE",
"IRON",
"BRONZE",
"SILVER",
"GOLD",
"PLATINUM",
"DIAMOND",
"MASTER",
"GRANDMASTER",
"CHALLENGER"
],
"type": "string"
},
"LolChatLobbyMember": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"isOwner": {
"type": "boolean"
}
},
"type": "object"
},
"LolChatLobbyPlayerStatus": {
"properties": {
"currentLobbyStatus": {
"$ref": "#/components/schemas/LolChatLobbyStatus"
},
"lastQueuedLobbyStatus": {
"$ref": "#/components/schemas/LolChatLobbyStatus"
}
},
"type": "object"
},
"LolChatLobbyStatus": {
"properties": {
"customSpectatorPolicy": {
"$ref": "#/components/schemas/LolChatQueueCustomGameSpectatorPolicy"
},
"isCustom": {
"type": "boolean"
},
"isLeader": {
"type": "boolean"
},
"isPracticeTool": {
"type": "boolean"
},
"queueId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChatMessage": {
"properties": {
"body": {
"type": "string"
},
"cid": {
"type": "string"
},
"game_name": {
"type": "string"
},
"game_tag": {
"type": "string"
},
"id": {
"type": "string"
},
"mid": {
"type": "string"
},
"name": {
"type": "string"
},
"pid": {
"type": "string"
},
"read": {
"type": "boolean"
},
"time": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolChatMessageList": {
"properties": {
"messages": {
"items": {
"$ref": "#/components/schemas/LolChatMessage"
},
"type": "array"
}
},
"type": "object"
},
"LolChatMessagePost": {
"properties": {
"cid": {
"type": "string"
},
"message": {
"type": "string"
},
"type": {
"$ref": "#/components/schemas/LolChatMessageType"
}
},
"type": "object"
},
"LolChatMessageSend": {
"properties": {
"message": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolChatMessageType": {
"enum": [
"chat",
"groupchat",
"dm",
"system"
],
"type": "string"
},
"LolChatMultiGamePresence": {
"properties": {
"actor": {
"type": "string"
},
"details": {
"type": "string"
},
"game_name": {
"type": "string"
},
"game_tag": {
"type": "string"
},
"location": {
"type": "string"
},
"msg": {
"type": "string"
},
"name": {
"type": "string"
},
"patchline": {
"type": "string"
},
"pid": {
"type": "string"
},
"platform": {
"type": "string"
},
"private": {
"type": "string"
},
"privateJwt": {
"type": "string"
},
"product": {
"type": "string"
},
"puuid": {
"type": "string"
},
"region": {
"type": "string"
},
"resource": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/LolChatAccountState"
},
"summary": {
"type": "string"
},
"time": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChatMultiGamePresenceList": {
"properties": {
"presences": {
"items": {
"$ref": "#/components/schemas/LolChatMultiGamePresence"
},
"type": "array"
}
},
"type": "object"
},
"LolChatMultiGamePresenceSharedPayload": {
"properties": {
"actor": {
"type": "string"
},
"details": {
"type": "string"
},
"location": {
"type": "string"
},
"patchline": {
"type": "string"
},
"platform": {
"type": "string"
},
"product": {
"type": "string"
},
"time": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChatMultiGamePresenceUpdate": {
"properties": {
"msg": {
"type": "string"
},
"private": {
"type": "string"
},
"privateJwt": {
"type": "string"
},
"shared": {
"$ref": "#/components/schemas/LolChatMultiGamePresenceSharedPayload"
},
"sharedJwt": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/LolChatAccountState"
}
},
"type": "object"
},
"LolChatMutedPlayerInfo": {
"properties": {
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChatNameBody": {
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LolChatParticipant": {
"properties": {
"cid": {
"type": "string"
},
"game_name": {
"type": "string"
},
"game_tag": {
"type": "string"
},
"muted": {
"type": "boolean"
},
"name": {
"type": "string"
},
"pid": {
"type": "string"
},
"puuid": {
"type": "string"
},
"region": {
"type": "string"
}
},
"type": "object"
},
"LolChatParticipantList": {
"properties": {
"participants": {
"items": {
"$ref": "#/components/schemas/LolChatParticipant"
},
"type": "array"
}
},
"type": "object"
},
"LolChatPatchlineMetadata": {
"properties": {
"content_cookies": {
"items": {
"$ref": "#/components/schemas/LolChatContentCookies"
},
"type": "array"
},
"content_paths": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"id": {
"type": "string"
},
"product_id": {
"type": "string"
}
},
"type": "object"
},
"LolChatPidBody": {
"properties": {
"pid": {
"type": "string"
}
},
"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"
},
"LolChatPresenceProduct": {
"properties": {
"product": {
"type": "string"
}
},
"type": "object"
},
"LolChatProductMetadata": {
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"patchlines": {
"additionalProperties": {
"$ref": "#/components/schemas/LolChatPatchlineMetadata"
},
"type": "object"
}
},
"type": "object"
},
"LolChatProductMetadataMap": {
"properties": {
"products": {
"additionalProperties": {
"$ref": "#/components/schemas/LolChatProductMetadata"
},
"type": "object"
}
},
"type": "object"
},
"LolChatQueue": {
"properties": {
"gameMode": {
"type": "string"
},
"gameTypeConfig": {
"$ref": "#/components/schemas/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"
},
"LolChatRankedQueueStats": {
"properties": {
"division": {
"$ref": "#/components/schemas/LolChatLeagueDivision"
},
"games": {
"format": "int32",
"type": "integer"
},
"isProvisional": {
"type": "boolean"
},
"queueType": {
"$ref": "#/components/schemas/LolChatLeagueQueueType"
},
"tier": {
"$ref": "#/components/schemas/LolChatLeagueTier"
},
"wins": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChatRankedStats": {
"properties": {
"highestPreviousSeasonAchievedDivision": {
"$ref": "#/components/schemas/LolChatLeagueDivision"
},
"highestPreviousSeasonAchievedTier": {
"$ref": "#/components/schemas/LolChatLeagueTier"
},
"highestRankedEntry": {
"$ref": "#/components/schemas/LolChatRankedQueueStats"
},
"rankedRegaliaLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolChatRsoAuthorization": {
"properties": {
"currentAccountId": {
"format": "int64",
"type": "integer"
},
"currentPlatformId": {
"type": "string"
},
"subject": {
"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"
},
"LolChatSession": {
"properties": {
"game_name": {
"type": "string"
},
"game_tag": {
"type": "string"
},
"loaded": {
"type": "boolean"
},
"name": {
"type": "string"
},
"pid": {
"type": "string"
},
"resource": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/LolChatChatSessionState"
}
},
"type": "object"
},
"LolChatSessionResource": {
"properties": {
"sessionExpire": {
"format": "int32",
"type": "integer"
},
"sessionState": {
"$ref": "#/components/schemas/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"
},
"puuid": {
"type": "string"
}
},
"type": "object"
},
"LolChatSummonerStatus": {
"properties": {
"ready": {
"type": "boolean"
}
},
"type": "object"
},
"LolChatTeamPlayerEntry": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerInternalName": {
"type": "string"
},
"summonerName": {
"type": "string"
}
},
"type": "object"
},
"LolChatTranslateRequest": {
"properties": {
"blocking": {
"type": "boolean"
},
"keys": {
"items": {
"type": "string"
},
"type": "array"
},
"locale": {
"type": "string"
},
"patchline": {
"type": "string"
},
"product_id": {
"type": "string"
}
},
"type": "object"
},
"LolChatTranslateResponse": {
"properties": {
"results": {
"items": {
"$ref": "#/components/schemas/LolChatTranslateResult"
},
"type": "array"
}
},
"type": "object"
},
"LolChatTranslateResult": {
"properties": {
"found": {
"type": "boolean"
},
"key": {
"type": "string"
},
"product_id": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LolChatUserResource": {
"properties": {
"availability": {
"type": "string"
},
"gameName": {
"type": "string"
},
"gameTag": {
"type": "string"
},
"icon": {
"format": "int32",
"type": "integer"
},
"id": {
"type": "string"
},
"lastSeenOnlineTimestamp": {
"type": "string"
},
"lol": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"name": {
"type": "string"
},
"patchline": {
"type": "string"
},
"pid": {
"type": "string"
},
"platformId": {
"type": "string"
},
"product": {
"type": "string"
},
"productName": {
"type": "string"
},
"puuid": {
"type": "string"
},
"statusMessage": {
"type": "string"
},
"summary": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"time": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolChatcookie": {
"properties": {
"domain": {
"type": "string"
},
"expires": {
"format": "int64",
"type": "integer"
},
"httponly": {
"type": "boolean"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"secure": {
"type": "boolean"
},
"url": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LolClashBlockedPlayerResource": {
"properties": {
"name": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashBracket": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"isComplete": {
"type": "boolean"
},
"matches": {
"items": {
"$ref": "#/components/schemas/BracketMatch"
},
"type": "array"
},
"period": {
"format": "int32",
"type": "integer"
},
"rosters": {
"items": {
"$ref": "#/components/schemas/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"
},
"LolClashBracketUpdateNotification": {
"properties": {
"bracketId": {
"format": "int64",
"type": "integer"
},
"currentMatchId": {
"format": "int64",
"type": "integer"
},
"notifyReason": {
"$ref": "#/components/schemas/LolClashRosterNotifyReason"
},
"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": {
"CheckPartiesRegistration": {
"type": "boolean"
},
"DisabledEvents": {
"items": {
"type": "string"
},
"type": "array"
},
"DisabledReason": {
"type": "string"
},
"EnabledState": {
"$ref": "#/components/schemas/LolClashClashState"
},
"EstimatedEnableTimeMillis": {
"format": "int64",
"type": "integer"
},
"EventSendingEnabled": {
"type": "boolean"
},
"HonorLevelRequired": {
"format": "int32",
"type": "integer"
},
"HonorRefreshRetrySeconds": {
"format": "int32",
"type": "integer"
},
"IconConfig": {
"type": "string"
},
"IsPlaymodeRestrictionEnabled": {
"type": "boolean"
},
"MaxTimeBeforeLockinNotifySeconds": {
"format": "int32",
"type": "integer"
},
"MinClashNotificationsSummonerLevel": {
"format": "int32",
"type": "integer"
},
"MinClashSummonerLevel": {
"format": "int32",
"type": "integer"
},
"RewardGrantRetryIntervalSeconds": {
"format": "int32",
"type": "integer"
},
"Visibility": {
"$ref": "#/components/schemas/LolClashClashVisibility"
},
"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"
},
"LolClashClashDisabledConfig": {
"properties": {
"disabledReason": {
"type": "string"
},
"estimatedEnableTimeMillis": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashClashSettingCategory": {
"properties": {
"simpleStateFlagIds": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolClashClashState": {
"enum": [
"Disabled",
"Enabled"
],
"type": "string"
},
"LolClashClashVisibility": {
"enum": [
"Hidden",
"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"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolClashEogPlayerUpdateDTO": {
"properties": {
"bid": {
"format": "int32",
"type": "integer"
},
"bracketSize": {
"format": "int32",
"type": "integer"
},
"earnedRewards": {
"items": {
"$ref": "#/components/schemas/ClashRewardDefinition"
},
"type": "array"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"lowestPosition": {
"format": "int32",
"type": "integer"
},
"rewardProgress": {
"items": {
"$ref": "#/components/schemas/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"
},
"LolClashFindPlayers": {
"properties": {
"count": {
"format": "int32",
"type": "integer"
},
"invitationId": {
"type": "string"
},
"memberId": {
"format": "int64",
"type": "integer"
},
"page": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolClashFindTeams": {
"properties": {
"count": {
"format": "int32",
"type": "integer"
},
"page": {
"format": "int32",
"type": "integer"
},
"tournamentId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashFoundationError": {
"enum": [
"CLASH_NOT_INITIALIZED",
"CLASH_DISABLED",
"DESERIALIZATION_FAILED",
"GAMEFLOW_UNAVAILABLE",
"LOL_INVENTORY_NOT_READY",
"INVALID_SIMPLE_STATE_FLAG"
],
"type": "string"
},
"LolClashGameflowAvailability": {
"properties": {
"isAvailable": {
"type": "boolean"
}
},
"type": "object"
},
"LolClashGameflowGameDodge": {
"properties": {
"dodgeIds": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"state": {
"$ref": "#/components/schemas/LolClashMatchmakingDodgeState"
}
},
"type": "object"
},
"LolClashGameflowPartiesRegistrationStatus": {
"properties": {
"complete": {
"type": "boolean"
},
"errorCodes": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolClashGameflowPhase": {
"enum": [
"None",
"Lobby",
"Matchmaking",
"CheckedIntoTournament",
"ReadyCheck",
"ChampSelect",
"GameStart",
"FailedToLaunch",
"InProgress",
"Reconnect",
"WaitingForStats",
"PreEndOfGame",
"EndOfGame",
"TerminatedInError"
],
"type": "string"
},
"LolClashGameflowSession": {
"properties": {
"phase": {
"$ref": "#/components/schemas/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"
},
"LolClashLftState": {
"properties": {
"lft": {
"type": "boolean"
},
"primaryPos": {
"type": "string"
},
"secondaryPos": {
"type": "string"
}
},
"type": "object"
},
"LolClashLoginSession": {
"properties": {
"state": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/LolClashMatchmakingDodgeWarning"
},
"playerResponse": {
"$ref": "#/components/schemas/LolClashMatchmakingReadyCheckResponse"
},
"state": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolClashMatchmakingDodgeData"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"readyCheck": {
"$ref": "#/components/schemas/LolClashMatchmakingReadyCheckResource"
}
},
"type": "object"
},
"LolClashMemberBanUnbanNotification": {
"properties": {
"notifyPlayerId": {
"format": "int64",
"type": "integer"
},
"notifyPuuid": {
"type": "string"
},
"notifyReason": {
"$ref": "#/components/schemas/LolClashNotifyReason"
},
"playerId": {
"format": "int64",
"type": "integer"
},
"reason": {
"type": "string"
},
"tournaments": {
"items": {
"$ref": "#/components/schemas/MemberBanUnbanTournament"
},
"type": "array"
}
},
"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": "#/components/schemas/LolClashGameflowPhase"
},
"isPlaymodeRestricted": {
"type": "boolean"
},
"loginTime": {
"format": "int64",
"type": "integer"
},
"readyCheckInfo": {
"$ref": "#/components/schemas/LolClashReadyCheckInfo"
}
},
"type": "object"
},
"LolClashNotifyReason": {
"enum": [
"SUGGESTION",
"DECLINE_SUGGESTION",
"ACCEPT_SUGGESTION",
"REVOKE_SUGGESTION",
"DECLINE_SELFJOIN",
"ACCEPT_SELFJOIN",
"REVOKE_SELFJOIN",
"SELFJOIN",
"READY",
"UNREADY",
"OWNER_CLOSE",
"DISMISS",
"ROSTER_DELETE",
"OWNER_TRANSFER",
"CHANGE_LOGO",
"CHANGE_NAME",
"CHANGE_SHORTNAME",
"CHANGE_POSITION",
"CHANGE_NAMETAGLOGO",
"CHANGE_LFT",
"INVITE",
"RESENT_INVITE",
"DECLINE_INVITE",
"ACCEPT_INVITE",
"REVOKE_INVITE",
"LEAVE",
"CAPTAIN_LEAVE",
"KICK",
"SET_TICKET",
"OFFER_TICKET",
"REVOKED_TICKET",
"DECLINE_TICKET",
"ACCEPT_TICKET",
"REWARD_GRANT_FAILED",
"REWARD_GRANT_RETRY",
"REVERTED_REGISTRATION",
"BAN",
"UNBAN",
"MEMBER_BAN",
"TEAMMATE_BAN",
"TEAMMATE_UNBAN"
],
"type": "string"
},
"LolClashOfferTicketRequest": {
"properties": {
"ticketAmount": {
"format": "int32",
"type": "integer"
},
"ticketType": {
"$ref": "#/components/schemas/TicketType"
}
},
"type": "object"
},
"LolClashPendingRosterNotification": {
"properties": {
"notifyReason": {
"$ref": "#/components/schemas/LolClashNotifyReason"
},
"pendingRoster": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolClashPlayerState"
},
"shortName": {
"type": "string"
},
"startTimeMs": {
"format": "int64",
"type": "integer"
},
"tournamentId": {
"format": "int64",
"type": "integer"
},
"tournamentState": {
"$ref": "#/components/schemas/LolClashTournamentState"
}
},
"type": "object"
},
"LolClashPlayerData": {
"properties": {
"isClashBanned": {
"type": "boolean"
},
"lft": {
"type": "boolean"
},
"primaryPos": {
"type": "string"
},
"secondaryPos": {
"type": "string"
},
"tickets": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
},
"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": {
"keySuffix": {
"type": "string"
},
"notification": {
"$ref": "#/components/schemas/LolClashPlayerNotification"
},
"notifyReason": {
"$ref": "#/components/schemas/LolClashNotifyReason"
},
"rosterNotifyReason": {
"$ref": "#/components/schemas/LolClashRosterNotifyReason"
},
"sourceSummonerId": {
"format": "int64",
"type": "integer"
},
"targetSummonerId": {
"format": "int64",
"type": "integer"
},
"tournamentNotifyReason": {
"$ref": "#/components/schemas/LolClashTournamentNotifyReason"
}
},
"type": "object"
},
"LolClashPlayerRewards": {
"properties": {
"seasonVp": {
"format": "int32",
"type": "integer"
},
"themeVp": {
"items": {
"$ref": "#/components/schemas/LolClashThemeVp"
},
"type": "array"
}
},
"type": "object"
},
"LolClashPlayerState": {
"enum": [
"NO_ROSTER",
"PENDING_ROSTER",
"REGISTERED_ROSTER",
"BRACKET_ROSTER",
"ELIMINATED"
],
"type": "string"
},
"LolClashPlayerTournamentData": {
"properties": {
"bracketId": {
"format": "int64",
"type": "integer"
},
"isSub": {
"type": "boolean"
},
"rosterId": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/LolClashPlayerState"
}
},
"type": "object"
},
"LolClashPlayerUpdateNotification": {
"properties": {
"notifyReason": {
"$ref": "#/components/schemas/LolClashNotifyReason"
},
"player": {
"$ref": "#/components/schemas/PlayerDTO"
}
},
"type": "object"
},
"LolClashPlaymodeRestrictedInfo": {
"properties": {
"isRestricted": {
"type": "boolean"
},
"phaseId": {
"format": "int64",
"type": "integer"
},
"presenceState": {
"$ref": "#/components/schemas/LolClashPresenceState"
},
"readyForVoice": {
"type": "boolean"
},
"rosterId": {
"type": "string"
},
"tournamentId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashPresenceState": {
"enum": [
"NONE",
"LOCKED_IN",
"SCOUTING"
],
"type": "string"
},
"LolClashProfileInfo": {
"properties": {
"honorLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolClashQueue": {
"properties": {
"areFreeChampionsAllowed": {
"type": "boolean"
},
"category": {
"$ref": "#/components/schemas/LolClashQueueGameCategory"
},
"description": {
"type": "string"
},
"detailedDescription": {
"type": "string"
},
"gameMode": {
"type": "string"
},
"gameTypeConfig": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolClashQueueAvailability"
},
"queueRewards": {
"$ref": "#/components/schemas/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",
"Alpha"
],
"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"
},
"LolClashRankedScoutingMember": {
"properties": {
"championScoutingData": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/LolClashMatchmakingReadyCheckResource"
},
"timestampLastClashGameflowDodge": {
"format": "int64",
"type": "integer"
},
"timestampReceived": {
"format": "int64",
"type": "integer"
},
"timestampResponseComplete": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashRegisteredRosterNotification": {
"properties": {
"notifyReason": {
"$ref": "#/components/schemas/LolClashRosterNotifyReason"
},
"roster": {
"$ref": "#/components/schemas/RosterDTO"
}
},
"type": "object"
},
"LolClashRoster": {
"properties": {
"availableLogos": {
"items": {
"$ref": "#/components/schemas/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"
},
"lft": {
"type": "boolean"
},
"losses": {
"format": "int32",
"type": "integer"
},
"members": {
"items": {
"$ref": "#/components/schemas/LolClashRosterMember"
},
"type": "array"
},
"name": {
"type": "string"
},
"numCompletedPeriods": {
"format": "int32",
"type": "integer"
},
"phaseInfos": {
"items": {
"$ref": "#/components/schemas/LolClashRosterPhaseInfo"
},
"type": "array"
},
"points": {
"format": "int32",
"type": "integer"
},
"shortName": {
"type": "string"
},
"suggestedInvites": {
"items": {
"$ref": "#/components/schemas/LolClashSuggestedInvite"
},
"type": "array"
},
"tier": {
"format": "int32",
"type": "integer"
},
"tournamentId": {
"format": "int64",
"type": "integer"
},
"wins": {
"format": "int32",
"type": "integer"
},
"withdraw": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolClashRosterNotifyReason"
},
"rosterDynamicState": {
"$ref": "#/components/schemas/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": {
"buyinType": {
"$ref": "#/components/schemas/TicketType"
},
"currentBuyin": {
"format": "int32",
"type": "integer"
},
"incomingOffers": {
"items": {
"$ref": "#/components/schemas/LolClashTicketOffer"
},
"type": "array"
},
"inviteType": {
"$ref": "#/components/schemas/InviteType"
},
"inviterId": {
"format": "int64",
"type": "integer"
},
"isSubForOtherTeam": {
"type": "boolean"
},
"isSubbedOut": {
"type": "boolean"
},
"isSubstitute": {
"type": "boolean"
},
"position": {
"$ref": "#/components/schemas/Position"
},
"previousBuyin": {
"format": "int32",
"type": "integer"
},
"replacedSummonerId": {
"format": "int64",
"type": "integer"
},
"state": {
"$ref": "#/components/schemas/LolClashRosterMemberState"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"tier": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolClashRosterMemberState": {
"enum": [
"DECLINED",
"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",
"PHASE_BACKOUT",
"PERIOD_CANCEL",
"PERIOD_SPLIT",
"GAME_COMPLETED",
"GAME_SCHEDULED",
"GAME_STARTED",
"GAME_STARTED_ERROR",
"GAME_END_ERROR",
"QUEUE_DODGE",
"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",
"ROUND_COMPLETE",
"NO_SHOW_PING",
"TIER_CHANGED",
"BRACKET_ROSTER_REMOVED",
"BRACKET_ROSTER_REPLACED",
"CANNOT_FIND_MATCH",
"BANNED_SMURF",
"BANNED_SMURF_TEAMMATE",
"BANNED_SMURF_OPPONENT",
"TICKET_CHARGED",
"TICKET_REFUNDED",
"TICKET_COULD_NOT_BE_CHARGED",
"SUB_INVITE_SELF",
"GAME_START_RETRY",
"GAME_START_RETRY_SUMMONERS",
"GAME_START_RETRY_OPPONENT",
"GAME_START_FAILED",
"GAME_START_FAILED_SUMMONERS",
"GAME_START_FAILED_OPPONENT",
"GAME_RESCHEDULED"
],
"type": "string"
},
"LolClashRosterPeriodAggregatedStats": {
"properties": {
"bracketSize": {
"format": "int32",
"type": "integer"
},
"matchStats": {
"items": {
"$ref": "#/components/schemas/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": {
"checkinTime": {
"format": "int64",
"type": "integer"
},
"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": "#/components/schemas/LolClashRosterNotifyReason"
},
"playerNotificationDTO": {
"$ref": "#/components/schemas/PlayerDTO"
},
"roster": {
"$ref": "#/components/schemas/RosterDTO"
},
"sourcePlayerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashRosterStats": {
"properties": {
"endTimeMs": {
"format": "int64",
"type": "integer"
},
"periodStats": {
"items": {
"$ref": "#/components/schemas/LolClashRosterPeriodAggregatedStats"
},
"type": "array"
},
"playerStats": {
"additionalProperties": {
"$ref": "#/components/schemas/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"
},
"tournamentNameLocKeySecondary": {
"type": "string"
},
"tournamentPeriods": {
"format": "int32",
"type": "integer"
},
"tournamentThemeId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolClashRosterWithdrawNotification": {
"properties": {
"notifyReason": {
"$ref": "#/components/schemas/LolClashRosterNotifyReason"
},
"rosterId": {
"format": "int64",
"type": "integer"
},
"sourcePlayerId": {
"format": "int64",
"type": "integer"
},
"tournamentId": {
"format": "int64",
"type": "integer"
},
"version": {
"format": "int32",
"type": "integer"
},
"withdraw": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolClashScoutingChampionMastery"
},
"type": "array"
},
"topSeasonChampions": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolClashKdaClassification"
},
"winCount": {
"format": "int32",
"type": "integer"
},
"winRate": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolClashSetPositionRequest": {
"properties": {
"position": {
"$ref": "#/components/schemas/Position"
}
},
"type": "object"
},
"LolClashSetTicketRequest": {
"properties": {
"ticketAmount": {
"format": "int32",
"type": "integer"
},
"ticketType": {
"$ref": "#/components/schemas/TicketType"
}
},
"type": "object"
},
"LolClashSettingCategory": {
"properties": {
"data": {
"additionalProperties": true,
"type": "object"
},
"schemaVersion": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolClashSimpleStateFlag": {
"properties": {
"id": {
"type": "string"
},
"status": {
"$ref": "#/components/schemas/LolClashSimpleStateStatus"
}
},
"type": "object"
},
"LolClashSimpleStateStatus": {
"enum": [
"UNACKNOWLEDGED",
"ACKNOWLEDGED"
],
"type": "string"
},
"LolClashSuggestedInvite": {
"properties": {
"suggesterSummonerId": {
"format": "int64",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashSuggestionInvite": {
"properties": {
"inviteePlayers": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"inviterId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashSuggestionInvitee": {
"properties": {
"captainId": {
"format": "int64",
"type": "integer"
},
"inviteeId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashTeamOpenState": {
"properties": {
"captainId": {
"format": "int64",
"type": "integer"
},
"invitationId": {
"type": "string"
},
"openTeam": {
"type": "boolean"
}
},
"type": "object"
},
"LolClashThemeVp": {
"properties": {
"themeId": {
"format": "int32",
"type": "integer"
},
"vp": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolClashThirdPartyApiPlayer": {
"properties": {
"role": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashThirdPartyApiRoster": {
"properties": {
"captain": {
"$ref": "#/components/schemas/LolClashThirdPartyApiPlayer"
},
"members": {
"items": {
"$ref": "#/components/schemas/LolClashThirdPartyApiPlayer"
},
"type": "array"
}
},
"type": "object"
},
"LolClashTicketOffer": {
"properties": {
"amount": {
"format": "int32",
"type": "integer"
},
"isAccepted": {
"type": "boolean"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"ticketType": {
"$ref": "#/components/schemas/TicketType"
}
},
"type": "object"
},
"LolClashTournament": {
"properties": {
"allowRosterCreation": {
"type": "boolean"
},
"bracketFormationInitDelayMs": {
"format": "int64",
"type": "integer"
},
"bracketFormationIntervalMs": {
"format": "int64",
"type": "integer"
},
"bracketSize": {
"type": "string"
},
"buyInOptions": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"buyInOptionsPremium": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"endTimeMs": {
"format": "int64",
"type": "integer"
},
"entryFee": {
"format": "int32",
"type": "integer"
},
"id": {
"format": "int64",
"type": "integer"
},
"isHonorRestrictionEnabled": {
"type": "boolean"
},
"isRankedRestrictionEnabled": {
"type": "boolean"
},
"isSmsRestrictionEnabled": {
"type": "boolean"
},
"lastThemeOfSeason": {
"type": "boolean"
},
"lft": {
"type": "boolean"
},
"maxInvites": {
"format": "int32",
"type": "integer"
},
"maxSubstitutes": {
"format": "int32",
"type": "integer"
},
"maxSuggestionsPerPlayer": {
"format": "int32",
"type": "integer"
},
"nameLocKey": {
"type": "string"
},
"nameLocKeySecondary": {
"type": "string"
},
"phases": {
"items": {
"$ref": "#/components/schemas/LolClashTournamentPhase"
},
"type": "array"
},
"resumeTime": {
"format": "int64",
"type": "integer"
},
"rewardConfig": {
"items": {
"$ref": "#/components/schemas/ClashRewardConfigClient"
},
"type": "array"
},
"rosterCreateDeadline": {
"format": "int64",
"type": "integer"
},
"rosterSize": {
"format": "int32",
"type": "integer"
},
"scoutingDurationMs": {
"format": "int64",
"type": "integer"
},
"startTimeMs": {
"format": "int64",
"type": "integer"
},
"status": {
"$ref": "#/components/schemas/TournamentStatusEnum"
},
"themeId": {
"format": "int32",
"type": "integer"
},
"tierConfigs": {
"items": {
"$ref": "#/components/schemas/TierConfig"
},
"type": "array"
}
},
"type": "object"
},
"LolClashTournamentGameEnd": {
"properties": {
"bracketId": {
"format": "int64",
"type": "integer"
},
"oldBracket": {
"$ref": "#/components/schemas/LolClashBracket"
},
"tournamentId": {
"format": "int64",
"type": "integer"
},
"tournamentNameLocKey": {
"type": "string"
},
"tournamentNameLocKeySecondary": {
"type": "string"
}
},
"type": "object"
},
"LolClashTournamentHistoryAndWinners": {
"properties": {
"tournamentHistory": {
"items": {
"$ref": "#/components/schemas/LolClashTournament"
},
"type": "array"
},
"tournamentWinners": {
"$ref": "#/components/schemas/LolClashTournamentWinnerHistory"
}
},
"type": "object"
},
"LolClashTournamentNotifyReason": {
"enum": [
"NEW_TOURNAMENT",
"UPDATE_TOURNAMENT",
"CANCEL_TOURNAMENT",
"CANCEL_PERIOD",
"ADD_PHASE",
"UPDATE_PHASE",
"REVERT_PHASE",
"UPDATE_STATUS"
],
"type": "string"
},
"LolClashTournamentPhase": {
"properties": {
"cancelled": {
"type": "boolean"
},
"capacityStatus": {
"$ref": "#/components/schemas/CapacityEnum"
},
"id": {
"format": "int64",
"type": "integer"
},
"limitTiers": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"lockinStartTime": {
"format": "int64",
"type": "integer"
},
"period": {
"format": "int32",
"type": "integer"
},
"scoutingStartTime": {
"format": "int64",
"type": "integer"
},
"tournamentId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashTournamentPhaseProgressNotificationDTO": {
"properties": {
"capacityStatus": {
"$ref": "#/components/schemas/CapacityEnum"
},
"phaseId": {
"format": "int64",
"type": "integer"
},
"tournamentId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashTournamentState": {
"enum": [
"UPCOMING",
"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": "#/components/schemas/LolClashTournamentState"
},
"tournamentId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashTournamentSummary": {
"properties": {
"bracketId": {
"format": "int64",
"type": "integer"
},
"rosterId": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/LolClashTournamentState"
},
"tournamentId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashTournamentUpdatedNotification": {
"properties": {
"currentRetry": {
"format": "int32",
"type": "integer"
},
"maxRetry": {
"format": "int32",
"type": "integer"
},
"missingPlayerIds": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"notifyReason": {
"$ref": "#/components/schemas/LolClashRosterNotifyReason"
},
"retrySeconds": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashTournamentUpdatedNotificationDTO": {
"properties": {
"reason": {
"$ref": "#/components/schemas/LolClashTournamentNotifyReason"
},
"relevantPhaseId": {
"format": "int64",
"type": "integer"
},
"tournament": {
"$ref": "#/components/schemas/TournamentDTO"
},
"tournamentId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolClashTournamentWinnerHistory": {
"properties": {
"tournamentId": {
"format": "int64",
"type": "integer"
},
"winners": {
"items": {
"$ref": "#/components/schemas/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"
},
"LolCollectionsAccountIdAndSummonerId": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"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"
},
"formattedChampionPoints": {
"type": "string"
},
"formattedMasteryGoal": {
"type": "string"
},
"highestGrade": {
"type": "string"
},
"lastPlayTime": {
"format": "int64",
"type": "integer"
},
"playerId": {
"format": "int64",
"type": "integer"
},
"tokensEarned": {
"format": "int32",
"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": "#/components/schemas/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"
},
"LolCollectionsCollectionsSummonerBackdrop": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"backdropImage": {
"type": "string"
},
"backdropMaskColor": {
"type": "string"
},
"backdropType": {
"$ref": "#/components/schemas/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",
"highest-mastery",
"specified-skin"
],
"type": "string"
},
"LolCollectionsCollectionsSummonerSpells": {
"properties": {
"spells": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolCollectionsCollectionsTopChampionMasteries": {
"properties": {
"masteries": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/LolCollectionsGameDataChampionMasteryTree"
}
},
"type": "object"
},
"LolCollectionsGameDataChampionMasteryGroup": {
"properties": {
"id": {
"format": "int32",
"type": "integer"
},
"rows": {
"items": {
"$ref": "#/components/schemas/LolCollectionsGameDataChampionMasteryRow"
},
"type": "array"
}
},
"type": "object"
},
"LolCollectionsGameDataChampionMasteryRow": {
"properties": {
"masteries": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"LolCollectionsGameDataChampionMasteryTree": {
"properties": {
"groups": {
"items": {
"$ref": "#/components/schemas/LolCollectionsGameDataChampionMasteryGroup"
},
"type": "array"
}
},
"type": "object"
},
"LolCollectionsGameDataChampionQuestSkin": {
"properties": {
"id": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"splashVideoPath": {
"type": "string"
}
},
"type": "object"
},
"LolCollectionsGameDataChampionSkin": {
"properties": {
"id": {
"format": "int32",
"type": "integer"
},
"isBase": {
"type": "boolean"
},
"name": {
"type": "string"
},
"questSkinInfo": {
"$ref": "#/components/schemas/LolCollectionsGameDataQuestSkinInfo"
},
"splashPath": {
"type": "string"
},
"splashVideoPath": {
"type": "string"
}
},
"type": "object"
},
"LolCollectionsGameDataChampionSummary": {
"properties": {
"id": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCollectionsGameDataQuestSkinInfo": {
"properties": {
"tiers": {
"items": {
"$ref": "#/components/schemas/LolCollectionsGameDataChampionQuestSkin"
},
"type": "array"
}
},
"type": "object"
},
"LolCollectionsGameDataSplashMetadata": {
"properties": {
"CalculatedColor": {
"type": "string"
},
"OverrideColor": {
"type": "string"
}
},
"type": "object"
},
"LolCollectionsInventoryItem": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"ownershipType": {
"$ref": "#/components/schemas/LolCollectionsItemOwnershipType"
},
"purchaseDate": {
"type": "string"
},
"quantity": {
"format": "int64",
"type": "integer"
},
"uuid": {
"type": "string"
}
},
"type": "object"
},
"LolCollectionsInventoryItemDTO": {
"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"
},
"loyalty": {
"type": "boolean"
},
"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"
},
"LolCollectionsInventoryItemWithPayload": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"ownershipType": {
"$ref": "#/components/schemas/LolCollectionsItemOwnershipType"
},
"payload": {
"additionalProperties": true,
"type": "object"
},
"purchaseDate": {
"type": "string"
},
"quantity": {
"format": "int64",
"type": "integer"
},
"uuid": {
"type": "string"
}
},
"type": "object"
},
"LolCollectionsItemOwnershipType": {
"enum": [
"OWNED",
"RENTED",
"LOYALTY",
"F2P"
],
"type": "string"
},
"LolCollectionsLcdsDynamicClientConfig": {
"properties": {
"DisabledChampions": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"LolCollectionsLoginSession": {
"properties": {
"connected": {
"type": "boolean"
},
"state": {
"$ref": "#/components/schemas/LolCollectionsLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolCollectionsLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolCollectionsNumberFormattingBehavior": {
"properties": {
"digitsForThousandsSeperator": {
"format": "int32",
"type": "integer"
},
"trimTrailingZerosAfterDecimal": {
"type": "boolean"
},
"westernNumberGrouping": {
"type": "boolean"
}
},
"type": "object"
},
"LolCollectionsNumberFormattingData": {
"properties": {
"billionAbbreviation": {
"type": "string"
},
"decimalSeperator": {
"type": "string"
},
"hourAbbreviation": {
"type": "string"
},
"kilometersAbbreviation": {
"type": "string"
},
"metersAbbreviation": {
"type": "string"
},
"millionAbbreviation": {
"type": "string"
},
"minuteAbbreviation": {
"type": "string"
},
"numberFormattingBehavior": {
"$ref": "#/components/schemas/LolCollectionsNumberFormattingBehavior"
},
"oneHundredMillionAbbreviation": {
"type": "string"
},
"percentageFormat": {
"type": "string"
},
"secondAbbreviation": {
"type": "string"
},
"tenThousandAbbreviation": {
"type": "string"
},
"thousandAbbreviation": {
"type": "string"
},
"thousandSeperator": {
"type": "string"
},
"trillionAbbreviation": {
"type": "string"
}
},
"type": "object"
},
"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"
},
"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"
},
"LolContentTargetingAccountIdAndSummonerId": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolContentTargetingCollectionsChampionMastery": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"championLevel": {
"format": "int32",
"type": "integer"
},
"championPoints": {
"format": "int32",
"type": "integer"
},
"lastPlayTime": {
"format": "int64",
"type": "integer"
},
"playerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolContentTargetingContentTargetingFilterResponse": {
"properties": {
"filters": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolContentTargetingContentTargetingLocaleResponse": {
"properties": {
"locale": {
"type": "string"
}
},
"type": "object"
},
"LolContentTargetingGameflowGameData": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"queue": {
"$ref": "#/components/schemas/LolContentTargetingQueue"
}
},
"type": "object"
},
"LolContentTargetingGameflowPhase": {
"enum": [
"None",
"Lobby",
"Matchmaking",
"CheckedIntoTournament",
"ReadyCheck",
"ChampSelect",
"GameStart",
"FailedToLaunch",
"InProgress",
"Reconnect",
"WaitingForStats",
"PreEndOfGame",
"EndOfGame",
"TerminatedInError"
],
"type": "string"
},
"LolContentTargetingGameflowSession": {
"properties": {
"gameData": {
"$ref": "#/components/schemas/LolContentTargetingGameflowGameData"
},
"phase": {
"$ref": "#/components/schemas/LolContentTargetingGameflowPhase"
}
},
"type": "object"
},
"LolContentTargetingGeoInfo": {
"properties": {
"city": {
"type": "string"
},
"country": {
"type": "string"
},
"region": {
"type": "string"
}
},
"type": "object"
},
"LolContentTargetingGeoInfoResponse": {
"properties": {
"errorMessage": {
"type": "string"
},
"geoInfo": {
"$ref": "#/components/schemas/LolContentTargetingGeoInfo"
},
"isInitialized": {
"type": "boolean"
},
"isLatest": {
"type": "boolean"
},
"success": {
"type": "boolean"
}
},
"type": "object"
},
"LolContentTargetingLoginSession": {
"properties": {
"idToken": {
"type": "string"
},
"puuid": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/LolContentTargetingLoginSessionState"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolContentTargetingLoginSessionState": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolContentTargetingMission": {
"properties": {
"completedDate": {
"format": "int64",
"type": "integer"
},
"id": {
"type": "string"
},
"internalName": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"LolContentTargetingPlatformConfig": {
"properties": {
"ABTestFilterEnabled": {
"type": "boolean"
},
"ABTestFilterGroups": {
"format": "int64",
"type": "integer"
},
"ABTestFilterSalt": {
"format": "int64",
"type": "integer"
},
"AsynchronousEventHandlerSetupDelayInSeconds": {
"format": "int32",
"type": "integer"
},
"Enabled": {
"type": "boolean"
},
"EntitlementsFilterEnabled": {
"type": "boolean"
},
"EntitlementsPrefix": {
"type": "string"
},
"LevelFilterEnabled": {
"type": "boolean"
},
"LocationFiltersEnabled": {
"type": "boolean"
},
"MainFilterEnabled": {
"type": "boolean"
},
"Mapping": {
"type": "string"
},
"MasteryFilterChampionLimit": {
"format": "int32",
"type": "integer"
},
"MasteryFilterDaysSinceLastPlayed": {
"format": "int32",
"type": "integer"
},
"MasteryFilterEnabled": {
"type": "boolean"
},
"MasteryFilterLevelThreshold": {
"format": "int32",
"type": "integer"
},
"MissionsFilterEnabled": {
"type": "boolean"
},
"RankFilterEnabled": {
"type": "boolean"
},
"RankedFilterEnabled": {
"type": "boolean"
},
"SummonerIconFilterEnabled": {
"type": "boolean"
},
"TargetingAttributeStorageBaseUri": {
"type": "string"
},
"TargetingAttributeStorageEnabled": {
"type": "boolean"
},
"TasIngestionDelayInSeconds": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolContentTargetingQueue": {
"properties": {
"category": {
"$ref": "#/components/schemas/LolContentTargetingQueueGameCategory"
},
"gameMode": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
},
"mapId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolContentTargetingQueueGameCategory": {
"enum": [
"None",
"Custom",
"PvP",
"VersusAi",
"Alpha"
],
"type": "string"
},
"LolContentTargetingRankedDivision": {
"enum": [
"NA",
"I",
"II",
"III",
"IV",
"V"
],
"type": "string"
},
"LolContentTargetingRankedQueue": {
"enum": [
"NONE",
"RANKED_SOLO_5x5",
"RANKED_FLEX_SR",
"RANKED_FLEX_TT",
"RANKED_TFT"
],
"type": "string"
},
"LolContentTargetingRankedQueueStats": {
"properties": {
"division": {
"$ref": "#/components/schemas/LolContentTargetingRankedDivision"
},
"isProvisional": {
"type": "boolean"
},
"queueType": {
"$ref": "#/components/schemas/LolContentTargetingRankedQueue"
},
"tier": {
"$ref": "#/components/schemas/LolContentTargetingRankedTier"
}
},
"type": "object"
},
"LolContentTargetingRankedStats": {
"properties": {
"highestRankedEntry": {
"$ref": "#/components/schemas/LolContentTargetingRankedQueueStats"
},
"queues": {
"items": {
"$ref": "#/components/schemas/LolContentTargetingRankedQueueStats"
},
"type": "array"
}
},
"type": "object"
},
"LolContentTargetingRankedTier": {
"enum": [
"NONE",
"IRON",
"BRONZE",
"SILVER",
"GOLD",
"PLATINUM",
"DIAMOND",
"MASTER",
"GRANDMASTER",
"CHALLENGER"
],
"type": "string"
},
"LolContentTargetingRegionLocale": {
"properties": {
"locale": {
"type": "string"
}
},
"type": "object"
},
"LolContentTargetingSettingsResource": {
"properties": {
"data": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"LolContentTargetingSummoner": {
"properties": {
"profileIconId": {
"format": "int32",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolContentTargetingTargetingAttributes": {
"properties": {
"result": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
},
"type": "object"
},
"LolContentTargetingToken": {
"properties": {
"entitlements": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolCosmeticsAccountSettingsCategoryDataResource": {
"properties": {
"typeToLastOpenedDate": {
"additionalProperties": {
"format": "int64",
"type": "integer"
},
"type": "object"
}
},
"type": "object"
},
"LolCosmeticsCapOffer": {
"properties": {
"active": {
"type": "boolean"
},
"createdDate": {
"type": "string"
},
"id": {
"type": "string"
},
"label": {
"type": "string"
},
"merchantId": {
"type": "string"
},
"payload": {
"items": {
"$ref": "#/components/schemas/LolCosmeticsCapOfferPayloadEntry"
},
"type": "array"
},
"productId": {
"type": "string"
},
"startDate": {
"type": "string"
},
"typeId": {
"type": "string"
}
},
"type": "object"
},
"LolCosmeticsCapOfferPayloadEntry": {
"properties": {
"fulfillmentTypeId": {
"type": "string"
},
"inventoryTypeUUID": {
"type": "string"
},
"itemInstanceId": {
"type": "string"
},
"itemPriceMap": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
}
},
"type": "object"
},
"LolCosmeticsCompanionsGroupViewModel": {
"properties": {
"groupId": {
"format": "int32",
"type": "integer"
},
"groupName": {
"type": "string"
},
"items": {
"items": {
"$ref": "#/components/schemas/LolCosmeticsCosmeticsCompanionViewModel"
},
"type": "array"
},
"numAvailable": {
"format": "int32",
"type": "integer"
},
"numOwned": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCosmeticsCompanionsGroupedViewModel": {
"properties": {
"defaultItemId": {
"format": "int32",
"type": "integer"
},
"groups": {
"items": {
"$ref": "#/components/schemas/LolCosmeticsCompanionsGroupViewModel"
},
"type": "array"
},
"selectedLoadoutItem": {
"$ref": "#/components/schemas/LolCosmeticsCosmeticsCompanionViewModel"
}
},
"type": "object"
},
"LolCosmeticsCosmeticSettingsResource": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolCosmeticsAccountSettingsCategoryDataResource"
},
"schemaVersion": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCosmeticsCosmeticsCompanion": {
"properties": {
"color": {
"type": "string"
},
"contentId": {
"type": "string"
},
"description": {
"type": "string"
},
"f2p": {
"type": "boolean"
},
"groupId": {
"format": "int32",
"type": "integer"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"level": {
"format": "int32",
"type": "integer"
},
"loadoutsIcon": {
"type": "string"
},
"loyalty": {
"type": "boolean"
},
"name": {
"type": "string"
},
"owned": {
"type": "boolean"
},
"purchaseDate": {
"type": "string"
},
"rarityValue": {
"format": "int32",
"type": "integer"
},
"selected": {
"type": "boolean"
},
"species": {
"type": "string"
},
"upgrades": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolCosmeticsCosmeticsCompanionViewModel": {
"properties": {
"color": {
"type": "string"
},
"contentId": {
"type": "string"
},
"description": {
"type": "string"
},
"f2p": {
"type": "boolean"
},
"groupId": {
"format": "int32",
"type": "integer"
},
"isRecentItem": {
"type": "boolean"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"level": {
"format": "int32",
"type": "integer"
},
"loadoutsIcon": {
"type": "string"
},
"loyalty": {
"type": "boolean"
},
"name": {
"type": "string"
},
"offerData": {
"$ref": "#/components/schemas/LolCosmeticsCapOffer"
},
"owned": {
"type": "boolean"
},
"purchaseDate": {
"type": "string"
},
"rarityValue": {
"format": "int32",
"type": "integer"
},
"selected": {
"type": "boolean"
},
"species": {
"type": "string"
},
"starShardsPrice": {
"$ref": "#/components/schemas/LolCosmeticsCosmeticsOfferPrice"
},
"upgrades": {
"items": {
"$ref": "#/components/schemas/LolCosmeticsCosmeticsCompanionViewModel"
},
"type": "array"
}
},
"type": "object"
},
"LolCosmeticsCosmeticsOfferPrice": {
"properties": {
"offerId": {
"type": "string"
},
"price": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCosmeticsCosmeticsTFTDamageSkin": {
"properties": {
"contentId": {
"type": "string"
},
"description": {
"type": "string"
},
"f2p": {
"type": "boolean"
},
"groupId": {
"format": "int32",
"type": "integer"
},
"groupName": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"level": {
"format": "int32",
"type": "integer"
},
"loadoutsIcon": {
"type": "string"
},
"loyalty": {
"type": "boolean"
},
"name": {
"type": "string"
},
"owned": {
"type": "boolean"
},
"purchaseDate": {
"type": "string"
},
"rarityValue": {
"format": "int32",
"type": "integer"
},
"selected": {
"type": "boolean"
},
"upgrades": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolCosmeticsCosmeticsTFTDamageSkinViewModel": {
"properties": {
"contentId": {
"type": "string"
},
"description": {
"type": "string"
},
"f2p": {
"type": "boolean"
},
"groupId": {
"format": "int32",
"type": "integer"
},
"groupName": {
"type": "string"
},
"isRecentItem": {
"type": "boolean"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"level": {
"format": "int32",
"type": "integer"
},
"loadoutsIcon": {
"type": "string"
},
"loyalty": {
"type": "boolean"
},
"name": {
"type": "string"
},
"owned": {
"type": "boolean"
},
"purchaseDate": {
"type": "string"
},
"rarityValue": {
"format": "int32",
"type": "integer"
},
"selected": {
"type": "boolean"
},
"upgrades": {
"items": {
"$ref": "#/components/schemas/LolCosmeticsCosmeticsTFTDamageSkinViewModel"
},
"type": "array"
}
},
"type": "object"
},
"LolCosmeticsCosmeticsTFTMapSkin": {
"properties": {
"contentId": {
"type": "string"
},
"description": {
"type": "string"
},
"f2p": {
"type": "boolean"
},
"groupId": {
"format": "int32",
"type": "integer"
},
"groupName": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"loadoutsIcon": {
"type": "string"
},
"loyalty": {
"type": "boolean"
},
"name": {
"type": "string"
},
"owned": {
"type": "boolean"
},
"purchaseDate": {
"type": "string"
},
"rarityValue": {
"format": "int32",
"type": "integer"
},
"selected": {
"type": "boolean"
}
},
"type": "object"
},
"LolCosmeticsCosmeticsTFTMapSkinViewModel": {
"properties": {
"contentId": {
"type": "string"
},
"description": {
"type": "string"
},
"f2p": {
"type": "boolean"
},
"groupId": {
"format": "int32",
"type": "integer"
},
"groupName": {
"type": "string"
},
"isRecentItem": {
"type": "boolean"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"loadoutsIcon": {
"type": "string"
},
"loyalty": {
"type": "boolean"
},
"name": {
"type": "string"
},
"owned": {
"type": "boolean"
},
"purchaseDate": {
"type": "string"
},
"rarityValue": {
"format": "int32",
"type": "integer"
},
"selected": {
"type": "boolean"
}
},
"type": "object"
},
"LolCosmeticsGameDataCompanion": {
"properties": {
"TFTOnly": {
"type": "boolean"
},
"colorName": {
"type": "string"
},
"contentId": {
"type": "string"
},
"description": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"level": {
"format": "int32",
"type": "integer"
},
"loadoutsIcon": {
"type": "string"
},
"name": {
"type": "string"
},
"rarityValue": {
"format": "int32",
"type": "integer"
},
"speciesId": {
"format": "int32",
"type": "integer"
},
"speciesName": {
"type": "string"
},
"upgrades": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolCosmeticsGameDataTFTDamageSkin": {
"properties": {
"contentId": {
"type": "string"
},
"description": {
"type": "string"
},
"groupId": {
"format": "int32",
"type": "integer"
},
"groupName": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"level": {
"format": "int32",
"type": "integer"
},
"loadoutsIcon": {
"type": "string"
},
"name": {
"type": "string"
},
"rarityValue": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCosmeticsGameDataTFTMapSkin": {
"properties": {
"contentId": {
"type": "string"
},
"description": {
"type": "string"
},
"groupId": {
"format": "int32",
"type": "integer"
},
"groupName": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"loadoutsIcon": {
"type": "string"
},
"name": {
"type": "string"
},
"rarityValue": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCosmeticsLoadout": {
"properties": {
"id": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"loadout": {
"additionalProperties": {
"$ref": "#/components/schemas/LolCosmeticsLoadoutItem"
},
"type": "object"
},
"name": {
"type": "string"
},
"scope": {
"type": "string"
}
},
"type": "object"
},
"LolCosmeticsLoadoutItem": {
"properties": {
"contentId": {
"type": "string"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCosmeticsLoadoutUpdateDto": {
"properties": {
"loadout": {
"additionalProperties": {
"$ref": "#/components/schemas/LolCosmeticsLoadoutItem"
},
"type": "object"
}
},
"type": "object"
},
"LolCosmeticsTFTDamageSkinGroupViewModel": {
"properties": {
"groupId": {
"format": "int32",
"type": "integer"
},
"groupName": {
"type": "string"
},
"items": {
"items": {
"$ref": "#/components/schemas/LolCosmeticsCosmeticsTFTDamageSkinViewModel"
},
"type": "array"
},
"numAvailable": {
"format": "int32",
"type": "integer"
},
"numOwned": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCosmeticsTFTDamageSkinGroupedViewModel": {
"properties": {
"defaultItemId": {
"format": "int32",
"type": "integer"
},
"groups": {
"items": {
"$ref": "#/components/schemas/LolCosmeticsTFTDamageSkinGroupViewModel"
},
"type": "array"
},
"selectedLoadoutItem": {
"$ref": "#/components/schemas/LolCosmeticsCosmeticsTFTDamageSkinViewModel"
}
},
"type": "object"
},
"LolCosmeticsTFTMapSkinGroupViewModel": {
"properties": {
"groupId": {
"format": "int32",
"type": "integer"
},
"groupName": {
"type": "string"
},
"items": {
"items": {
"$ref": "#/components/schemas/LolCosmeticsCosmeticsTFTMapSkinViewModel"
},
"type": "array"
},
"numAvailable": {
"format": "int32",
"type": "integer"
},
"numOwned": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCosmeticsTFTMapSkinGroupedViewModel": {
"properties": {
"defaultItemId": {
"format": "int32",
"type": "integer"
},
"groups": {
"items": {
"$ref": "#/components/schemas/LolCosmeticsTFTMapSkinGroupViewModel"
},
"type": "array"
},
"selectedLoadoutItem": {
"$ref": "#/components/schemas/LolCosmeticsCosmeticsTFTMapSkinViewModel"
}
},
"type": "object"
},
"LolCosmeticsTFTSettingsDataResource": {
"properties": {
"iconOverride": {
"type": "string"
}
},
"type": "object"
},
"LolCosmeticsTFTSettingsResource": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolCosmeticsTFTSettingsDataResource"
},
"schemaVersion": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolCosmeticsUserResource": {
"properties": {
"lol": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolDiscordRpGameDataChampionSummary": {
"properties": {
"alias": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolDiscordRpPartyPresenceData": {
"properties": {
"maxPlayers": {
"format": "int32",
"type": "integer"
},
"partyId": {
"type": "string"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"summoners": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
},
"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": "#/components/schemas/LolEndOfGameChampionMasteryMini"
},
"type": "array"
},
"memberGrades": {
"items": {
"$ref": "#/components/schemas/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"
},
"detectedTeamPosition": {
"type": "string"
},
"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"
},
"selectedPosition": {
"type": "string"
},
"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"
},
"LolEndOfGameEndOfGamePlayerReport": {
"properties": {
"comment": {
"type": "string"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"offense": {
"type": "string"
},
"reportedPuuid": {
"type": "string"
}
},
"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": "#/components/schemas/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": "#/components/schemas/LolEndOfGameEndOfGameTeamBoost"
},
"teamEarlySurrendered": {
"type": "boolean"
},
"teams": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/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"
},
"LolEndOfGameGameClientEndOfGame": {
"properties": {
"gameClientEOG": {
"$ref": "#/components/schemas/LolEndOfGameGameClientEndOfGameStats"
}
},
"type": "object"
},
"LolEndOfGameGameClientEndOfGameStats": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"gameMode": {
"type": "string"
},
"isRanked": {
"type": "boolean"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"queueType": {
"type": "string"
},
"statsBlock": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"LolEndOfGameGameDataChampionSummary": {
"properties": {
"alias": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"squarePortraitPath": {
"type": "string"
}
},
"type": "object"
},
"LolEndOfGameGameDataCompanion": {
"properties": {
"colorName": {
"type": "string"
},
"contentId": {
"type": "string"
},
"loadoutsIcon": {
"type": "string"
},
"speciesName": {
"type": "string"
}
},
"type": "object"
},
"LolEndOfGameGameDataTftChampion": {
"properties": {
"character_id": {
"type": "string"
},
"display_name": {
"type": "string"
},
"path": {
"type": "string"
},
"rarity": {
"format": "int32",
"type": "integer"
},
"squareIconPath": {
"type": "string"
},
"traits": {
"items": {
"$ref": "#/components/schemas/LolEndOfGameGameDataTftTrait"
},
"type": "array"
}
},
"type": "object"
},
"LolEndOfGameGameDataTftItem": {
"properties": {
"id": {
"format": "int32",
"type": "integer"
},
"loadoutsIcon": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolEndOfGameGameDataTftTrait": {
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"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"
},
"queue": {
"$ref": "#/components/schemas/LolEndOfGameQueue"
}
},
"type": "object"
},
"LolEndOfGameGameflowPhase": {
"enum": [
"None",
"Lobby",
"Matchmaking",
"CheckedIntoTournament",
"ReadyCheck",
"ChampSelect",
"GameStart",
"FailedToLaunch",
"InProgress",
"Reconnect",
"WaitingForStats",
"PreEndOfGame",
"EndOfGame",
"TerminatedInError"
],
"type": "string"
},
"LolEndOfGameGameflowSession": {
"properties": {
"gameClient": {
"$ref": "#/components/schemas/LolEndOfGameGameflowClient"
},
"gameData": {
"$ref": "#/components/schemas/LolEndOfGameGameflowGameData"
},
"phase": {
"$ref": "#/components/schemas/LolEndOfGameGameflowPhase"
}
},
"type": "object"
},
"LolEndOfGameLobbyInvitation": {
"properties": {
"state": {
"type": "string"
}
},
"type": "object"
},
"LolEndOfGameLoginDataPacket": {
"properties": {
"platformId": {
"type": "string"
},
"simpleMessages": {
"items": {
"$ref": "#/components/schemas/LolEndOfGameSimpleMessage"
},
"type": "array"
}
},
"type": "object"
},
"LolEndOfGameLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"state": {
"$ref": "#/components/schemas/LolEndOfGameLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolEndOfGameLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolEndOfGameQueue": {
"properties": {
"id": {
"format": "int32",
"type": "integer"
},
"isRanked": {
"type": "boolean"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolEndOfGameReportRecipientMode": {
"enum": [
"Legacy",
"Game-Agnostic",
"Combined"
],
"type": "string"
},
"LolEndOfGameRerollDataBagForClientV1": {
"properties": {
"maximumRerolls": {
"format": "int32",
"type": "integer"
},
"pointCostOfReroll": {
"format": "int32",
"type": "integer"
},
"pointsGainedLastGame": {
"format": "int32",
"type": "integer"
},
"pointsUntilNextReroll": {
"format": "int32",
"type": "integer"
},
"rerollCount": {
"format": "int32",
"type": "integer"
},
"totalPoints": {
"format": "int32",
"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"
},
"LolEndOfGameSummoner": {
"properties": {
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
},
"xpSinceLastLevel": {
"format": "int64",
"type": "integer"
},
"xpUntilNextLevel": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolEndOfGameTFTEndOfGameCompanionViewModel": {
"properties": {
"colorName": {
"type": "string"
},
"icon": {
"type": "string"
},
"speciesName": {
"type": "string"
}
},
"type": "object"
},
"LolEndOfGameTFTEndOfGameItemViewModel": {
"properties": {
"icon": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolEndOfGameTFTEndOfGamePieceViewModel": {
"properties": {
"icon": {
"type": "string"
},
"items": {
"items": {
"$ref": "#/components/schemas/LolEndOfGameTFTEndOfGameItemViewModel"
},
"type": "array"
},
"level": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"price": {
"format": "int32",
"type": "integer"
},
"traits": {
"items": {
"$ref": "#/components/schemas/LolEndOfGameTFTEndOfGameTraitViewModel"
},
"type": "array"
}
},
"type": "object"
},
"LolEndOfGameTFTEndOfGamePlayerViewModel": {
"properties": {
"boardPieces": {
"items": {
"$ref": "#/components/schemas/LolEndOfGameTFTEndOfGamePieceViewModel"
},
"type": "array"
},
"companion": {
"$ref": "#/components/schemas/LolEndOfGameTFTEndOfGameCompanionViewModel"
},
"ffaStanding": {
"type": "integer"
},
"health": {
"type": "integer"
},
"iconId": {
"format": "int32",
"type": "integer"
},
"isLocalPlayer": {
"type": "boolean"
},
"partnerGroupId": {
"type": "integer"
},
"puuid": {
"type": "string"
},
"rank": {
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerName": {
"type": "string"
}
},
"type": "object"
},
"LolEndOfGameTFTEndOfGameTraitViewModel": {
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolEndOfGameTFTEndOfGameViewModel": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"gameLength": {
"format": "int32",
"type": "integer"
},
"isRanked": {
"type": "boolean"
},
"localPlayer": {
"$ref": "#/components/schemas/LolEndOfGameTFTEndOfGamePlayerViewModel"
},
"players": {
"items": {
"$ref": "#/components/schemas/LolEndOfGameTFTEndOfGamePlayerViewModel"
},
"type": "array"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"queueType": {
"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": "#/components/schemas/LolEsportStreamNotificationsEsportsAPI_highlanderTournaments"
},
"type": "array"
},
"streamgroups": {
"items": {
"$ref": "#/components/schemas/LolEsportStreamNotificationsESportsAPI_streamgroups"
},
"type": "array"
},
"teams": {
"items": {
"$ref": "#/components/schemas/LolEsportStreamNotificationsEsportsAPI_teams"
},
"type": "array"
}
},
"type": "object"
},
"LolEsportStreamNotificationsESportsLiveStreams": {
"properties": {
"liveStreams": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolEsportStreamNotificationsEsportsAPI_highlanderTournaments_brackets"
},
"type": "object"
},
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"rosters": {
"additionalProperties": {
"$ref": "#/components/schemas/LolEsportStreamNotificationsEsportsAPI_highlanderTournaments_rosters"
},
"type": "object"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"LolEsportStreamNotificationsEsportsAPI_highlanderTournaments_brackets": {
"properties": {
"id": {
"type": "string"
},
"matches": {
"additionalProperties": {
"$ref": "#/components/schemas/LolEsportStreamNotificationsEsportsAPI_highlanderTournaments_matches"
},
"type": "object"
}
},
"type": "object"
},
"LolEsportStreamNotificationsEsportsAPI_highlanderTournaments_matches": {
"properties": {
"id": {
"type": "string"
},
"input": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolEsportStreamNotificationsGameflowPhase"
}
},
"type": "object"
},
"LolEsportStreamNotificationsLiveMatch": {
"properties": {
"id": {
"type": "string"
},
"streamGroup": {
"type": "string"
},
"teams": {
"items": {
"$ref": "#/components/schemas/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"
},
"LolFeaturedModesAccountIdAndSummonerId": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolFeaturedModesCollectionsOwnership": {
"properties": {
"freeToPlayReward": {
"type": "boolean"
},
"owned": {
"type": "boolean"
}
},
"type": "object"
},
"LolFeaturedModesCollectionsSummonerIcon": {
"properties": {
"iconId": {
"format": "int32",
"type": "integer"
},
"ownership": {
"$ref": "#/components/schemas/LolFeaturedModesCollectionsOwnership"
}
},
"type": "object"
},
"LolFeaturedModesEligibility": {
"properties": {
"eligible": {
"type": "boolean"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"restrictions": {
"items": {
"$ref": "#/components/schemas/LolFeaturedModesEligibilityRestriction"
},
"type": "array"
}
},
"type": "object"
},
"LolFeaturedModesEligibilityRestriction": {
"properties": {
"expiredTimestamp": {
"format": "int64",
"type": "integer"
},
"restrictionArgs": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"restrictionCode": {
"$ref": "#/components/schemas/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",
"PlayerLeaverQueueLockoutRestriction",
"PlayerLeaverTaintedWarningRestriction",
"PlayerMaxLevelRestriction",
"PlayerMinLevelRestriction",
"PlayerMinorRestriction",
"PlayerRankedSuspensionRestriction",
"TeamHighMMRMaxSizeRestriction",
"TeamSizeRestriction",
"PrerequisiteQueuesNotPlayedRestriction",
"GameVersionMismatch",
"GameVersionMissing",
"GameVersionNotSupported",
"QueueEntryNotEntitledRestriction",
"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": "#/components/schemas/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": "#/components/schemas/LolFeaturedModesGameflowPhase"
}
},
"type": "object"
},
"LolFeaturedModesLoginSession": {
"properties": {
"state": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolFeaturedModesQueueGameCategory"
},
"gameMode": {
"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": "#/components/schemas/LolFeaturedModesQueueAvailability"
}
},
"type": "object"
},
"LolFeaturedModesQueueAvailability": {
"enum": [
"Available",
"PlatformDisabled",
"DoesntMeetRequirements"
],
"type": "string"
},
"LolFeaturedModesQueueGameCategory": {
"enum": [
"None",
"Custom",
"PvP",
"VersusAi",
"Alpha"
],
"type": "string"
},
"LolGameClientChatGameClientChatMessageResource": {
"properties": {
"body": {
"type": "string"
},
"fromSummonerName": {
"type": "string"
}
},
"type": "object"
},
"LolGameClientChatMutedPlayerInfo": {
"properties": {
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolGameQueuesLoginDataPacket": {
"properties": {
"gameTypeConfigs": {
"items": {
"$ref": "#/components/schemas/LolGameQueuesQueueGameTypeConfig"
},
"type": "array"
}
},
"type": "object"
},
"LolGameQueuesLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"connected": {
"type": "boolean"
},
"state": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolGameQueuesQueueGameCategory"
},
"championsRequiredToPlay": {
"format": "int32",
"type": "integer"
},
"description": {
"type": "string"
},
"detailedDescription": {
"type": "string"
},
"gameMode": {
"type": "string"
},
"gameTypeConfig": {
"$ref": "#/components/schemas/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"
},
"maxDivisionForPremadeSize2": {
"type": "string"
},
"maxLevel": {
"format": "int32",
"type": "integer"
},
"maxSummonerLevelForFirstWinOfTheDay": {
"format": "int32",
"type": "integer"
},
"maxTierForPremadeSize2": {
"type": "string"
},
"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": "#/components/schemas/LolGameQueuesQueueAvailability"
},
"queueRewards": {
"$ref": "#/components/schemas/LolGameQueuesQueueReward"
},
"removalFromGameAllowed": {
"type": "boolean"
},
"removalFromGameDelayMinutes": {
"format": "int32",
"type": "integer"
},
"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": "#/components/schemas/LolGameQueuesQueueAvailability"
},
"spectatorPolicies": {
"items": {
"$ref": "#/components/schemas/LolGameQueuesQueueCustomGameSpectatorPolicy"
},
"type": "array"
},
"spectatorSlotLimit": {
"format": "int32",
"type": "integer"
},
"subcategories": {
"items": {
"$ref": "#/components/schemas/LolGameQueuesQueueCustomGameSubcategory"
},
"type": "array"
}
},
"type": "object"
},
"LolGameQueuesQueueCustomGameSpectatorPolicy": {
"enum": [
"NotAllowed",
"LobbyAllowed",
"FriendsAllowed",
"AllAllowed"
],
"type": "string"
},
"LolGameQueuesQueueCustomGameSubcategory": {
"properties": {
"customSpectatorPolicies": {
"items": {
"$ref": "#/components/schemas/LolGameQueuesQueueCustomGameSpectatorPolicy"
},
"type": "array"
},
"gameMode": {
"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": "#/components/schemas/LolGameQueuesQueueGameTypeConfig"
},
"type": "array"
},
"numPlayersPerTeam": {
"format": "int32",
"type": "integer"
},
"queueAvailability": {
"$ref": "#/components/schemas/LolGameQueuesQueueAvailability"
}
},
"type": "object"
},
"LolGameQueuesQueueGameCategory": {
"enum": [
"None",
"Custom",
"PvP",
"VersusAi",
"Alpha"
],
"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": "#/components/schemas/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": "#/components/schemas/LolGameSettingsgamesettingsgameclient"
}
},
"type": "object"
},
"LolGameflowCrashReportingSettings": {
"properties": {
"enabled": {
"type": "boolean"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolGameflowGameModeSpellList": {
"properties": {
"spells": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"LolGameflowGameflowAvailability": {
"properties": {
"isAvailable": {
"type": "boolean"
},
"state": {
"$ref": "#/components/schemas/LolGameflowGameflowAvailabilityState"
}
},
"type": "object"
},
"LolGameflowGameflowAvailabilityState": {
"enum": [
"Available",
"Initializing",
"Patching",
"PlayerBanned",
"InGameFlow",
"Configuration",
"EligibilityInfoMissing"
],
"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": "#/components/schemas/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": "#/components/schemas/LolGameflowGameflowPhase"
},
"state": {
"$ref": "#/components/schemas/LolGameflowGameflowGameDodgeState"
}
},
"type": "object"
},
"LolGameflowGameflowGameDodgeState": {
"enum": [
"Invalid",
"PartyDodged",
"StrangerDodged",
"TournamentDodged"
],
"type": "string"
},
"LolGameflowGameflowGameMap": {
"properties": {
"assets": {
"additionalProperties": true,
"type": "object"
},
"categorizedContentBundles": {
"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"
},
"perPositionDisallowedSummonerSpells": {
"additionalProperties": {
"$ref": "#/components/schemas/LolGameflowGameModeSpellList"
},
"type": "object"
},
"perPositionRequiredSummonerSpells": {
"additionalProperties": {
"$ref": "#/components/schemas/LolGameflowGameModeSpellList"
},
"type": "object"
},
"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": "#/components/schemas/LolGameflowGameflowGameClient"
},
"gameData": {
"$ref": "#/components/schemas/LolGameflowGameflowGameData"
},
"gameDodge": {
"$ref": "#/components/schemas/LolGameflowGameflowGameDodge"
},
"map": {
"$ref": "#/components/schemas/LolGameflowGameflowGameMap"
},
"phase": {
"$ref": "#/components/schemas/LolGameflowGameflowPhase"
}
},
"type": "object"
},
"LolGameflowGameflowWatchPhase": {
"enum": [
"None",
"WatchStarted",
"WatchInProgress",
"WatchFailedToLaunch"
],
"type": "string"
},
"LolGameflowInstallPaths": {
"properties": {
"gameExecutablePath": {
"type": "string"
},
"gameInstallRoot": {
"type": "string"
}
},
"type": "object"
},
"LolGameflowLobbyStatus": {
"properties": {
"allowedPlayAgain": {
"type": "boolean"
},
"customSpectatorPolicy": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolGameflowLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolGameflowLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolGameflowPatcherProductState": {
"properties": {
"action": {
"$ref": "#/components/schemas/LolGameflowPatcherProductStateAction"
},
"isCorrupted": {
"type": "boolean"
},
"isStopped": {
"type": "boolean"
},
"isUpToDate": {
"type": "boolean"
},
"isUpdateAvailable": {
"type": "boolean"
}
},
"type": "object"
},
"LolGameflowPatcherProductStateAction": {
"enum": [
"Idle",
"CheckingForUpdates",
"Patching",
"Repairing",
"Migrating"
],
"type": "string"
},
"LolGameflowPlayerStatus": {
"properties": {
"canInviteOthersAtEog": {
"type": "boolean"
},
"currentLobbyStatus": {
"$ref": "#/components/schemas/LolGameflowLobbyStatus"
},
"lastQueuedLobbyStatus": {
"$ref": "#/components/schemas/LolGameflowLobbyStatus"
}
},
"type": "object"
},
"LolGameflowQueue": {
"properties": {
"allowablePremadeSizes": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"areFreeChampionsAllowed": {
"type": "boolean"
},
"assetMutator": {
"type": "string"
},
"category": {
"$ref": "#/components/schemas/LolGameflowQueueGameCategory"
},
"championsRequiredToPlay": {
"format": "int32",
"type": "integer"
},
"description": {
"type": "string"
},
"detailedDescription": {
"type": "string"
},
"gameMode": {
"type": "string"
},
"gameTypeConfig": {
"$ref": "#/components/schemas/LolGameflowQueueGameTypeConfig"
},
"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": "#/components/schemas/LolGameflowQueueAvailability"
},
"queueRewards": {
"$ref": "#/components/schemas/LolGameflowQueueReward"
},
"removalFromGameAllowed": {
"type": "boolean"
},
"removalFromGameDelayMinutes": {
"format": "int32",
"type": "integer"
},
"shortName": {
"type": "string"
},
"showPositionSelector": {
"type": "boolean"
},
"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",
"Alpha"
],
"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"
},
"LolGameflowRegistrationStatus": {
"properties": {
"complete": {
"type": "boolean"
},
"errorCodes": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolGameflowReplaysSettingsData": {
"properties": {
"highlights-folder-path": {
"type": "string"
}
},
"type": "object"
},
"LolGameflowReplaysSettingsResource": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolGameflowReplaysSettingsData"
}
},
"type": "object"
},
"LolGameflowSpectateGameInfoResource": {
"properties": {
"allowObserveMode": {
"type": "string"
},
"dropInSpectateGameId": {
"type": "string"
},
"gameQueueType": {
"type": "string"
},
"puuid": {
"type": "string"
}
},
"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": "#/components/schemas/LolGeoinfoGeoInfo"
},
"isInitialized": {
"type": "boolean"
},
"isLatest": {
"type": "boolean"
},
"success": {
"type": "boolean"
}
},
"type": "object"
},
"LolGeoinfoLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"state": {
"$ref": "#/components/schemas/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"
},
"LolHeartbeatLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"state": {
"$ref": "#/components/schemas/LolHeartbeatLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolHeartbeatLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolHighlightsHighlight": {
"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"
},
"LolHighlightsHighlightsConfig": {
"properties": {
"invalidHighlightNameCharacters": {
"type": "string"
},
"isHighlightsEnabled": {
"type": "boolean"
}
},
"type": "object"
},
"LolHighlightsHighlightsDynamicConfig": {
"properties": {
"Enabled": {
"type": "boolean"
}
},
"type": "object"
},
"LolHighlightsHighlightsSettingsData": {
"properties": {
"highlights-folder-path": {
"type": "string"
}
},
"type": "object"
},
"LolHighlightsHighlightsSettingsResource": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolHighlightsHighlightsSettingsData"
}
},
"type": "object"
},
"LolHonorV2AccountIdAndSummonerId": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolHonorV2ApiHonorPlayerServerRequest": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"honorCategory": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolHonorV2Ballot": {
"properties": {
"eligiblePlayers": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/LolHonorV2EndOfGamePlayer"
},
"type": "array"
},
"stats": {
"additionalProperties": true,
"type": "object"
},
"tag": {
"type": "string"
},
"teamId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolHonorV2GameflowGameData": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"queue": {
"$ref": "#/components/schemas/LolHonorV2Queue"
}
},
"type": "object"
},
"LolHonorV2GameflowPhase": {
"enum": [
"None",
"Lobby",
"Matchmaking",
"CheckedIntoTournament",
"ReadyCheck",
"ChampSelect",
"GameStart",
"FailedToLaunch",
"InProgress",
"Reconnect",
"WaitingForStats",
"PreEndOfGame",
"EndOfGame",
"TerminatedInError"
],
"type": "string"
},
"LolHonorV2GameflowSession": {
"properties": {
"gameData": {
"$ref": "#/components/schemas/LolHonorV2GameflowGameData"
},
"phase": {
"$ref": "#/components/schemas/LolHonorV2GameflowPhase"
}
},
"type": "object"
},
"LolHonorV2Honor": {
"properties": {
"honorCategory": {
"type": "string"
},
"voterRelationship": {
"type": "string"
}
},
"type": "object"
},
"LolHonorV2HonorConfig": {
"properties": {
"DayOneModalEnabled": {
"type": "boolean"
},
"Enabled": {
"type": "boolean"
},
"Honor2018Enabled": {
"type": "boolean"
},
"LedgeEndpointsEnabled": {
"type": "boolean"
},
"SecondsToVote": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolHonorV2HonorRecipient": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"honors": {
"items": {
"$ref": "#/components/schemas/LolHonorV2Honor"
},
"type": "array"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolHonorV2MutualHonor": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"summoners": {
"items": {
"$ref": "#/components/schemas/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"
},
"LolHonorV2Queue": {
"properties": {
"gameMode": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
},
"mapId": {
"format": "int32",
"type": "integer"
},
"removalFromGameAllowed": {
"type": "boolean"
},
"removalFromGameDelayMinutes": {
"format": "int32",
"type": "integer"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolHonorV2Reward": {
"properties": {
"quantity": {
"format": "int32",
"type": "integer"
},
"rewardType": {
"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": "#/components/schemas/LolHonorV2VendedHonorState"
},
"dynamicHonorMessage": {
"$ref": "#/components/schemas/LolHonorV2DynamicHonorMessage"
},
"previousState": {
"$ref": "#/components/schemas/LolHonorV2VendedHonorState"
},
"reward": {
"$ref": "#/components/schemas/LolHonorV2Reward"
}
},
"type": "object"
},
"LolHonorV2VendedHonorState": {
"properties": {
"checkpoint": {
"format": "int32",
"type": "integer"
},
"level": {
"format": "int32",
"type": "integer"
},
"rewardsLocked": {
"type": "boolean"
}
},
"type": "object"
},
"LolHonorV2VendedReward": {
"properties": {
"dynamicHonorMessage": {
"$ref": "#/components/schemas/LolHonorV2DynamicHonorMessage"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"rewardType": {
"type": "string"
}
},
"type": "object"
},
"LolHonorV2VoteCompletion": {
"properties": {
"fullTeamVote": {
"type": "boolean"
},
"gameId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolHovercardChatSession": {
"properties": {
"sessionState": {
"type": "string"
}
},
"type": "object"
},
"LolHovercardContentCookies": {
"properties": {
"content_id": {
"type": "string"
},
"content_path": {
"type": "string"
},
"cookies": {
"items": {
"$ref": "#/components/schemas/LolHovercardcookie"
},
"type": "array"
}
},
"type": "object"
},
"LolHovercardFriendResult": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"availability": {
"type": "string"
},
"gameName": {
"type": "string"
},
"gameTag": {
"type": "string"
},
"icon": {
"format": "int32",
"type": "integer"
},
"id": {
"type": "string"
},
"lol": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"name": {
"type": "string"
},
"note": {
"type": "string"
},
"patchline": {
"type": "string"
},
"platformId": {
"type": "string"
},
"product": {
"type": "string"
},
"productName": {
"type": "string"
},
"puuid": {
"type": "string"
},
"score": {
"format": "int64",
"type": "integer"
},
"statusMessage": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolHovercardHovercardUserInfo": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"availability": {
"type": "string"
},
"gameName": {
"type": "string"
},
"gameTag": {
"type": "string"
},
"icon": {
"format": "int32",
"type": "integer"
},
"id": {
"type": "string"
},
"lol": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"masteryScore": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
},
"note": {
"type": "string"
},
"partySummoners": {
"items": {
"type": "string"
},
"type": "array"
},
"patchline": {
"type": "string"
},
"platformId": {
"type": "string"
},
"product": {
"type": "string"
},
"productName": {
"type": "string"
},
"puuid": {
"type": "string"
},
"remotePlatform": {
"type": "boolean"
},
"remoteProduct": {
"type": "boolean"
},
"remoteProductBackdropUrl": {
"type": "string"
},
"remoteProductIconUrl": {
"type": "string"
},
"statusMessage": {
"type": "string"
},
"summonerIcon": {
"format": "int32",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolHovercardPartyInfo": {
"properties": {
"summoners": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"LolHovercardPatchlineMetadata": {
"properties": {
"content_cookies": {
"items": {
"$ref": "#/components/schemas/LolHovercardContentCookies"
},
"type": "array"
},
"content_paths": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"id": {
"type": "string"
},
"product_id": {
"type": "string"
}
},
"type": "object"
},
"LolHovercardProductMetadata": {
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"patchlines": {
"additionalProperties": {
"$ref": "#/components/schemas/LolHovercardPatchlineMetadata"
},
"type": "object"
}
},
"type": "object"
},
"LolHovercardProductMetadataMap": {
"properties": {
"products": {
"additionalProperties": {
"$ref": "#/components/schemas/LolHovercardProductMetadata"
},
"type": "object"
}
},
"type": "object"
},
"LolHovercardSummoner": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"displayName": {
"type": "string"
},
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolHovercardSummonerIdAndIcon": {
"properties": {
"profileIconId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolHovercardSummonerIdAndName": {
"properties": {
"displayName": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolHovercardTopChampionMastery": {
"properties": {
"score": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolHovercardcookie": {
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LolInventoryAccessTokenResource": {
"properties": {
"expiry": {
"format": "int64",
"type": "integer"
},
"scopes": {
"items": {
"type": "string"
},
"type": "array"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"LolInventoryCatalogItem": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"itemInstanceId": {
"type": "string"
}
},
"type": "object"
},
"LolInventoryClientCacheClearMessageDTO": {
"properties": {
"clearAll": {
"type": "boolean"
},
"inventoryTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"regions": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolInventoryCurrencyDTO": {
"properties": {
"amount": {
"format": "int32",
"type": "integer"
},
"subCurrencies": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
}
},
"type": "object"
},
"LolInventoryInventoryCacheEntry": {
"properties": {
"expirationMS": {
"format": "int64",
"type": "integer"
},
"issuedAtMS": {
"format": "int64",
"type": "integer"
},
"receivedAtMS": {
"format": "int64",
"type": "integer"
},
"signedInventoryJwt": {
"type": "string"
},
"valid": {
"type": "boolean"
}
},
"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": "#/components/schemas/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"
},
"loyalty": {
"type": "boolean"
},
"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": "#/components/schemas/LolInventoryItemOwnershipType"
},
"payload": {
"additionalProperties": true,
"type": "object"
},
"purchaseDate": {
"type": "string"
},
"quantity": {
"format": "int64",
"type": "integer"
},
"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": "#/components/schemas/LolInventoryInventoryDTO"
}
},
"type": "object"
},
"LolInventoryItemKey": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolInventoryItemOwnershipType": {
"enum": [
"OWNED",
"RENTED",
"LOYALTY",
"F2P"
],
"type": "string"
},
"LolInventoryLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"gasToken": {
"additionalProperties": true,
"type": "object"
},
"idToken": {
"type": "string"
},
"puuid": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/LolInventoryLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolInventoryLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolInventoryLoyaltyRewards": {
"properties": {
"championIds": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"freeRewardedChampionsCount": {
"format": "int32",
"type": "integer"
},
"freeRewardedSkinsCount": {
"format": "int32",
"type": "integer"
},
"ipBoost": {
"format": "int32",
"type": "integer"
},
"loyaltyTFTCompanionCount": {
"format": "int32",
"type": "integer"
},
"loyaltyTFTMapSkinCount": {
"format": "int32",
"type": "integer"
},
"skinIds": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"xpBoost": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolInventoryLoyaltyStatus": {
"enum": [
"LEGACY",
"REWARDS_GRANT",
"EXPIRY",
"CHANGE",
"REVOKE",
"DISABLED"
],
"type": "string"
},
"LolInventoryLoyaltyStatusNotification": {
"properties": {
"rewards": {
"$ref": "#/components/schemas/LolInventoryLoyaltyRewards"
},
"status": {
"$ref": "#/components/schemas/LolInventoryLoyaltyStatus"
}
},
"type": "object"
},
"LolInventoryRiotMessagingServiceMessage": {
"properties": {
"payload": {
"type": "string"
},
"resource": {
"type": "string"
},
"service": {
"type": "string"
},
"timestamp": {
"format": "int64",
"type": "integer"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"LolInventoryRmsEntitlementPayload": {
"properties": {
"entitlementTypeId": {
"type": "string"
},
"itemId": {
"type": "string"
},
"itemTypeId": {
"type": "string"
},
"resourceOperation": {
"type": "string"
}
},
"type": "object"
},
"LolInventoryRmsStoreEntitlementItem": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"type": "string"
}
},
"type": "object"
},
"LolInventoryRmsStoreEntitlementPayload": {
"properties": {
"items": {
"items": {
"$ref": "#/components/schemas/LolInventoryRmsStoreEntitlementItem"
},
"type": "array"
},
"transactionId": {
"type": "string"
}
},
"type": "object"
},
"LolInventoryRmsWalletPayload": {
"properties": {},
"type": "object"
},
"LolInventorySimpleInventoryDTO": {
"properties": {
"expires": {
"type": "string"
},
"items": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
},
"itemsJwt": {
"type": "string"
}
},
"type": "object"
},
"LolInventorySimpleInventoryResponseDTO": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolInventorySimpleInventoryDTO"
}
},
"type": "object"
},
"LolInventorySummonerIcon": {
"properties": {
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolInventoryWallet": {
"properties": {
"ip": {
"format": "int64",
"type": "integer"
},
"rp": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolInventoryWalletCacheEntry": {
"properties": {
"expirationMS": {
"format": "int64",
"type": "integer"
},
"issuedAtMS": {
"format": "int64",
"type": "integer"
},
"receivedAtMS": {
"format": "int64",
"type": "integer"
},
"signedBalancesJwt": {
"type": "string"
},
"valid": {
"type": "boolean"
}
},
"type": "object"
},
"LolInventoryWalletDTO": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"balances": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
},
"balancesJwt": {
"type": "string"
},
"expires": {
"type": "string"
},
"puuid": {
"type": "string"
}
},
"type": "object"
},
"LolInventoryWalletResponseDTO": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolInventoryWalletDTO"
}
},
"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": "#/components/schemas/LolItemSetsItemSetBlock"
},
"type": "array"
},
"map": {
"type": "string"
},
"mode": {
"type": "string"
},
"preferredItemSlots": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/LolItemSetsItemSet"
},
"type": "array"
},
"timestamp": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolItemSetsLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"state": {
"$ref": "#/components/schemas/LolItemSetsLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolItemSetsLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolItemSetsNameCheckPayload": {
"properties": {
"name": {
"type": "string"
},
"shard": {
"type": "string"
}
},
"type": "object"
},
"LolItemSetsNameCheckResponse": {
"properties": {
"errors": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolItemSetsPreferredItemSlot": {
"properties": {
"id": {
"type": "string"
},
"preferredItemSlot": {
"type": "integer"
}
},
"type": "object"
},
"LolItemSetsValidateItemSetNameInput": {
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"LolItemSetsValidateItemSetNameResponse": {
"properties": {
"nameCheckResponse": {
"$ref": "#/components/schemas/LolItemSetsNameCheckResponse"
},
"success": {
"type": "boolean"
}
},
"type": "object"
},
"LolKickoutKickoutMessage": {
"properties": {
"message": {
"type": "string"
}
},
"type": "object"
},
"LolKrPlaytimeReminderPlaytimeReminder": {
"properties": {
"hours": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolKrShutdownLawAllQueueShutdownStatus": {
"properties": {
"isAllQueuesDisabled": {
"type": "boolean"
}
},
"type": "object"
},
"LolKrShutdownLawAntiAddictionState": {
"properties": {
"policyType": {
"$ref": "#/components/schemas/LolKrShutdownLawPolicyType"
}
},
"type": "object"
},
"LolKrShutdownLawPolicyType": {
"enum": [
"shutdown",
"playTime",
"warningMessage",
"disableMatchMaking"
],
"type": "string"
},
"LolKrShutdownLawQueueShutdownStatus": {
"properties": {
"isDisabled": {
"type": "boolean"
}
},
"type": "object"
},
"LolKrShutdownLawRatingScreenInfo": {
"properties": {
"shown": {
"type": "boolean"
}
},
"type": "object"
},
"LolKrShutdownLawShutdownLawNotification": {
"properties": {
"type": {
"$ref": "#/components/schemas/LolKrShutdownLawShutdownLawStatus"
}
},
"type": "object"
},
"LolKrShutdownLawShutdownLawStatus": {
"enum": [
"NONE",
"WARNING",
"CUT_OFF"
],
"type": "string"
},
"LolLeagueSessionAntiAddictionTokenEnvelope": {
"properties": {
"antiAddictionToken": {
"type": "string"
}
},
"type": "object"
},
"LolLeagueSessionLeagueSessionRMSNotification": {
"properties": {
"puuid": {
"type": "string"
},
"sessionId": {
"type": "string"
},
"sessionInitiatedAt": {
"format": "int64",
"type": "integer"
},
"state": {
"type": "string"
}
},
"type": "object"
},
"LolLeagueSessionLeagueSessionStatus": {
"enum": [
"UNINITIALIZED",
"INITIALIZED",
"EXPIRED",
"DUPLICATED",
"ANTI_ADDICTION_EXPIRED"
],
"type": "string"
},
"LolLeagueSessionLeagueSessionTokenEnvelope": {
"properties": {
"logoutOnFailure": {
"type": "boolean"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"LolLeaverBusterAllSummonerData": {
"properties": {
"summoner": {
"$ref": "#/components/schemas/LolLeaverBusterSummoner"
}
},
"type": "object"
},
"LolLeaverBusterLeaverBusterNotificationResource": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"fromRms": {
"type": "boolean"
},
"id": {
"format": "int32",
"type": "integer"
},
"msgId": {
"type": "string"
},
"punishedGamesRemaining": {
"format": "int32",
"type": "integer"
},
"queueLockoutTimerExpiryUtcMillisDiff": {
"format": "int64",
"type": "integer"
},
"type": {
"$ref": "#/components/schemas/LolLeaverBusterLeaverBusterNotificationType"
}
},
"type": "object"
},
"LolLeaverBusterLeaverBusterNotificationType": {
"enum": [
"Invalid",
"TaintedWarning",
"PunishmentIncurred",
"PunishedGamesRemaining",
"Reforming",
"PreLockoutWarning",
"OnLockoutWarning"
],
"type": "string"
},
"LolLeaverBusterLoginDataPacket": {
"properties": {
"allSummonerData": {
"$ref": "#/components/schemas/LolLeaverBusterAllSummonerData"
},
"simpleMessages": {
"items": {
"$ref": "#/components/schemas/LolLeaverBusterSimpleMessage"
},
"type": "array"
}
},
"type": "object"
},
"LolLeaverBusterMatchmakingSearchErrorResource": {
"properties": {
"errorType": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
},
"message": {
"type": "string"
},
"penalizedSummonerId": {
"format": "int64",
"type": "integer"
},
"penaltyTimeRemaining": {
"format": "double",
"type": "number"
}
},
"type": "object"
},
"LolLeaverBusterMatchmakingSearchResource": {
"properties": {
"errors": {
"items": {
"$ref": "#/components/schemas/LolLeaverBusterMatchmakingSearchErrorResource"
},
"type": "array"
},
"queueId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLeaverBusterPlayerNotificationResource": {
"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"
},
"LolLeaverBusterSimpleMessage": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"msgId": {
"type": "string"
},
"params": {
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolLeaverBusterSummoner": {
"properties": {
"acctId": {
"format": "int64",
"type": "integer"
},
"sumId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLicenseAgreementLicenseAgreement": {
"properties": {
"id": {
"type": "string"
},
"licenseType": {
"$ref": "#/components/schemas/LolLicenseAgreementLicenseAgreementType"
},
"text": {
"type": "string"
}
},
"type": "object"
},
"LolLicenseAgreementLicenseAgreementType": {
"enum": [
"PrivacyNotice",
"TermsOfUse"
],
"type": "string"
},
"LolLicenseAgreementLicenseServeLocation": {
"enum": [
"Preparing",
"Local",
"External"
],
"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"
},
"LolLoadoutsCreateLoadoutDTO": {
"properties": {
"itemId": {
"format": "int32",
"type": "integer"
},
"loadout": {
"additionalProperties": {
"$ref": "#/components/schemas/LolLoadoutsItemKey"
},
"type": "object"
},
"name": {
"type": "string"
},
"refreshTime": {
"type": "string"
},
"scope": {
"type": "string"
}
},
"type": "object"
},
"LolLoadoutsCreateLoadoutRequestDTO": {
"properties": {
"loadout": {
"$ref": "#/components/schemas/LolLoadoutsCreateLoadoutDTO"
},
"serviceToJwtsMap": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
},
"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": "#/components/schemas/LolLoadoutsItemKey"
},
"type": "array"
}
},
"type": "object"
},
"LolLoadoutsGameflowGameData": {
"properties": {
"queue": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolLoadoutsGameflowGameData"
},
"phase": {
"$ref": "#/components/schemas/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": {
"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"
},
"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": "#/components/schemas/LolLoadoutsInventoryDTO"
}
},
"type": "object"
},
"LolLoadoutsItemKey": {
"properties": {
"contentId": {
"type": "string"
},
"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"
},
"LolLoadoutsLoadoutRequestDTOBase": {
"properties": {
"serviceToJwtsMap": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
},
"type": "object"
},
"LolLoadoutsLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"gasToken": {
"additionalProperties": true,
"type": "object"
},
"idToken": {
"type": "string"
},
"puuid": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/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"
},
"LolLoadoutsScopedLoadout": {
"properties": {
"id": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"loadout": {
"additionalProperties": {
"$ref": "#/components/schemas/LolLoadoutsItemKey"
},
"type": "object"
},
"name": {
"type": "string"
},
"refreshTime": {
"type": "string"
},
"scope": {
"type": "string"
}
},
"type": "object"
},
"LolLoadoutsSignGCORequestDTO": {
"properties": {
"loadout": {
"additionalProperties": {
"$ref": "#/components/schemas/LolLoadoutsItemKey"
},
"type": "object"
},
"serviceToJwtsMap": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
},
"type": "object"
},
"LolLoadoutsUpdateLoadoutDTO": {
"properties": {
"id": {
"type": "string"
},
"loadout": {
"additionalProperties": {
"$ref": "#/components/schemas/LolLoadoutsItemKey"
},
"type": "object"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolLoadoutsUpdateLoadoutRequestDTO": {
"properties": {
"loadout": {
"$ref": "#/components/schemas/LolLoadoutsUpdateLoadoutDTO"
},
"serviceToJwtsMap": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
},
"type": "object"
},
"LolLobbyAccountIdAndSummonerId": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"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"
},
"LolLobbyAutoFillQueueDto": {
"properties": {
"autoFillEligible": {
"type": "boolean"
},
"autoFillProtectedForPromos": {
"type": "boolean"
},
"autoFillProtectedForStreaking": {
"type": "boolean"
},
"queueId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyBotParticipantDto": {
"properties": {
"botSkillLevel": {
"format": "int32",
"type": "integer"
},
"championId": {
"format": "int32",
"type": "integer"
},
"team": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyChampionSkinSelection": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"skinId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyChatBlockedPlayerResource": {
"properties": {
"name": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyChatFriend": {
"properties": {
"lol": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"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": "#/components/schemas/LolLobbyCollectionsOwnership"
}
},
"type": "object"
},
"LolLobbyCollectionsOwnership": {
"properties": {
"freeToPlayReward": {
"type": "boolean"
},
"owned": {
"type": "boolean"
},
"rental": {
"$ref": "#/components/schemas/LolLobbyCollectionsRental"
}
},
"type": "object"
},
"LolLobbyCollectionsRental": {
"properties": {},
"type": "object"
},
"LolLobbyCustomEligibilityDto": {
"properties": {
"eligible": {
"type": "boolean"
},
"restrictions": {
"items": {
"$ref": "#/components/schemas/LolLobbyGatekeeperRestrictionDto"
},
"type": "array"
}
},
"type": "object"
},
"LolLobbyCustomGameDto": {
"properties": {
"allowSpectators": {
"type": "string"
},
"gameType": {
"type": "string"
},
"lobbyName": {
"type": "string"
},
"mapId": {
"format": "int32",
"type": "integer"
},
"maxNumPlayers": {
"format": "int32",
"type": "integer"
},
"ownerPuuid": {
"type": "string"
},
"partyId": {
"type": "string"
},
"privateGame": {
"type": "boolean"
},
"spectatorCount": {
"format": "int32",
"type": "integer"
},
"team1Count": {
"format": "int32",
"type": "integer"
},
"team2Count": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyCustomGameSettingsDto": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"lobbyName": {
"type": "string"
},
"lobbyPassword": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyCustomJoinOptionsDto": {
"properties": {
"lobbyPassword": {
"type": "string"
},
"team": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyEligibility": {
"properties": {
"eligible": {
"type": "boolean"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"restrictions": {
"items": {
"$ref": "#/components/schemas/LolLobbyEligibilityRestriction"
},
"type": "array"
}
},
"type": "object"
},
"LolLobbyEligibilityRestriction": {
"properties": {
"expiredTimestamp": {
"format": "int64",
"type": "integer"
},
"restrictionArgs": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"restrictionCode": {
"$ref": "#/components/schemas/LolLobbyEligibilityRestrictionCode"
},
"summonerIds": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"summonerIdsString": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyEligibilityRestrictionCode": {
"enum": [
"QueueDisabled",
"QueueUnsupported",
"PlayerLevelRestriction",
"PlayerTimedRestriction",
"PlayerBannedRestriction",
"PlayerAvailableChampionRestriction",
"TeamDivisionRestriction",
"TeamMaxSizeRestriction",
"TeamMinSizeRestriction",
"PlayerBingeRestriction",
"PlayerDodgeRestriction",
"PlayerInGameRestriction",
"PlayerLeaverBustedRestriction",
"PlayerLeaverQueueLockoutRestriction",
"PlayerLeaverTaintedWarningRestriction",
"PlayerMaxLevelRestriction",
"PlayerMinLevelRestriction",
"PlayerMinorRestriction",
"PlayerTimePlayedRestriction",
"PlayerRankSoloOnlyRestriction",
"PlayerRankedSuspensionRestriction",
"TeamHighMMRMaxSizeRestriction",
"TeamSizeRestriction",
"PrerequisiteQueuesNotPlayedRestriction",
"GameVersionMismatch",
"GameVersionMissing",
"GameVersionNotSupported",
"QueueEntryNotEntitledRestriction",
"UnknownRestriction",
"BanInfoNotAvailable",
"MinorInfoNotAvailable",
"SummonerInfoNotAvailable",
"LeaguesInfoNotAvailable",
"InventoryChampsInfoNotAvailable",
"InventoryQueuesInfoNotAvailable",
"MmrStandardDeviationTooLarge"
],
"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": {
"allowSpectators": {
"type": "string"
},
"botDifficulty": {
"type": "string"
},
"customsSettings": {
"$ref": "#/components/schemas/LolLobbyCustomGameSettingsDto"
},
"gameCustomization": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"gameType": {
"type": "string"
},
"gameTypeConfigId": {
"format": "int64",
"type": "integer"
},
"mapId": {
"format": "int32",
"type": "integer"
},
"maxPartySize": {
"format": "int32",
"type": "integer"
},
"maxTeamSize": {
"format": "int32",
"type": "integer"
},
"queueId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyGameflowGameClient": {
"properties": {
"running": {
"type": "boolean"
}
},
"type": "object"
},
"LolLobbyGameflowGameData": {
"properties": {
"queue": {
"$ref": "#/components/schemas/LolLobbyQueue"
}
},
"type": "object"
},
"LolLobbyGameflowGameDodge": {
"properties": {
"dodgeIds": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"phase": {
"$ref": "#/components/schemas/LolLobbyGameflowPhase"
},
"state": {
"$ref": "#/components/schemas/LolLobbyMatchmakingDodgeState"
}
},
"type": "object"
},
"LolLobbyGameflowPhase": {
"enum": [
"None",
"Lobby",
"Matchmaking",
"CheckedIntoTournament",
"ReadyCheck",
"ChampSelect",
"GameStart",
"FailedToLaunch",
"InProgress",
"Reconnect",
"WaitingForStats",
"PreEndOfGame",
"EndOfGame",
"TerminatedInError"
],
"type": "string"
},
"LolLobbyGameflowSampleDto": {
"properties": {
"intervalSecs": {
"format": "double",
"type": "number"
},
"probability": {
"format": "double",
"type": "number"
},
"state": {
"type": "string"
},
"tags": {
"items": {
"$ref": "#/components/schemas/LolLobbyGameflowSampleTag"
},
"type": "array"
}
},
"type": "object"
},
"LolLobbyGameflowSampleTag": {
"enum": [
"Unregistered",
"GameVersionMissing",
"UserInfoTokenMissing",
"SummonerTokenMissing",
"RankedTokenMissing",
"InventoryTokenMissing"
],
"type": "string"
},
"LolLobbyGameflowSession": {
"properties": {
"gameClient": {
"$ref": "#/components/schemas/LolLobbyGameflowGameClient"
},
"gameData": {
"$ref": "#/components/schemas/LolLobbyGameflowGameData"
},
"gameDodge": {
"$ref": "#/components/schemas/LolLobbyGameflowGameDodge"
},
"phase": {
"$ref": "#/components/schemas/LolLobbyGameflowPhase"
}
},
"type": "object"
},
"LolLobbyGatekeeperRestrictionDto": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"details": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"payload": {
"type": "string"
},
"puuid": {
"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"
},
"LolLobbyInventoryItem": {
"properties": {
"itemId": {
"format": "int32",
"type": "integer"
}
},
"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": "#/components/schemas/LolLobbyLcdsPartyRewardsConfig"
}
},
"type": "object"
},
"LolLobbyLcdsGameMetaData": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"mapId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyLcdsPartyRewardsConfig": {
"properties": {
"Enabled": {
"type": "boolean"
}
},
"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": "#/components/schemas/LolLobbyLobbyCustomGameLobby"
},
"gameMode": {
"type": "string"
},
"invitationId": {
"type": "string"
},
"invitations": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyInvitation"
},
"type": "array"
},
"isCustom": {
"type": "boolean"
},
"isTeamBuilderManaged": {
"type": "boolean"
},
"localMember": {
"$ref": "#/components/schemas/LolLobbyLobbyMember"
},
"mapId": {
"format": "int32",
"type": "integer"
},
"maximumParticipantListSize": {
"format": "int32",
"type": "integer"
},
"members": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyMember"
},
"type": "array"
},
"premadeSizeAllowed": {
"type": "boolean"
},
"queueAvailability": {
"$ref": "#/components/schemas/LolLobbyQueueAvailability"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"removalReason": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/LolLobbyLobbyBotDifficulty"
},
"championId": {
"format": "int32",
"type": "integer"
},
"teamId": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyLobbyChangeGameDto": {
"properties": {
"customGameLobby": {
"$ref": "#/components/schemas/LolLobbyLobbyCustomGameLobby"
},
"gameCustomization": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"isCustom": {
"type": "boolean"
},
"queueId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyLobbyChangeQueue": {
"properties": {
"customGameLobby": {
"$ref": "#/components/schemas/LolLobbyLobbyCustomGameLobby"
},
"isCustom": {
"type": "boolean"
},
"queueId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyLobbyCustomChampSelectStartResponse": {
"properties": {
"failedPlayers": {
"items": {
"$ref": "#/components/schemas/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"
},
"partyId": {
"type": "string"
},
"passbackUrl": {
"type": "string"
},
"spectatorPolicy": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyLobbyCustomGameConfiguration": {
"properties": {
"gameMode": {
"type": "string"
},
"gameServerRegion": {
"type": "string"
},
"gameTypeConfig": {
"$ref": "#/components/schemas/LolLobbyQueueGameTypeConfig"
},
"mapId": {
"format": "int32",
"type": "integer"
},
"maxPlayerCount": {
"format": "int32",
"type": "integer"
},
"mutators": {
"$ref": "#/components/schemas/LolLobbyQueueGameTypeConfig"
},
"spectatorPolicy": {
"$ref": "#/components/schemas/LolLobbyQueueCustomGameSpectatorPolicy"
},
"teamSize": {
"format": "int32",
"type": "integer"
},
"tournamentGameMode": {
"type": "string"
},
"tournamentPassbackDataPacket": {
"type": "string"
},
"tournamentPassbackUrl": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyLobbyCustomGameLobby": {
"properties": {
"configuration": {
"$ref": "#/components/schemas/LolLobbyLobbyCustomGameConfiguration"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"lobbyName": {
"type": "string"
},
"lobbyPassword": {
"type": "string"
},
"practiceGameRewardsDisabledReasons": {
"items": {
"type": "string"
},
"type": "array"
},
"spectators": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyMember"
},
"type": "array"
},
"teamOne": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyMember"
},
"type": "array"
},
"teamTwo": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolLobbyLobbyGameConfigDto"
},
"invitations": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyInvitationDto"
},
"type": "array"
},
"localMember": {
"$ref": "#/components/schemas/LolLobbyLobbyParticipantDto"
},
"members": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyParticipantDto"
},
"type": "array"
},
"partyId": {
"type": "string"
},
"partyType": {
"type": "string"
},
"restrictions": {
"items": {
"$ref": "#/components/schemas/LolLobbyEligibilityRestriction"
},
"type": "array"
},
"warnings": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolLobbyQueueCustomGameSpectatorPolicy"
},
"customSpectators": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyParticipantDto"
},
"type": "array"
},
"customTeam100": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyParticipantDto"
},
"type": "array"
},
"customTeam200": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyParticipantDto"
},
"type": "array"
},
"gameMode": {
"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": "#/components/schemas/LolLobbyEligibility"
},
"errorType": {
"type": "string"
},
"fromSummonerId": {
"format": "int64",
"type": "integer"
},
"fromSummonerName": {
"type": "string"
},
"id": {
"type": "string"
},
"invitationMetaData": {
"additionalProperties": true,
"type": "object"
},
"state": {
"$ref": "#/components/schemas/LolLobbyLobbyInvitationState"
},
"timestamp": {
"type": "string"
},
"toSummonerId": {
"format": "int64",
"type": "integer"
},
"toSummonerName": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyLobbyInvitationDto": {
"properties": {
"invitationId": {
"type": "string"
},
"invitationType": {
"$ref": "#/components/schemas/LolLobbyInvitationType"
},
"state": {
"$ref": "#/components/schemas/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": "#/components/schemas/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"
},
"reason": {
"type": "string"
}
},
"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": "#/components/schemas/LolLobbyLobbyMatchmakingSearchErrorResource"
},
"type": "array"
},
"lowPriorityData": {
"$ref": "#/components/schemas/LolLobbyLobbyMatchmakingLowPriorityDataResource"
},
"searchState": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolLobbyLobbyBotDifficulty"
},
"canInviteOthers": {
"type": "boolean"
},
"excludedPositionPreference": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"isBot": {
"type": "boolean"
},
"isOwner": {
"type": "boolean"
},
"isSpectator": {
"type": "boolean"
},
"positionPreferences": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolLobbyLobbyBotDifficulty"
},
"botId": {
"type": "string"
},
"firstPositionPreference": {
"type": "string"
},
"isBot": {
"type": "boolean"
},
"isLeader": {
"type": "boolean"
},
"isSpectator": {
"type": "boolean"
},
"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": "#/components/schemas/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": "#/components/schemas/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"
},
"puuid": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/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": "#/components/schemas/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"
},
"multiUserChatJWT": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyPartyDto": {
"properties": {
"activeRestrictions": {
"$ref": "#/components/schemas/LolLobbyQueueRestrictionDto"
},
"activityLocked": {
"type": "boolean"
},
"activityResumeUtcMillis": {
"format": "int64",
"type": "integer"
},
"activityStartedUtcMillis": {
"format": "int64",
"type": "integer"
},
"botParticipants": {
"items": {
"$ref": "#/components/schemas/LolLobbyBotParticipantDto"
},
"type": "array"
},
"chat": {
"$ref": "#/components/schemas/LolLobbyPartyChatDto"
},
"eligibilityHash": {
"format": "int64",
"type": "integer"
},
"eligibilityRestrictions": {
"items": {
"$ref": "#/components/schemas/LolLobbyGatekeeperRestrictionDto"
},
"type": "array"
},
"eligibilityWarnings": {
"items": {
"$ref": "#/components/schemas/LolLobbyGatekeeperRestrictionDto"
},
"type": "array"
},
"gameMode": {
"$ref": "#/components/schemas/LolLobbyGameModeDto"
},
"maxPartySize": {
"format": "int32",
"type": "integer"
},
"partyId": {
"type": "string"
},
"partyType": {
"type": "string"
},
"platformId": {
"type": "string"
},
"players": {
"items": {
"$ref": "#/components/schemas/LolLobbyPartyMemberDto"
},
"type": "array"
},
"version": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyPartyEogStatusCategory": {
"enum": [
"kLeft",
"kPlayAgain",
"kOnEog"
],
"type": "string"
},
"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"
},
"LolLobbyPartyMemberDto": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"canInvite": {
"type": "boolean"
},
"gameMode": {
"$ref": "#/components/schemas/LolLobbyGameModeDto"
},
"inviteTimestamp": {
"format": "int64",
"type": "integer"
},
"invitedBySummonerId": {
"format": "int64",
"type": "integer"
},
"metadata": {
"$ref": "#/components/schemas/LolLobbyPartyMemberMetadataDto"
},
"partyId": {
"type": "string"
},
"partyVersion": {
"format": "int64",
"type": "integer"
},
"platformId": {
"type": "string"
},
"puuid": {
"type": "string"
},
"ready": {
"type": "boolean"
},
"role": {
"$ref": "#/components/schemas/LolLobbyPartyMemberRoleEnum"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"team": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyPartyMemberMetadataDto": {
"properties": {
"championSelection": {
"format": "int32",
"type": "integer"
},
"positionPref": {
"items": {
"type": "string"
},
"type": "array"
},
"properties": {
"additionalProperties": true,
"type": "object"
},
"skinSelection": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyPartyMemberRoleEnum": {
"enum": [
"LEADER",
"MEMBER",
"INVITED",
"HOLD",
"KICKED",
"DECLINED",
"NONE"
],
"type": "string"
},
"LolLobbyPartyNotificationEnvelopeDto": {
"properties": {
"player": {
"$ref": "#/components/schemas/LolLobbyPlayerDto"
},
"queueRestriction": {
"$ref": "#/components/schemas/LolLobbyQueueRestrictionDto"
}
},
"type": "object"
},
"LolLobbyPartyPresenceData": {
"properties": {
"maxPlayers": {
"format": "int32",
"type": "integer"
},
"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": "#/components/schemas/LolLobbyGatekeeperRestrictionDto"
},
"type": "array"
}
},
"type": "object"
},
"LolLobbyPartyReward": {
"properties": {
"premadeSize": {
"format": "int32",
"type": "integer"
},
"type": {
"$ref": "#/components/schemas/LolLobbyLobbyPartyRewardType"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyPartyStatusDto": {
"properties": {
"eogPlayers": {
"items": {
"type": "string"
},
"type": "array"
},
"leftPlayers": {
"items": {
"type": "string"
},
"type": "array"
},
"partySize": {
"format": "int32",
"type": "integer"
},
"readyPlayers": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolLobbyPlayerCollectionDto": {
"properties": {
"players": {
"items": {
"$ref": "#/components/schemas/LolLobbyPlayerDto"
},
"type": "array"
}
},
"type": "object"
},
"LolLobbyPlayerDto": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"createdAt": {
"format": "int64",
"type": "integer"
},
"currentParty": {
"$ref": "#/components/schemas/LolLobbyPartyDto"
},
"eligibilityHash": {
"format": "int64",
"type": "integer"
},
"parties": {
"items": {
"$ref": "#/components/schemas/LolLobbyPartyMemberDto"
},
"type": "array"
},
"platformId": {
"type": "string"
},
"puuid": {
"type": "string"
},
"registration": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolLobbyLobbyStatus"
},
"lastQueuedLobbyStatus": {
"$ref": "#/components/schemas/LolLobbyLobbyStatus"
}
},
"type": "object"
},
"LolLobbyPlayerUpdateType": {
"enum": [
"None",
"Direct",
"ServiceProxy",
"RMS"
],
"type": "string"
},
"LolLobbyPremadeMemberDto": {
"properties": {
"displayName": {
"type": "string"
},
"partyId": {
"type": "string"
},
"puuid": {
"type": "string"
},
"role": {
"$ref": "#/components/schemas/LolLobbyPartyMemberRoleEnum"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyPremadePartyDto": {
"properties": {
"commsEnabled": {
"type": "boolean"
},
"partyId": {
"type": "string"
},
"players": {
"additionalProperties": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolLobbyQueueGameCategory"
},
"championsRequiredToPlay": {
"format": "int32",
"type": "integer"
},
"description": {
"type": "string"
},
"detailedDescription": {
"type": "string"
},
"gameMode": {
"type": "string"
},
"gameTypeConfig": {
"$ref": "#/components/schemas/LolLobbyQueueGameTypeConfig"
},
"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"
},
"maxDivisionForPremadeSize2": {
"type": "string"
},
"maxLevel": {
"format": "int32",
"type": "integer"
},
"maxSummonerLevelForFirstWinOfTheDay": {
"format": "int32",
"type": "integer"
},
"maxTierForPremadeSize2": {
"type": "string"
},
"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": "#/components/schemas/LolLobbyQueueAvailability"
},
"queueRewards": {
"$ref": "#/components/schemas/LolLobbyQueueReward"
},
"removalFromGameAllowed": {
"type": "boolean"
},
"removalFromGameDelayMinutes": {
"format": "int32",
"type": "integer"
},
"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": "#/components/schemas/LolLobbyQueueAvailability"
}
},
"type": "object"
},
"LolLobbyQueueCustomGameSpectatorPolicy": {
"enum": [
"NotAllowed",
"LobbyAllowed",
"FriendsAllowed",
"AllAllowed"
],
"type": "string"
},
"LolLobbyQueueGameCategory": {
"enum": [
"None",
"Custom",
"PvP",
"VersusAi",
"Alpha"
],
"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": "#/components/schemas/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"
},
"LolLobbyRankedPositionInfoDTO": {
"properties": {
"queue": {
"type": "string"
},
"rank": {
"type": "string"
},
"tier": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyRankedStatsUnsignedDTO": {
"properties": {
"highestPreviousSeasonEndRank": {
"type": "string"
},
"highestPreviousSeasonEndTier": {
"type": "string"
},
"jwt": {
"type": "string"
},
"queues": {
"items": {
"$ref": "#/components/schemas/LolLobbyRankedPositionInfoDTO"
},
"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": "#/components/schemas/LolLobbyReceivedInvitationGameConfigDto"
},
"invitationId": {
"type": "string"
},
"invitationType": {
"$ref": "#/components/schemas/LolLobbyInvitationType"
},
"restrictions": {
"items": {
"$ref": "#/components/schemas/LolLobbyEligibilityRestriction"
},
"type": "array"
},
"state": {
"$ref": "#/components/schemas/LolLobbyLobbyInvitationState"
},
"timestamp": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyReceivedInvitationGameConfigDto": {
"properties": {
"gameMode": {
"type": "string"
},
"inviteGameType": {
"type": "string"
},
"mapId": {
"format": "int32",
"type": "integer"
},
"queueId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyRegistrationCredentials": {
"properties": {
"gameClientVersion": {
"type": "string"
},
"inventoryToken": {
"type": "string"
},
"inventoryTokens": {
"items": {
"type": "string"
},
"type": "array"
},
"rankedOverviewToken": {
"type": "string"
},
"simpleInventoryToken": {
"type": "string"
},
"summonerToken": {
"type": "string"
},
"userInfoToken": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyRegistrationStatus": {
"properties": {
"complete": {
"type": "boolean"
},
"errorCodes": {
"items": {
"type": "string"
},
"type": "array"
}
},
"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"
},
"LolLobbySummoner": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"displayName": {
"type": "string"
},
"internalName": {
"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": {
"additionalInventoryTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"afkReady": {
"type": "boolean"
},
"compressAfkCheckPayload": {
"type": "boolean"
},
"inventoryDraft": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderTbdInventory"
},
"maxAfkMillis": {
"format": "int32",
"type": "integer"
},
"multiUserChatJWT": {
"type": "string"
},
"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"
},
"entitledFeatureType": {
"type": "string"
},
"skinId": {
"format": "int32",
"type": "integer"
},
"spell1Id": {
"format": "int32",
"type": "integer"
},
"spell2Id": {
"format": "int32",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"teamId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyTeamBuilderCellsV1": {
"properties": {
"alliedTeam": {
"items": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderCellV1"
},
"type": "array"
},
"enemyTeam": {
"items": {
"$ref": "#/components/schemas/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"
},
"isAllyAction": {
"type": "boolean"
},
"isInProgress": {
"type": "boolean"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyTeamBuilderChampSelectChatRoomDetails": {
"properties": {
"chatRoomName": {
"type": "string"
},
"chatRoomPassword": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyTeamBuilderChampSelectDevPanelData": {
"properties": {
"counter": {
"format": "int64",
"type": "integer"
},
"dtoIndex": {
"format": "int64",
"type": "integer"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"teamIdSuffix": {
"format": "int64",
"type": "integer"
}
},
"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"
},
"LolLobbyTeamBuilderChampSelectPlayerSelection": {
"properties": {
"assignedPosition": {
"type": "string"
},
"cellId": {
"format": "int64",
"type": "integer"
},
"championId": {
"format": "int32",
"type": "integer"
},
"championPickIntent": {
"format": "int32",
"type": "integer"
},
"entitledFeatureType": {
"type": "string"
},
"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"
},
"LolLobbyTeamBuilderChampSelectReport": {
"properties": {
"categories": {
"items": {
"type": "string"
},
"type": "array"
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"match_token": {
"type": "string"
},
"offender_puuid": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyTeamBuilderChampSelectReportV2": {
"properties": {
"categories": {
"items": {
"type": "string"
},
"type": "array"
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"offenderId": {
"type": "string"
},
"token": {
"type": "string"
},
"tokenType": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyTeamBuilderChampSelectSession": {
"properties": {
"actions": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
"allowBattleBoost": {
"type": "boolean"
},
"allowDuplicatePicks": {
"type": "boolean"
},
"allowLockedEvents": {
"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": "#/components/schemas/LolLobbyTeamBuilderChampSelectChatRoomDetails"
},
"counter": {
"format": "int64",
"type": "integer"
},
"entitledFeatureState": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderEntitledFeatureState"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"hasSimultaneousBans": {
"type": "boolean"
},
"hasSimultaneousPicks": {
"type": "boolean"
},
"isSpectating": {
"type": "boolean"
},
"localPlayerCellId": {
"format": "int64",
"type": "integer"
},
"lockedEventIndex": {
"format": "int32",
"type": "integer"
},
"myTeam": {
"items": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampSelectPlayerSelection"
},
"type": "array"
},
"recoveryCounter": {
"format": "int64",
"type": "integer"
},
"rerollsRemaining": {
"format": "int32",
"type": "integer"
},
"skipChampionSelect": {
"type": "boolean"
},
"theirTeam": {
"items": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampSelectPlayerSelection"
},
"type": "array"
},
"timer": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampSelectTimer"
},
"trades": {
"items": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampSelectTradeContract"
},
"type": "array"
}
},
"type": "object"
},
"LolLobbyTeamBuilderChampSelectTimer": {
"properties": {
"adjustedTimeLeftInPhase": {
"format": "int64",
"type": "integer"
},
"internalNowInEpochMs": {
"format": "int64",
"type": "integer"
},
"isInfinite": {
"type": "boolean"
},
"phase": {
"type": "string"
},
"totalTimeInPhase": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyTeamBuilderChampSelectTradeContract": {
"properties": {
"cellId": {
"format": "int64",
"type": "integer"
},
"id": {
"format": "int64",
"type": "integer"
},
"state": {
"$ref": "#/components/schemas/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"
},
"LolLobbyTeamBuilderChampionSelectPreferences": {
"properties": {
"skins": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
},
"spells": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
},
"type": "object"
},
"LolLobbyTeamBuilderChampionSelectStateV1": {
"properties": {
"actionSetList": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
"allowDuplicatePicks": {
"type": "boolean"
},
"allowOptingOutOfBanning": {
"type": "boolean"
},
"allowSkinSelection": {
"type": "boolean"
},
"battleBoostState": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderTeamBuilderBoostInfo"
},
"cells": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderCellsV1"
},
"ceremoniesByActionSetIndex": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
},
"championBenchState": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampionBenchStateV1"
},
"currentActionSetIndex": {
"format": "int32",
"type": "integer"
},
"currentTimeRemainingMillis": {
"format": "int64",
"type": "integer"
},
"currentTotalTimeMillis": {
"format": "int64",
"type": "integer"
},
"entitledFeatureState": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderEntitledFeatureStateV1"
},
"inventoryDraft": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderTbdInventory"
},
"isSpectating": {
"type": "boolean"
},
"lcuSkipsSendingLoadoutsGco": {
"type": "boolean"
},
"localPlayerCellId": {
"format": "int32",
"type": "integer"
},
"lockedEventsState": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderLockedEventsStateV1"
},
"pickIntentClearedReason": {
"type": "string"
},
"rerollState": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderRerollStateV1"
},
"skipChampionSelect": {
"type": "boolean"
},
"subphase": {
"type": "string"
},
"teamChatRoomId": {
"type": "string"
},
"teamId": {
"type": "string"
},
"trades": {
"items": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderTradeV1"
},
"type": "array"
}
},
"type": "object"
},
"LolLobbyTeamBuilderCountdownTimer": {
"properties": {
"counter": {
"format": "int32",
"type": "integer"
},
"phaseName": {
"type": "string"
},
"timer": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyTeamBuilderEntitledFeatureState": {
"properties": {
"additionalRerolls": {
"format": "int32",
"type": "integer"
},
"unlockedSkinIds": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"LolLobbyTeamBuilderEntitledFeatureStateV1": {
"properties": {
"additionalRerolls": {
"format": "int32",
"type": "integer"
},
"unlockedSkinsState": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderUnlockedSkinsStateV1"
}
},
"type": "object"
},
"LolLobbyTeamBuilderGameModeSpellList": {
"properties": {
"spells": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"LolLobbyTeamBuilderGameflowGameClient": {
"properties": {
"running": {
"type": "boolean"
}
},
"type": "object"
},
"LolLobbyTeamBuilderGameflowGameMap": {
"properties": {
"perPositionDisallowedSummonerSpells": {
"additionalProperties": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderGameModeSpellList"
},
"type": "object"
},
"perPositionRequiredSummonerSpells": {
"additionalProperties": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderGameModeSpellList"
},
"type": "object"
}
},
"type": "object"
},
"LolLobbyTeamBuilderGameflowSession": {
"properties": {
"gameClient": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderGameflowGameClient"
},
"map": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderGameflowGameMap"
}
},
"type": "object"
},
"LolLobbyTeamBuilderGatekeeperRestricted": {
"properties": {
"gatekeeperRestrictions": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolLobbyTeamBuilderLobbyInvitation"
},
"type": "array"
},
"isTeamBuilderManaged": {
"type": "boolean"
},
"localMember": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderLobbyMember"
},
"members": {
"items": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderLobbyMember"
},
"type": "array"
},
"premadeSizeAllowed": {
"type": "boolean"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"removalReason": {
"$ref": "#/components/schemas/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": "#/components/schemas/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"
},
"LolLobbyTeamBuilderLockedEventsStateV1": {
"properties": {
"allowLockedEvents": {
"type": "boolean"
},
"lockedEventIndex": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyTeamBuilderLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"connected": {
"type": "boolean"
},
"state": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/LolLobbyTeamBuilderMatchmakingDodgeWarning"
},
"playerResponse": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderMatchmakingReadyCheckResponse"
},
"state": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/LolLobbyTeamBuilderMatchmakingDodgeData"
},
"errors": {
"items": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderMatchmakingSearchErrorResource"
},
"type": "array"
},
"estimatedQueueTime": {
"format": "float",
"type": "number"
},
"isCurrentlyInQueue": {
"type": "boolean"
},
"lobbyId": {
"type": "string"
},
"lowPriorityData": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderMatchmakingLowPriorityData"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"readyCheck": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderMatchmakingReadyCheckResource"
},
"searchState": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderMatchmakingSearchState"
},
"timeInQueue": {
"format": "float",
"type": "number"
}
},
"type": "object"
},
"LolLobbyTeamBuilderMatchmakingSearchState": {
"enum": [
"Invalid",
"AbandonedLowPriorityQueue",
"Canceled",
"Searching",
"Found",
"Error",
"ServiceError",
"ServiceShutdown"
],
"type": "string"
},
"LolLobbyTeamBuilderQueue": {
"properties": {
"allowablePremadeSizes": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"areFreeChampionsAllowed": {
"type": "boolean"
},
"assetMutator": {
"type": "string"
},
"category": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderQueueGameCategory"
},
"championsRequiredToPlay": {
"format": "int32",
"type": "integer"
},
"description": {
"type": "string"
},
"detailedDescription": {
"type": "string"
},
"gameMode": {
"type": "string"
},
"gameTypeConfig": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderQueueGameTypeConfig"
},
"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": "#/components/schemas/LolLobbyTeamBuilderQueueAvailability"
},
"queueRewards": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderQueueReward"
},
"removalFromGameAllowed": {
"type": "boolean"
},
"removalFromGameDelayMinutes": {
"format": "int32",
"type": "integer"
},
"shortName": {
"type": "string"
},
"showPositionSelector": {
"type": "boolean"
},
"spectatorEnabled": {
"type": "boolean"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyTeamBuilderQueueAvailability": {
"enum": [
"Available",
"PlatformDisabled",
"DoesntMeetRequirements"
],
"type": "string"
},
"LolLobbyTeamBuilderQueueGameCategory": {
"enum": [
"None",
"Custom",
"PvP",
"VersusAi",
"Alpha"
],
"type": "string"
},
"LolLobbyTeamBuilderQueueGameTypeConfig": {
"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"
},
"LolLobbyTeamBuilderQueueReward": {
"properties": {
"isChampionPointsEnabled": {
"type": "boolean"
},
"isIpEnabled": {
"type": "boolean"
},
"isXpEnabled": {
"type": "boolean"
},
"partySizeIpRewards": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"LolLobbyTeamBuilderRerollStateV1": {
"properties": {
"allowRerolling": {
"type": "boolean"
},
"rerollsRemaining": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyTeamBuilderSettingCategoryResource": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampionSelectPreferences"
},
"schemaVersion": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyTeamBuilderTBDMatchmakingState": {
"properties": {
"backwardsTransitionReason": {
"type": "string"
},
"estimatedMatchmakingTimeMillis": {
"format": "int64",
"type": "integer"
},
"timeInMatchmakingMillis": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyTeamBuilderTbLobbyStateResource": {
"properties": {
"afkCheckState": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderAfkCheckStateV1"
},
"championSelectState": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampionSelectStateV1"
},
"counter": {
"format": "int32",
"type": "integer"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"matchmakingState": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderTBDMatchmakingState"
},
"phaseName": {
"type": "string"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"recoveryCounter": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLobbyTeamBuilderTbRemovedFromServiceNotification": {
"properties": {
"backwardsTransitionInfo": {
"$ref": "#/components/schemas/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"
},
"LolLobbyTeamBuilderTeambuilderLeagueEdgeResponse": {
"properties": {
"payload": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderTbLobbyStateResource"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyTeamBuilderTradeV1": {
"properties": {
"cellId": {
"format": "int32",
"type": "integer"
},
"id": {
"format": "int32",
"type": "integer"
},
"state": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyTeamBuilderUnlockedSkinsStateV1": {
"properties": {
"unlockedSkinIds": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"LolLobbyUserInfoToken": {
"properties": {
"userInfo": {
"type": "string"
}
},
"type": "object"
},
"LolLobbyUserResource": {
"properties": {
"lol": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLoginAccessToken": {
"properties": {
"expiry": {
"format": "int64",
"type": "integer"
},
"scopes": {
"items": {
"type": "string"
},
"type": "array"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"LolLoginAccountStateResource": {
"properties": {
"state": {
"$ref": "#/components/schemas/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"
},
"LolLoginConfigReadinessEnum": {
"enum": [
"NotReady",
"Ready",
"Disabled"
],
"type": "string"
},
"LolLoginConfigStatus": {
"properties": {
"readiness": {
"$ref": "#/components/schemas/LolLoginConfigReadinessEnum"
}
},
"type": "object"
},
"LolLoginConfigType": {
"enum": [
"public",
"player"
],
"type": "string"
},
"LolLoginCrashReportingEnvironment": {
"properties": {
"environment": {
"type": "string"
},
"userId": {
"type": "string"
},
"userName": {
"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"
},
"LolLoginLeagueSessionStatus": {
"enum": [
"UNINITIALIZED",
"INITIALIZED",
"EXPIRED",
"DUPLICATED",
"ANTI_ADDICTION_EXPIRED"
],
"type": "string"
},
"LolLoginLeagueSessionTokenEnvelope": {
"properties": {
"logoutOnFailure": {
"type": "boolean"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"LolLoginLoginConnectionMode": {
"enum": [
"Preparing",
"Legacy",
"Partner",
"RiotClient"
],
"type": "string"
},
"LolLoginLoginConnectionState": {
"properties": {
"isPartnerRiotClient": {
"type": "boolean"
},
"isUsingDeveloperAuthToken": {
"type": "boolean"
},
"mode": {
"$ref": "#/components/schemas/LolLoginLoginConnectionMode"
}
},
"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": "#/components/schemas/LolLoginLoginError"
},
"gasToken": {
"additionalProperties": true,
"type": "object"
},
"idToken": {
"type": "string"
},
"isInLoginQueue": {
"type": "boolean"
},
"isNewPlayer": {
"type": "boolean"
},
"puuid": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/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"
},
"LolLoginRSOConfigReadyState": {
"properties": {
"ready": {
"type": "boolean"
}
},
"type": "object"
},
"LolLoginRSOPlayerCredentials": {
"properties": {
"password": {
"type": "string"
},
"platformId": {
"type": "string"
},
"username": {
"type": "string"
}
},
"type": "object"
},
"LolLoginSummonerCreatedResource": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLoginSummonerSessionResource": {
"properties": {
"displayName": {
"type": "string"
},
"isNewPlayer": {
"type": "boolean"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLoginUsernameAndPassword": {
"properties": {
"password": {
"type": "string"
},
"username": {
"type": "string"
}
},
"type": "object"
},
"LolLootAccountIdAndSummonerId": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLootCollectionsChampionMinimal": {
"properties": {
"id": {
"format": "int32",
"type": "integer"
},
"ownership": {
"$ref": "#/components/schemas/LolLootCollectionsOwnership"
}
},
"type": "object"
},
"LolLootCollectionsChampionSkinMinimal": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"id": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"ownership": {
"$ref": "#/components/schemas/LolLootCollectionsOwnership"
},
"splashPath": {
"type": "string"
},
"tilePath": {
"type": "string"
}
},
"type": "object"
},
"LolLootCollectionsEmote": {
"properties": {
"itemId": {
"format": "int64",
"type": "integer"
},
"ownershipType": {
"$ref": "#/components/schemas/LolLootInventoryOwnership"
}
},
"type": "object"
},
"LolLootCollectionsOwnership": {
"properties": {
"freeToPlayReward": {
"type": "boolean"
},
"owned": {
"type": "boolean"
},
"rental": {
"$ref": "#/components/schemas/LolLootCollectionsRental"
}
},
"type": "object"
},
"LolLootCollectionsRental": {
"properties": {
"rented": {
"type": "boolean"
}
},
"type": "object"
},
"LolLootCollectionsStatstone": {
"properties": {
"itemId": {
"format": "int64",
"type": "integer"
},
"ownershipType": {
"$ref": "#/components/schemas/LolLootInventoryOwnership"
}
},
"type": "object"
},
"LolLootCollectionsSummonerIcon": {
"properties": {
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLootCollectionsWardSkin": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
},
"ownership": {
"$ref": "#/components/schemas/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"
},
"LolLootCounter": {
"properties": {
"direction": {
"type": "string"
},
"groupId": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"startValue": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLootCounterInstance": {
"properties": {
"counterId": {
"type": "string"
},
"counterValue": {
"format": "int64",
"type": "integer"
},
"groupId": {
"type": "string"
},
"ownerId": {
"type": "string"
},
"productId": {
"type": "string"
}
},
"type": "object"
},
"LolLootCurrencyConfiguration": {
"properties": {
"currenciesUsingCapWallets": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolLootEntityInstance": {
"properties": {
"counters": {
"items": {
"$ref": "#/components/schemas/LolLootCounterInstance"
},
"type": "array"
},
"groupId": {
"type": "string"
},
"milestones": {
"items": {
"$ref": "#/components/schemas/LolLootMilestoneInstance"
},
"type": "array"
}
},
"type": "object"
},
"LolLootGameDataSummonerEmote": {
"properties": {
"description": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"inventoryIcon": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolLootGameDataSummonerIcon": {
"properties": {
"id": {
"format": "int32",
"type": "integer"
},
"imagePath": {
"type": "string"
}
},
"type": "object"
},
"LolLootGameflowPhase": {
"enum": [
"None",
"Lobby",
"Matchmaking",
"CheckedIntoTournament",
"ReadyCheck",
"ChampSelect",
"GameStart",
"FailedToLaunch",
"InProgress",
"Reconnect",
"WaitingForStats",
"PreEndOfGame",
"EndOfGame",
"TerminatedInError"
],
"type": "string"
},
"LolLootGameflowSession": {
"properties": {
"phase": {
"$ref": "#/components/schemas/LolLootGameflowPhase"
}
},
"type": "object"
},
"LolLootGrantStatus": {
"enum": [
"PENDING_FULFILLMENT",
"PENDING_SELECTION",
"FULFILLED",
"FAILED"
],
"type": "string"
},
"LolLootGrantorDescription": {
"properties": {
"appName": {
"type": "string"
},
"entityId": {
"type": "string"
}
},
"type": "object"
},
"LolLootGroup": {
"properties": {
"counters": {
"items": {
"$ref": "#/components/schemas/LolLootCounter"
},
"type": "array"
},
"id": {
"type": "string"
},
"milestones": {
"items": {
"$ref": "#/components/schemas/LolLootMilestone"
},
"type": "array"
},
"name": {
"type": "string"
},
"productId": {
"type": "string"
},
"repeat": {
"$ref": "#/components/schemas/LolLootRepeat"
}
},
"type": "object"
},
"LolLootInventoryOwnership": {
"enum": [
"OWNED",
"RENTED",
"F2P"
],
"type": "string"
},
"LolLootItemOwnershipStatus": {
"enum": [
"NONE",
"FREE",
"RENTAL",
"OWNED"
],
"type": "string"
},
"LolLootLedgerConfigGdsResource": {
"properties": {
"counters": {
"items": {
"$ref": "#/components/schemas/LolLootMilestonesLedgerCounterGdsResource"
},
"type": "array"
},
"id": {
"type": "string"
},
"milestones": {
"items": {
"$ref": "#/components/schemas/LolLootLedgerConfigMilestoneGdsResource"
},
"type": "array"
},
"name": {
"type": "string"
},
"repeat": {
"$ref": "#/components/schemas/LolLootMilestonesLedgerConfigRepeatGdsResource"
}
},
"type": "object"
},
"LolLootLedgerConfigMilestoneGdsResource": {
"properties": {
"counter": {
"$ref": "#/components/schemas/LolLootMilestonesLedgerCounterGdsResource"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"properties": {
"items": {
"$ref": "#/components/schemas/LolLootLedgerConfigMilestonePropertiesGdsResource"
},
"type": "array"
},
"triggerValue": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLootLedgerConfigMilestonePropertiesGdsResource": {
"properties": {
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"rewardStrategy": {
"type": "string"
},
"rewards": {
"items": {
"$ref": "#/components/schemas/LolLootLedgerConfigMilestoneRewardGdsResource"
},
"type": "array"
}
},
"type": "object"
},
"LolLootLedgerConfigMilestoneRewardGdsResource": {
"properties": {
"id": {
"type": "string"
},
"legacyLootItem": {
"type": "string"
},
"lootItemToGrant": {
"$ref": "#/components/schemas/LolLootMilestoneLootItemRewardGdsResource"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"rewardType": {
"type": "string"
}
},
"type": "object"
},
"LolLootLoginDataPacket": {
"properties": {
"simpleMessages": {
"items": {
"$ref": "#/components/schemas/LolLootLoginSimpleMessage"
},
"type": "array"
}
},
"type": "object"
},
"LolLootLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"state": {
"$ref": "#/components/schemas/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"
},
"LolLootLootBundleContentGdsResource": {
"properties": {
"localizedDescription": {
"type": "string"
}
},
"type": "object"
},
"LolLootLootBundleGdsResource": {
"properties": {
"contents": {
"items": {
"$ref": "#/components/schemas/LolLootLootBundleContentGdsResource"
},
"type": "array"
},
"description": {
"type": "string"
},
"descriptionLong": {
"type": "string"
},
"id": {
"type": "string"
},
"image": {
"type": "string"
}
},
"type": "object"
},
"LolLootLootDataGdsResource": {
"properties": {
"LootBundles": {
"items": {
"$ref": "#/components/schemas/LolLootLootBundleGdsResource"
},
"type": "array"
},
"LootItems": {
"items": {
"$ref": "#/components/schemas/LolLootLootItemGdsResource"
},
"type": "array"
},
"LootRecipes": {
"items": {
"$ref": "#/components/schemas/LolLootLootRecipeGdsResource"
},
"type": "array"
},
"LootTables": {
"items": {
"$ref": "#/components/schemas/LolLootLootTableGdsResource"
},
"type": "array"
}
},
"type": "object"
},
"LolLootLootDescription": {
"properties": {
"childLootTableNames": {
"items": {
"type": "string"
},
"type": "array"
},
"childrenDescriptions": {
"items": {
"$ref": "#/components/schemas/LolLootLootDescription"
},
"type": "array"
},
"imagePath": {
"type": "string"
},
"localizedDescription": {
"type": "string"
},
"localizedDescriptionLong": {
"type": "string"
},
"lootName": {
"type": "string"
}
},
"type": "object"
},
"LolLootLootDropTableEntryGdsResource": {
"properties": {
"localizedDescription": {
"type": "string"
},
"lootId": {
"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": "#/components/schemas/LolLootLootRarity"
},
"recipeMenuActive": {
"type": "boolean"
},
"recipeMenuSubtitle": {
"type": "string"
},
"recipeMenuTitle": {
"type": "string"
},
"startDate": {
"type": "string"
},
"type": {
"$ref": "#/components/schemas/LolLootLootType"
}
},
"type": "object"
},
"LolLootLootMilestone": {
"properties": {
"id": {
"type": "string"
},
"rewards": {
"items": {
"$ref": "#/components/schemas/LolLootLootMilestoneReward"
},
"type": "array"
},
"threshold": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLootLootMilestoneClaimStatus": {
"enum": [
"NOT_STARTED",
"IN_PROGRESS",
"COMPLETED",
"FAILED"
],
"type": "string"
},
"LolLootLootMilestoneRepeat": {
"properties": {
"multiplier": {
"format": "float",
"type": "number"
},
"repeatCount": {
"format": "int32",
"type": "integer"
},
"repeatScope": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLootLootMilestoneReward": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"itemInstanceId": {
"type": "string"
},
"lootItem": {
"$ref": "#/components/schemas/LolLootPlayerLoot"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"rewardGroupId": {
"type": "string"
},
"rewardType": {
"type": "string"
}
},
"type": "object"
},
"LolLootLootMilestones": {
"properties": {
"active": {
"type": "boolean"
},
"endDate": {
"type": "string"
},
"errorCachingMilestoneSet": {
"type": "boolean"
},
"id": {
"type": "string"
},
"ledgerConfigId": {
"type": "string"
},
"lootItems": {
"items": {
"type": "string"
},
"type": "array"
},
"milestones": {
"items": {
"$ref": "#/components/schemas/LolLootLootMilestone"
},
"type": "array"
},
"recipes": {
"items": {
"type": "string"
},
"type": "array"
},
"repeat": {
"$ref": "#/components/schemas/LolLootLootMilestoneRepeat"
},
"startDate": {
"type": "string"
},
"storeGroupTitle": {
"type": "string"
}
},
"type": "object"
},
"LolLootLootMilestonesClaimResponse": {
"properties": {
"claimedMilestones": {
"items": {
"type": "string"
},
"type": "array"
},
"lootMilestoneSetId": {
"type": "string"
},
"status": {
"$ref": "#/components/schemas/LolLootLootMilestoneClaimStatus"
}
},
"type": "object"
},
"LolLootLootMilestonesCounter": {
"properties": {
"completedLoops": {
"format": "int64",
"type": "integer"
},
"counterValue": {
"format": "int64",
"type": "integer"
},
"lootMilestonesId": {
"type": "string"
},
"readyToClaimMilestones": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolLootLootMilestonesDataGdsResource": {
"properties": {
"endDate": {
"type": "string"
},
"id": {
"type": "string"
},
"ledgerConfig": {
"$ref": "#/components/schemas/LolLootLedgerConfigGdsResource"
},
"recipes": {
"items": {
"$ref": "#/components/schemas/LolLootMilestonesRecipeGdsResource"
},
"type": "array"
},
"startDate": {
"type": "string"
},
"storeGroupTitle": {
"type": "string"
}
},
"type": "object"
},
"LolLootLootOddsResponse": {
"properties": {
"children": {
"items": {
"$ref": "#/components/schemas/LolLootLootOddsResponse"
},
"type": "array"
},
"dropRate": {
"format": "double",
"type": "number"
},
"label": {
"type": "string"
},
"lootId": {
"type": "string"
},
"lootOrder": {
"format": "int32",
"type": "integer"
},
"parentId": {
"type": "string"
},
"quantity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLootLootOutputGdsResource": {
"properties": {
"localizedDescription": {
"type": "string"
},
"lootId": {
"type": "string"
}
},
"type": "object"
},
"LolLootLootRarity": {
"enum": [
"Default",
"Epic",
"Legendary",
"Mythic",
"Ultimate"
],
"type": "string"
},
"LolLootLootRecipeGdsResource": {
"properties": {
"contextMenuText": {
"type": "string"
},
"description": {
"type": "string"
},
"hasVisibleLootOdds": {
"type": "boolean"
},
"id": {
"type": "string"
},
"imagePath": {
"type": "string"
},
"introVideoPath": {
"type": "string"
},
"loopVideoPath": {
"type": "string"
},
"outputs": {
"items": {
"$ref": "#/components/schemas/LolLootLootOutputGdsResource"
},
"type": "array"
},
"outroVideoPath": {
"type": "string"
},
"requirementText": {
"type": "string"
}
},
"type": "object"
},
"LolLootLootTableGdsResource": {
"properties": {
"description": {
"type": "string"
},
"descriptionLong": {
"type": "string"
},
"dropChance": {
"items": {
"$ref": "#/components/schemas/LolLootLootDropTableEntryGdsResource"
},
"type": "array"
},
"id": {
"type": "string"
},
"image": {
"type": "string"
}
},
"type": "object"
},
"LolLootLootType": {
"enum": [
"Chest",
"Currency",
"Material",
"WardSkin",
"Skin",
"Skin_Rental",
"SummonerIcon",
"Companion",
"Egg",
"Egg_Color",
"Statstone",
"Statstone_Shard",
"Boost",
"SkinBorder",
"TFT_Map_Skin",
"TFT_Damage_Skin"
],
"type": "string"
},
"LolLootMilestone": {
"properties": {
"counterId": {
"type": "string"
},
"groupId": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"properties": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"triggerValue": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLootMilestoneInstance": {
"properties": {
"counterId": {
"type": "string"
},
"groupId": {
"type": "string"
},
"milestoneId": {
"type": "string"
},
"ownerId": {
"type": "string"
},
"productId": {
"type": "string"
},
"repeatSequence": {
"format": "int32",
"type": "integer"
},
"triggerValue": {
"format": "int64",
"type": "integer"
},
"triggered": {
"type": "boolean"
}
},
"type": "object"
},
"LolLootMilestoneLootItemRewardGdsResource": {
"properties": {
"internalName": {
"type": "string"
}
},
"type": "object"
},
"LolLootMilestonesLedgerConfigRepeatGdsResource": {
"properties": {
"name": {
"$ref": "#/components/schemas/LolLootMilestonesLedgerGroupRepeatGdsResource"
}
},
"type": "object"
},
"LolLootMilestonesLedgerCounterGdsResource": {
"properties": {
"direction": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"startValue": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLootMilestonesLedgerGroupRepeatGdsResource": {
"properties": {
"Count": {
"format": "int32",
"type": "integer"
},
"Multiplier": {
"format": "float",
"type": "number"
},
"Scope": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLootMilestonesRecipeGdsResource": {
"properties": {
"name": {
"type": "string"
}
},
"type": "object"
},
"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": "#/components/schemas/LolLootItemOwnershipStatus"
},
"localizedDescription": {
"type": "string"
},
"localizedName": {
"type": "string"
},
"localizedRecipeSubtitle": {
"type": "string"
},
"localizedRecipeTitle": {
"type": "string"
},
"lootId": {
"type": "string"
},
"lootName": {
"type": "string"
},
"parentItemStatus": {
"$ref": "#/components/schemas/LolLootItemOwnershipStatus"
},
"parentStoreItemId": {
"format": "int32",
"type": "integer"
},
"rarity": {
"type": "string"
},
"redeemableStatus": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolLootPlayerLoot"
}
},
"type": "object"
},
"LolLootPlayerLootMap": {
"properties": {
"playerLoot": {
"additionalProperties": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolLootPlayerLootDelta"
},
"type": "array"
},
"redeemed": {
"items": {
"$ref": "#/components/schemas/LolLootPlayerLootDelta"
},
"type": "array"
},
"removed": {
"items": {
"$ref": "#/components/schemas/LolLootPlayerLootDelta"
},
"type": "array"
}
},
"type": "object"
},
"LolLootRMSPayload": {
"properties": {
"affinities": {
"items": {
"type": "string"
},
"type": "array"
},
"productId": {
"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": "#/components/schemas/LolLootLootDescription"
},
"type": "array"
},
"guaranteedDescriptions": {
"items": {
"$ref": "#/components/schemas/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"
},
"LolLootRecipeWithMilestones": {
"properties": {
"contextMenuText": {
"type": "string"
},
"crafterName": {
"type": "string"
},
"description": {
"type": "string"
},
"displayCategories": {
"type": "string"
},
"imagePath": {
"type": "string"
},
"introVideoPath": {
"type": "string"
},
"loopVideoPath": {
"type": "string"
},
"lootMilestoneIds": {
"items": {
"type": "string"
},
"type": "array"
},
"metadata": {
"$ref": "#/components/schemas/LolLootRecipeMetadata"
},
"outputs": {
"items": {
"$ref": "#/components/schemas/LolLootRecipeOutput"
},
"type": "array"
},
"outroVideoPath": {
"type": "string"
},
"recipeName": {
"type": "string"
},
"requirementText": {
"type": "string"
},
"slots": {
"items": {
"$ref": "#/components/schemas/LolLootRecipeSlot"
},
"type": "array"
},
"type": {
"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"
},
"LolLootRegionLocale": {
"properties": {
"locale": {
"type": "string"
},
"region": {
"type": "string"
}
},
"type": "object"
},
"LolLootRepeat": {
"properties": {
"count": {
"format": "int32",
"type": "integer"
},
"multiplier": {
"format": "float",
"type": "number"
},
"scope": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLootRequestDTO-SelectionRequestDTO": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolLootSelectionRequestDTO"
},
"metadata": {
"$ref": "#/components/schemas/LolLootRequestMetadataDTO"
}
},
"type": "object"
},
"LolLootRequestMetadataDTO": {
"properties": {
"transactionId": {
"type": "string"
}
},
"type": "object"
},
"LolLootResponseDTO-SvcRewardGrant": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolLootSvcRewardGrant"
},
"metadata": {
"$ref": "#/components/schemas/LolLootResponseMetadataDTO"
}
},
"type": "object"
},
"LolLootResponseDTO-vector-SvcRewardGrant": {
"properties": {
"data": {
"items": {
"$ref": "#/components/schemas/LolLootSvcRewardGrant"
},
"type": "array"
},
"metadata": {
"$ref": "#/components/schemas/LolLootResponseMetadataDTO"
}
},
"type": "object"
},
"LolLootResponseDTO-vector-SvcRewardGroup": {
"properties": {
"data": {
"items": {
"$ref": "#/components/schemas/LolLootSvcRewardGroup"
},
"type": "array"
},
"metadata": {
"$ref": "#/components/schemas/LolLootResponseMetadataDTO"
}
},
"type": "object"
},
"LolLootResponseMetadataDTO": {
"properties": {},
"type": "object"
},
"LolLootReward": {
"properties": {
"fulfillmentSource": {
"type": "string"
},
"id": {
"type": "string"
},
"itemId": {
"type": "string"
},
"itemType": {
"type": "string"
},
"localizations": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"media": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"quantity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLootRewardGrant": {
"properties": {
"info": {
"$ref": "#/components/schemas/LolLootSvcRewardGrant"
},
"rewardGroup": {
"$ref": "#/components/schemas/LolLootSvcRewardGroup"
}
},
"type": "object"
},
"LolLootRewardStatus": {
"enum": [
"PENDING",
"FULFILLED",
"FAILED"
],
"type": "string"
},
"LolLootRewardStrategy": {
"enum": [
"ALL",
"RANDOM",
"SELECTION"
],
"type": "string"
},
"LolLootRewardsConfig": {
"properties": {
"Enabled": {
"type": "boolean"
}
},
"type": "object"
},
"LolLootSelectionRequestDTO": {
"properties": {
"rewardGroupId": {
"type": "string"
},
"selections": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolLootSelectionStrategyConfig": {
"properties": {
"maxSelectionsAllowed": {
"format": "int32",
"type": "integer"
},
"minSelectionsAllowed": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLootSummoner": {
"properties": {
"summonerLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLootSvcRewardGrant": {
"properties": {
"grantElements": {
"items": {
"$ref": "#/components/schemas/LolLootSvcRewardGrantElement"
},
"type": "array"
},
"granteeId": {
"type": "string"
},
"grantorDescription": {
"$ref": "#/components/schemas/LolLootGrantorDescription"
},
"id": {
"type": "string"
},
"rewardGroupId": {
"type": "string"
},
"selectedIds": {
"items": {
"type": "string"
},
"type": "array"
},
"status": {
"$ref": "#/components/schemas/LolLootGrantStatus"
},
"viewed": {
"type": "boolean"
}
},
"type": "object"
},
"LolLootSvcRewardGrantElement": {
"properties": {
"elementId": {
"type": "string"
},
"fulfillmentSource": {
"type": "string"
},
"itemId": {
"type": "string"
},
"itemType": {
"type": "string"
},
"localizations": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"media": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"status": {
"$ref": "#/components/schemas/LolLootRewardStatus"
}
},
"type": "object"
},
"LolLootSvcRewardGroup": {
"properties": {
"active": {
"type": "boolean"
},
"childRewardGroupIds": {
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"type": "string"
},
"internalName": {
"type": "string"
},
"localizations": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"media": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"productId": {
"type": "string"
},
"rewardStrategy": {
"$ref": "#/components/schemas/LolLootRewardStrategy"
},
"rewards": {
"items": {
"$ref": "#/components/schemas/LolLootReward"
},
"type": "array"
},
"selectionStrategyConfig": {
"$ref": "#/components/schemas/LolLootSelectionStrategyConfig"
},
"types": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolLootVerboseLootOddsResponse": {
"properties": {
"chanceToContain": {
"items": {
"$ref": "#/components/schemas/LolLootLootOddsResponse"
},
"type": "array"
},
"checksOwnership": {
"type": "boolean"
},
"guaranteedToContain": {
"items": {
"$ref": "#/components/schemas/LolLootLootOddsResponse"
},
"type": "array"
},
"hasPityRules": {
"type": "boolean"
},
"lootItem": {
"$ref": "#/components/schemas/LolLootPlayerLoot"
},
"recipeName": {
"type": "string"
}
},
"type": "object"
},
"LolLoyaltyAccessToken": {
"properties": {
"token": {
"type": "string"
}
},
"type": "object"
},
"LolLoyaltyGlobalRewards": {
"properties": {
"allChampions": {
"type": "boolean"
}
},
"type": "object"
},
"LolLoyaltyInventoryDTO": {
"properties": {
"items": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
},
"type": "object"
},
"LolLoyaltyInventoryItemDTO": {
"properties": {
"inventoryType": {
"type": "string"
},
"loyalty": {
"type": "boolean"
}
},
"type": "object"
},
"LolLoyaltyInventoryResponseDTO": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolLoyaltyInventoryDTO"
}
},
"type": "object"
},
"LolLoyaltyLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"puuid": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/LolLoyaltyLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolLoyaltyLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolLoyaltyLoyaltyRewards": {
"properties": {
"championIds": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"freeRewardedChampionsCount": {
"format": "int32",
"type": "integer"
},
"freeRewardedSkinsCount": {
"format": "int32",
"type": "integer"
},
"global": {
"$ref": "#/components/schemas/LolLoyaltyGlobalRewards"
},
"ipBoost": {
"format": "int32",
"type": "integer"
},
"loyaltyTFTCompanionCount": {
"format": "int32",
"type": "integer"
},
"loyaltyTFTMapSkinCount": {
"format": "int32",
"type": "integer"
},
"skinIds": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"xpBoost": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolLoyaltyLoyaltyStatus": {
"enum": [
"LEGACY",
"REWARDS_GRANT",
"EXPIRY",
"CHANGE",
"REVOKE",
"DISABLED"
],
"type": "string"
},
"LolLoyaltyLoyaltyStatusNotification": {
"properties": {
"rewards": {
"$ref": "#/components/schemas/LolLoyaltyLoyaltyRewards"
},
"status": {
"$ref": "#/components/schemas/LolLoyaltyLoyaltyStatus"
}
},
"type": "object"
},
"LolLoyaltyRiotMessagingServiceMessage": {
"properties": {
"payload": {
"type": "string"
},
"resource": {
"type": "string"
},
"service": {
"type": "string"
},
"timestamp": {
"format": "int64",
"type": "integer"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"LolLoyaltyRmsEntitlementPayload": {
"properties": {
"entitlementTypeId": {
"type": "string"
},
"itemId": {
"type": "string"
},
"itemTypeId": {
"type": "string"
},
"resourceOperation": {
"type": "string"
}
},
"type": "object"
},
"LolMapsGameModeSpellList": {
"properties": {
"spells": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"LolMapsMaps": {
"properties": {
"assets": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"categorizedContentBundles": {
"additionalProperties": true,
"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"
},
"locStrings": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"mapStringId": {
"type": "string"
},
"name": {
"type": "string"
},
"perPositionDisallowedSummonerSpells": {
"additionalProperties": {
"$ref": "#/components/schemas/LolMapsGameModeSpellList"
},
"type": "object"
},
"perPositionRequiredSummonerSpells": {
"additionalProperties": {
"$ref": "#/components/schemas/LolMapsGameModeSpellList"
},
"type": "object"
},
"platformId": {
"type": "string"
},
"platformName": {
"type": "string"
},
"properties": {
"additionalProperties": true,
"type": "object"
},
"tutorialCards": {
"items": {
"$ref": "#/components/schemas/LolMapsTutorialCard"
},
"type": "array"
}
},
"type": "object"
},
"LolMapsTutorialCard": {
"properties": {
"description": {
"type": "string"
},
"footer": {
"type": "string"
},
"header": {
"type": "string"
},
"imagePath": {
"type": "string"
}
},
"type": "object"
},
"LolMatchHistoryAcsEndPoint": {
"properties": {
"url": {
"type": "string"
}
},
"type": "object"
},
"LolMatchHistoryAcsPlayer": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"platformId": {
"type": "string"
}
},
"type": "object"
},
"LolMatchHistoryGAMHSMatchHistoryData": {
"properties": {
"json": {
"additionalProperties": true,
"type": "object"
},
"metadata": {
"$ref": "#/components/schemas/LolMatchHistoryGAMHSMatchHistoryMetadata"
}
},
"type": "object"
},
"LolMatchHistoryGAMHSMatchHistoryList": {
"properties": {
"active_puuid": {
"type": "string"
},
"games": {
"items": {
"$ref": "#/components/schemas/LolMatchHistoryGAMHSMatchHistoryData"
},
"type": "array"
}
},
"type": "object"
},
"LolMatchHistoryGAMHSMatchHistoryMetadata": {
"properties": {
"data_version": {
"type": "integer"
},
"info_type": {
"type": "string"
},
"match_id": {
"type": "string"
},
"participants": {
"items": {
"type": "string"
},
"type": "array"
},
"private": {
"type": "boolean"
},
"product": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"timestamp": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolMatchHistoryLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"gasToken": {
"additionalProperties": true,
"type": "object"
},
"idToken": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/LolMatchHistoryLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolMatchHistoryLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolMatchHistoryMHSummoner": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"displayName": {
"type": "string"
},
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"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": "#/components/schemas/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": "#/components/schemas/LolMatchHistoryMatchHistoryParticipantIdentities"
},
"type": "array"
},
"participants": {
"items": {
"$ref": "#/components/schemas/LolMatchHistoryMatchHistoryParticipant"
},
"type": "array"
},
"platformId": {
"type": "string"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"seasonId": {
"type": "integer"
},
"teams": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolMatchHistoryMatchHistoryGame"
},
"type": "array"
}
},
"type": "object"
},
"LolMatchHistoryMatchHistoryList": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"games": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolMatchHistoryMatchHistoryParticipantStatistics"
},
"teamId": {
"type": "integer"
},
"timeline": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolMatchHistoryMatchHistoryPosition"
},
"teamScore": {
"type": "integer"
},
"totalGold": {
"format": "int32",
"type": "integer"
},
"xp": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolMatchHistoryMatchHistoryParticipantIdentities": {
"properties": {
"participantId": {
"type": "integer"
},
"player": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolMatchHistoryMatchHistoryPlayerGameDelta"
},
"type": "array"
},
"originalAccountId": {
"format": "int64",
"type": "integer"
},
"originalPlatformId": {
"type": "string"
}
},
"type": "object"
},
"LolMatchHistoryMatchHistoryPlayerGameDelta": {
"properties": {
"champMastery": {
"$ref": "#/components/schemas/LolMatchHistoryMatchHistoryPlayerChampMasteryDelta"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"gamePlatformId": {
"type": "string"
},
"leagueDelta": {
"$ref": "#/components/schemas/LolMatchHistoryMatchHistoryPlayerLeagueDelta"
},
"platformDelta": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/LolMatchHistoryMatchHistoryEvent"
},
"type": "array"
},
"participantFrames": {
"additionalProperties": {
"$ref": "#/components/schemas/LolMatchHistoryMatchHistoryParticipantFrame"
},
"type": "object"
},
"timestamp": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolMatchHistoryMatchHistoryTimelineFrames": {
"properties": {
"frames": {
"items": {
"$ref": "#/components/schemas/LolMatchHistoryMatchHistoryTimelineFrame"
},
"type": "array"
}
},
"type": "object"
},
"LolMatchHistoryRecentlyPlayedSummoner": {
"properties": {
"championId": {
"format": "int64",
"type": "integer"
},
"gameCreationDate": {
"type": "string"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerName": {
"type": "string"
},
"teamId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolMatchHistorySummoner": {
"properties": {
"displayName": {
"type": "string"
},
"puuid": {
"type": "string"
}
},
"type": "object"
},
"LolMatchmakingGameflowGameData": {
"properties": {
"queue": {
"$ref": "#/components/schemas/LolMatchmakingGameflowQueue"
}
},
"type": "object"
},
"LolMatchmakingGameflowGameDodge": {
"properties": {
"dodgeIds": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"state": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolMatchmakingGameflowGameTypeConfig"
}
},
"type": "object"
},
"LolMatchmakingGameflowSession": {
"properties": {
"gameData": {
"$ref": "#/components/schemas/LolMatchmakingGameflowGameData"
},
"gameDodge": {
"$ref": "#/components/schemas/LolMatchmakingGameflowGameDodge"
},
"phase": {
"$ref": "#/components/schemas/LolMatchmakingGameflowPhase"
}
},
"type": "object"
},
"LolMatchmakingLobbyStatus": {
"properties": {
"allowedPlayAgain": {
"type": "boolean"
},
"customSpectatorPolicy": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/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"
},
"reason": {
"type": "string"
}
},
"type": "object"
},
"LolMatchmakingMatchmakingReadyCheckResource": {
"properties": {
"declinerIds": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"dodgeWarning": {
"$ref": "#/components/schemas/LolMatchmakingMatchmakingDodgeWarning"
},
"playerResponse": {
"$ref": "#/components/schemas/LolMatchmakingMatchmakingReadyCheckResponse"
},
"state": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolMatchmakingMatchmakingDodgeData"
},
"errors": {
"items": {
"$ref": "#/components/schemas/LolMatchmakingMatchmakingSearchErrorResource"
},
"type": "array"
},
"estimatedQueueTime": {
"format": "float",
"type": "number"
},
"isCurrentlyInQueue": {
"type": "boolean"
},
"lobbyId": {
"type": "string"
},
"lowPriorityData": {
"$ref": "#/components/schemas/LolMatchmakingMatchmakingLowPriorityData"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"readyCheck": {
"$ref": "#/components/schemas/LolMatchmakingMatchmakingReadyCheckResource"
},
"searchState": {
"$ref": "#/components/schemas/LolMatchmakingMatchmakingSearchState"
},
"timeInQueue": {
"format": "float",
"type": "number"
}
},
"type": "object"
},
"LolMatchmakingMatchmakingSearchState": {
"enum": [
"Invalid",
"AbandonedLowPriorityQueue",
"Canceled",
"Searching",
"Found",
"Error",
"ServiceError",
"ServiceShutdown"
],
"type": "string"
},
"LolMatchmakingPlayerStatus": {
"properties": {
"currentLobbyStatus": {
"$ref": "#/components/schemas/LolMatchmakingLobbyStatus"
},
"lastQueuedLobbyStatus": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolMissionsCollectionsOwnership"
},
"skins": {
"items": {
"$ref": "#/components/schemas/LolMissionsCollectionsChampionSkin"
},
"type": "array"
}
},
"type": "object"
},
"LolMissionsCollectionsChampionSkin": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"id": {
"format": "int32",
"type": "integer"
},
"ownership": {
"$ref": "#/components/schemas/LolMissionsCollectionsOwnership"
}
},
"type": "object"
},
"LolMissionsCollectionsOwnership": {
"properties": {
"freeToPlayReward": {
"type": "boolean"
},
"owned": {
"type": "boolean"
},
"rental": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolMissionsCollectionsOwnership"
}
},
"type": "object"
},
"LolMissionsGameflowPhase": {
"enum": [
"None",
"Lobby",
"Matchmaking",
"CheckedIntoTournament",
"ReadyCheck",
"ChampSelect",
"GameStart",
"FailedToLaunch",
"InProgress",
"Reconnect",
"WaitingForStats",
"PreEndOfGame",
"EndOfGame",
"TerminatedInError"
],
"type": "string"
},
"LolMissionsGameflowSession": {
"properties": {
"phase": {
"$ref": "#/components/schemas/LolMissionsGameflowPhase"
}
},
"type": "object"
},
"LolMissionsGrantStatus": {
"enum": [
"PENDING_FULFILLMENT",
"PENDING_SELECTION",
"FULFILLED"
],
"type": "string"
},
"LolMissionsInventoryItemWithPayload": {
"properties": {
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolMissionsLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"platformId": {
"type": "string"
},
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolMissionsLoyaltyStatus": {
"enum": [
"LEGACY",
"REWARDS_GRANT",
"EXPIRY",
"CHANGE",
"REVOKE",
"DISABLED"
],
"type": "string"
},
"LolMissionsLoyaltyStatusNotification": {
"properties": {
"status": {
"$ref": "#/components/schemas/LolMissionsLoyaltyStatus"
}
},
"type": "object"
},
"LolMissionsMissionAsset": {
"properties": {
"iconNeedsFrame": {
"type": "boolean"
},
"internalName": {
"type": "string"
},
"path": {
"type": "string"
}
},
"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"
},
"LolMissionsMissionsSettingsDataResource": {
"properties": {
"selected_series": {
"type": "string"
}
},
"type": "object"
},
"LolMissionsPlayerUpdateResponse": {
"properties": {
"playerMissions": {
"items": {
"$ref": "#/components/schemas/PlayerMissionDTO"
},
"type": "array"
},
"playerSeries": {
"items": {
"$ref": "#/components/schemas/SeriesDTO"
},
"type": "array"
}
},
"type": "object"
},
"LolMissionsPluginRegionLocaleChangedEvent": {
"properties": {
"locale": {
"type": "string"
}
},
"type": "object"
},
"LolMissionsRewardGrant": {
"properties": {
"info": {
"$ref": "#/components/schemas/LolMissionsRewardGrantInfo"
},
"rewardGroup": {
"$ref": "#/components/schemas/LolMissionsRewardGroup"
}
},
"type": "object"
},
"LolMissionsRewardGrantElement": {
"properties": {
"fulfillmentSource": {
"type": "string"
},
"id": {
"type": "string"
},
"itemId": {
"type": "string"
},
"itemType": {
"type": "string"
},
"localizations": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"media": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"rewardStatus": {
"$ref": "#/components/schemas/LolMissionsRewardStatus"
}
},
"type": "object"
},
"LolMissionsRewardGrantInfo": {
"properties": {
"grantElements": {
"items": {
"$ref": "#/components/schemas/LolMissionsRewardGrantElement"
},
"type": "array"
},
"granteeId": {
"type": "string"
},
"id": {
"type": "string"
},
"rewardGroupId": {
"type": "string"
},
"selectedIds": {
"items": {
"type": "string"
},
"type": "array"
},
"status": {
"$ref": "#/components/schemas/LolMissionsGrantStatus"
},
"viewed": {
"type": "boolean"
}
},
"type": "object"
},
"LolMissionsRewardGroup": {
"properties": {
"active": {
"type": "boolean"
},
"childRewardGroupIds": {
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"type": "string"
},
"internalName": {
"type": "string"
},
"localizations": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"media": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"productId": {
"type": "string"
},
"rewardStrategy": {
"$ref": "#/components/schemas/LolMissionsRewardStrategy"
},
"rewards": {
"items": {
"$ref": "#/components/schemas/LolMissionsSvcReward"
},
"type": "array"
},
"selectionStrategyConfig": {
"$ref": "#/components/schemas/LolMissionsSelectionStrategyConfig"
},
"types": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolMissionsRewardGroupsSelection": {
"properties": {
"rewardGroups": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolMissionsRewardStatus": {
"enum": [
"PENDING",
"FULFILLED"
],
"type": "string"
},
"LolMissionsRewardStrategy": {
"enum": [
"ALL",
"RANDOM",
"SELECTION"
],
"type": "string"
},
"LolMissionsRewardsProductConfig": {
"properties": {
"enabled": {
"type": "boolean"
},
"serviceUrl": {
"type": "string"
}
},
"type": "object"
},
"LolMissionsSelectionStrategyConfig": {
"properties": {
"maxSelectionsAllowed": {
"format": "int32",
"type": "integer"
},
"minSelectionsAllowed": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolMissionsSeriesOpt": {
"properties": {
"option": {
"type": "string"
},
"seriesId": {
"type": "string"
}
},
"type": "object"
},
"LolMissionsSvcReward": {
"properties": {
"fulfillmentSource": {
"type": "string"
},
"id": {
"type": "string"
},
"itemId": {
"type": "string"
},
"localizations": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"media": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"quantity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolMissionsTftBattlepass": {
"properties": {
"milestones": {
"items": {
"$ref": "#/components/schemas/LolMissionsTftBattlepassMilestone"
},
"type": "array"
},
"totalPointsEarned": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolMissionsTftBattlepassMilestone": {
"properties": {
"description": {
"type": "string"
},
"iconImageUrl": {
"type": "string"
},
"label": {
"type": "string"
},
"missionId": {
"type": "string"
},
"percentComplete": {
"format": "int32",
"type": "integer"
},
"pointsForMilestone": {
"format": "int32",
"type": "integer"
},
"rewards": {
"items": {
"$ref": "#/components/schemas/PlayerMissionRewardDTO"
},
"type": "array"
},
"state": {
"type": "string"
}
},
"type": "object"
},
"LolMissionsTftOrb": {
"properties": {
"missionId": {
"type": "string"
},
"rewardLevel": {
"type": "integer"
},
"rewards": {
"items": {
"$ref": "#/components/schemas/PlayerMissionRewardDTO"
},
"type": "array"
},
"status": {
"type": "string"
},
"unlockTime": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolMissionsTftPaidBattlepass": {
"properties": {
"activeMilestone": {
"$ref": "#/components/schemas/LolMissionsTftPaidBattlepassMilestone"
},
"bonuses": {
"items": {
"$ref": "#/components/schemas/LolMissionsTftPaidBattlepassMilestone"
},
"type": "array"
},
"info": {
"$ref": "#/components/schemas/LolMissionsTftPaidBattlepassInfo"
},
"lastViewedMilestone": {
"$ref": "#/components/schemas/LolMissionsTftPaidBattlepassMilestone"
},
"lastViewedProgress": {
"format": "int32",
"type": "integer"
},
"milestones": {
"items": {
"$ref": "#/components/schemas/LolMissionsTftPaidBattlepassMilestone"
},
"type": "array"
},
"progressMissionId": {
"type": "string"
},
"totalPointsEarned": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolMissionsTftPaidBattlepassInfo": {
"properties": {
"backgroundImageUrl": {
"type": "string"
},
"description": {
"type": "string"
},
"endDate": {
"format": "int64",
"type": "integer"
},
"internalName": {
"type": "string"
},
"pcPurchaseRequirement": {
"type": "string"
},
"premium": {
"type": "boolean"
},
"startDate": {
"format": "int64",
"type": "integer"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"LolMissionsTftPaidBattlepassMilestone": {
"properties": {
"description": {
"type": "string"
},
"iconImageUrl": {
"type": "string"
},
"iconNeedsFrame": {
"type": "boolean"
},
"internalName": {
"type": "string"
},
"isBonus": {
"type": "boolean"
},
"isKeystone": {
"type": "boolean"
},
"isLocked": {
"type": "boolean"
},
"isPaid": {
"type": "boolean"
},
"level": {
"format": "int32",
"type": "integer"
},
"missionId": {
"type": "string"
},
"pointsEarnedForMilestone": {
"format": "int32",
"type": "integer"
},
"pointsNeededForMilestone": {
"format": "int32",
"type": "integer"
},
"rewards": {
"items": {
"$ref": "#/components/schemas/PlayerMissionRewardDTO"
},
"type": "array"
},
"state": {
"type": "string"
},
"status": {
"type": "string"
},
"title": {
"type": "string"
},
"totalPointsForMilestone": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolMissionsTftWeeklyMissions": {
"properties": {
"missions": {
"items": {
"$ref": "#/components/schemas/PlayerMissionDTO"
},
"type": "array"
}
},
"type": "object"
},
"LolMissionsUserInfo": {
"properties": {
"userInfo": {
"type": "string"
}
},
"type": "object"
},
"LolModeProgressionInventoryRewardItem": {
"properties": {
"itemId": {
"format": "int32",
"type": "integer"
},
"uuid": {
"type": "string"
}
},
"type": "object"
},
"LolModeProgressionLoadout": {
"properties": {
"id": {
"type": "string"
},
"loadout": {
"additionalProperties": {
"$ref": "#/components/schemas/LolModeProgressionLoadoutsSlot"
},
"type": "object"
},
"name": {
"type": "string"
},
"scope": {
"type": "string"
}
},
"type": "object"
},
"LolModeProgressionLoadoutsSlot": {
"properties": {
"contentId": {
"type": "string"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolNpeRewardsAccountSettingsData": {
"properties": {
"challenges": {
"$ref": "#/components/schemas/LolNpeRewardsChallengesSettings"
},
"login": {
"$ref": "#/components/schemas/LolNpeRewardsLoginSeriesSettings"
}
},
"type": "object"
},
"LolNpeRewardsAccountSettingsPayload": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolNpeRewardsAccountSettingsData"
},
"schemaVersion": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolNpeRewardsAllRewards": {
"properties": {
"level": {
"$ref": "#/components/schemas/LolNpeRewardsRewardSeries"
},
"login": {
"$ref": "#/components/schemas/LolNpeRewardsRewardSeries"
}
},
"type": "object"
},
"LolNpeRewardsChallengesProgress": {
"properties": {
"progress": {
"$ref": "#/components/schemas/LolNpeRewardsProgress"
}
},
"type": "object"
},
"LolNpeRewardsChallengesSettings": {
"properties": {
"allMissionsCompleted": {
"type": "boolean"
},
"totalCount": {
"type": "integer"
}
},
"type": "object"
},
"LolNpeRewardsLoginSeriesSettings": {
"properties": {
"allRewardsClaimed": {
"type": "boolean"
},
"lastCompletedMissionDate": {
"format": "int64",
"type": "integer"
},
"lastCompletedMissionInternalName": {
"type": "string"
}
},
"type": "object"
},
"LolNpeRewardsMission": {
"properties": {
"completedDate": {
"format": "int64",
"type": "integer"
},
"display": {
"$ref": "#/components/schemas/LolNpeRewardsMissionDisplay"
},
"internalName": {
"type": "string"
},
"metadata": {
"$ref": "#/components/schemas/LolNpeRewardsMissionsRewardPackMetaData"
},
"objectives": {
"items": {
"$ref": "#/components/schemas/LolNpeRewardsObjective"
},
"type": "array"
},
"seriesName": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"LolNpeRewardsMissionDisplay": {
"properties": {
"locations": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolNpeRewardsMissionSeries": {
"properties": {
"id": {
"type": "string"
},
"internalName": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"LolNpeRewardsMissionSeriesOptIn": {
"properties": {
"option": {
"type": "string"
},
"seriesId": {
"type": "string"
}
},
"type": "object"
},
"LolNpeRewardsMissionsRewardPackMetaData": {
"properties": {
"npeRewardPack": {
"$ref": "#/components/schemas/LolNpeRewardsRewardPack"
}
},
"type": "object"
},
"LolNpeRewardsObjective": {
"properties": {
"progress": {
"$ref": "#/components/schemas/LolNpeRewardsProgress"
}
},
"type": "object"
},
"LolNpeRewardsProgress": {
"properties": {
"currentProgress": {
"format": "int32",
"type": "integer"
},
"lastViewedProgress": {
"format": "int32",
"type": "integer"
},
"totalCount": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolNpeRewardsRequirements": {
"properties": {
"day": {
"format": "int32",
"type": "integer"
},
"level": {
"format": "int32",
"type": "integer"
},
"missionInternalName": {
"type": "string"
}
},
"type": "object"
},
"LolNpeRewardsReward": {
"properties": {
"data": {
"additionalProperties": true,
"type": "object"
},
"renderer": {
"type": "string"
}
},
"type": "object"
},
"LolNpeRewardsRewardPack": {
"properties": {
"delay": {
"format": "int64",
"type": "integer"
},
"index": {
"format": "int32",
"type": "integer"
},
"majorReward": {
"$ref": "#/components/schemas/LolNpeRewardsReward"
},
"minorRewards": {
"items": {
"$ref": "#/components/schemas/LolNpeRewardsReward"
},
"type": "array"
},
"premiumReward": {
"type": "boolean"
},
"requirements": {
"$ref": "#/components/schemas/LolNpeRewardsRequirements"
},
"rewardKey": {
"type": "string"
},
"state": {
"type": "string"
},
"type": {
"type": "string"
},
"unlockTime": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolNpeRewardsRewardSeries": {
"properties": {
"rewardPacks": {
"items": {
"$ref": "#/components/schemas/LolNpeRewardsRewardPack"
},
"type": "array"
}
},
"type": "object"
},
"LolNpeRewardsRewardSeriesState": {
"properties": {
"allRewardsClaimed": {
"type": "boolean"
}
},
"type": "object"
},
"LolNpeRewardsSummoner": {
"properties": {
"summonerLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolNpeTutorialPathAccountSettingsCategoryResource": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolNpeTutorialPathAccountSettingsTutorial"
},
"schemaVersion": {
"format": "int32",
"type": "integer"
}
},
"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": "#/components/schemas/LolNpeTutorialPathCollectionsChampionSpell"
},
"roles": {
"items": {
"type": "string"
},
"type": "array"
},
"spells": {
"items": {
"$ref": "#/components/schemas/LolNpeTutorialPathCollectionsChampionSpell"
},
"type": "array"
},
"squarePortraitPath": {
"type": "string"
},
"stingerSfxPath": {
"type": "string"
}
},
"type": "object"
},
"LolNpeTutorialPathCollectionsChampionSpell": {
"properties": {
"description": {
"type": "string"
},
"name": {
"type": "string"
}
},
"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": "#/components/schemas/LolNpeTutorialPathGameflowPhase"
}
},
"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": "#/components/schemas/LolNpeTutorialPathLobbyGameConfigDto"
},
"partyId": {
"type": "string"
}
},
"type": "object"
},
"LolNpeTutorialPathLobbyGameConfigDto": {
"properties": {
"queueId": {
"format": "int32",
"type": "integer"
}
},
"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"
},
"display": {
"$ref": "#/components/schemas/LolNpeTutorialPathMissionDisplay"
},
"displayType": {
"type": "string"
},
"endTime": {
"format": "int64",
"type": "integer"
},
"expiringWarnings": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolNpeTutorialPathMissionMetadata"
},
"missionType": {
"type": "string"
},
"objectives": {
"items": {
"$ref": "#/components/schemas/LolNpeTutorialPathObjective"
},
"type": "array"
},
"requirements": {
"items": {
"type": "string"
},
"type": "array"
},
"rewardStrategy": {
"$ref": "#/components/schemas/LolNpeTutorialPathRewardStrategy"
},
"rewards": {
"items": {
"$ref": "#/components/schemas/LolNpeTutorialPathReward"
},
"type": "array"
},
"seriesName": {
"type": "string"
},
"startTime": {
"format": "int64",
"type": "integer"
},
"status": {
"type": "string"
},
"title": {
"type": "string"
},
"viewed": {
"type": "boolean"
}
},
"type": "object"
},
"LolNpeTutorialPathMissionDisplay": {
"properties": {
"attributes": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolNpeTutorialPathMissionMetadata": {
"properties": {
"tutorial": {
"$ref": "#/components/schemas/LolNpeTutorialPathTutorialMetadata"
}
},
"type": "object"
},
"LolNpeTutorialPathObjective": {
"properties": {
"description": {
"type": "string"
},
"progress": {
"$ref": "#/components/schemas/LolNpeTutorialPathProgress"
},
"rewardGroups": {
"items": {
"type": "string"
},
"type": "array"
},
"sequence": {
"format": "int32",
"type": "integer"
},
"type": {
"type": "string"
}
},
"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"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"rewardFulfilled": {
"type": "boolean"
},
"rewardGroup": {
"type": "string"
},
"rewardGroupSelected": {
"type": "boolean"
},
"rewardType": {
"type": "string"
},
"sequence": {
"format": "int32",
"type": "integer"
},
"uniqueName": {
"type": "string"
}
},
"type": "object"
},
"LolNpeTutorialPathRewardStrategy": {
"properties": {
"groupStrategy": {
"type": "string"
},
"selectMaxGroupCount": {
"type": "integer"
},
"selectMinGroupCount": {
"type": "integer"
}
},
"type": "object"
},
"LolNpeTutorialPathSeries": {
"properties": {
"id": {
"type": "string"
},
"internalName": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"LolNpeTutorialPathSeriesOpt": {
"properties": {
"option": {
"type": "string"
},
"seriesId": {
"type": "string"
}
},
"type": "object"
},
"LolNpeTutorialPathSummoner": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"displayName": {
"type": "string"
},
"nameChangeFlag": {
"type": "boolean"
},
"percentCompleteForNextLevel": {
"format": "int32",
"type": "integer"
},
"profileIconId": {
"format": "int32",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
},
"unnamed": {
"type": "boolean"
},
"xpSinceLastLevel": {
"format": "int64",
"type": "integer"
},
"xpUntilNextLevel": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolNpeTutorialPathSummonerIcon": {
"properties": {
"profileIconId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolNpeTutorialPathTutorial": {
"properties": {
"backgroundUrl": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"isViewed": {
"type": "boolean"
},
"queueId": {
"type": "string"
},
"rewards": {
"items": {
"$ref": "#/components/schemas/LolNpeTutorialPathTutorialReward"
},
"type": "array"
},
"status": {
"$ref": "#/components/schemas/LolNpeTutorialPathTutorialStatus"
},
"stepNumber": {
"format": "int32",
"type": "integer"
},
"title": {
"type": "string"
},
"type": {
"$ref": "#/components/schemas/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"
},
"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"
},
"LolPatchChunkingPatcherEnvironment": {
"properties": {
"client_patcher_available": {
"type": "boolean"
},
"client_patcher_enabled": {
"type": "boolean"
},
"game_patcher_available": {
"type": "boolean"
},
"game_patcher_enabled": {
"type": "boolean"
}
},
"type": "object"
},
"LolPatchComponentActionProgress": {
"properties": {
"currentItem": {
"type": "string"
},
"network": {
"$ref": "#/components/schemas/LolPatchComponentStateProgress"
},
"primaryWork": {
"$ref": "#/components/schemas/LolPatchComponentStateWorkType"
},
"total": {
"$ref": "#/components/schemas/LolPatchComponentStateProgress"
}
},
"type": "object"
},
"LolPatchComponentState": {
"properties": {
"action": {
"$ref": "#/components/schemas/LolPatchComponentStateAction"
},
"id": {
"type": "string"
},
"isCorrupted": {
"type": "boolean"
},
"isUpToDate": {
"type": "boolean"
},
"isUpdateAvailable": {
"type": "boolean"
},
"progress": {
"$ref": "#/components/schemas/LolPatchComponentActionProgress"
},
"timeOfLastUpToDateCheckISO8601": {
"type": "string"
}
},
"type": "object"
},
"LolPatchComponentStateAction": {
"enum": [
"Idle",
"CheckingForUpdates",
"Patching",
"Repairing",
"Migrating"
],
"type": "string"
},
"LolPatchComponentStateProgress": {
"properties": {
"bytesComplete": {
"format": "int64",
"type": "integer"
},
"bytesPerSecond": {
"format": "double",
"type": "number"
},
"bytesRequired": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolPatchComponentStateWorkType": {
"enum": [
"Scanning",
"Network",
"Disk"
],
"type": "string"
},
"LolPatchEntitlementsTokenResource": {
"properties": {
"accessToken": {
"type": "string"
},
"entitlements": {
"items": {
"type": "string"
},
"type": "array"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"LolPatchInstallPaths": {
"properties": {
"gameExecutablePath": {
"type": "string"
},
"gameInstallRoot": {
"type": "string"
}
},
"type": "object"
},
"LolPatchNotification": {
"properties": {
"data": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
},
"id": {
"type": "string"
},
"notificationId": {
"$ref": "#/components/schemas/LolPatchNotificationId"
}
},
"type": "object"
},
"LolPatchNotificationId": {
"enum": [
"UnspecifiedError",
"ConnectionError",
"MissingFilesError",
"FailedToWriteError",
"WillRestoreClientBackupOnRestart",
"DidRestoreClientBackup",
"NotEnoughDiskSpace",
"BrokenPermissions"
],
"type": "string"
},
"LolPatchPatchSieveCompatVersion": {
"properties": {
"id": {
"type": "string"
}
},
"type": "object"
},
"LolPatchPatchSieveDownload": {
"properties": {
"scd_required": {
"type": "boolean"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LolPatchPatchSieveLabelValue": {
"properties": {
"values": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolPatchPatchSieveQueryResponse": {
"properties": {
"releases": {
"items": {
"$ref": "#/components/schemas/LolPatchPatchSieveRelease"
},
"type": "array"
}
},
"type": "object"
},
"LolPatchPatchSieveRelease": {
"properties": {
"compat_version": {
"$ref": "#/components/schemas/LolPatchPatchSieveCompatVersion"
},
"download": {
"$ref": "#/components/schemas/LolPatchPatchSieveDownload"
},
"release": {
"$ref": "#/components/schemas/LolPatchPatchSieveReleaseInfo"
}
},
"type": "object"
},
"LolPatchPatchSieveReleaseInfo": {
"properties": {
"id": {
"type": "string"
},
"labels": {
"additionalProperties": {
"$ref": "#/components/schemas/LolPatchPatchSieveLabelValue"
},
"type": "object"
},
"product": {
"type": "string"
}
},
"type": "object"
},
"LolPatchPatcherInstallSettings": {
"properties": {
"client_patch_url": {
"type": "string"
},
"client_patcher": {
"type": "string"
},
"client_patcher_available": {
"type": "boolean"
},
"game_patch_url": {
"type": "string"
},
"game_patcher": {
"type": "string"
},
"game_patcher_available": {
"type": "boolean"
},
"locales": {
"items": {
"type": "string"
},
"type": "array"
},
"max_download_speed_mbps": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPatchPatcherRegionSettings": {
"properties": {
"client_patcher": {
"type": "string"
},
"game_patcher": {
"type": "string"
},
"patchline": {
"type": "string"
}
},
"type": "object"
},
"LolPatchPatcherSelfUpdateSettings": {
"properties": {
"restart_delay": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPatchPatcherSettings": {
"properties": {
"channel": {
"type": "string"
},
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"patchsieve_url": {
"type": "string"
},
"product_refresh_period": {
"format": "double",
"type": "number"
},
"self_update": {
"$ref": "#/components/schemas/LolPatchPatcherSelfUpdateSettings"
}
},
"type": "object"
},
"LolPatchProductState": {
"properties": {
"action": {
"$ref": "#/components/schemas/LolPatchComponentStateAction"
},
"components": {
"items": {
"$ref": "#/components/schemas/LolPatchComponentState"
},
"type": "array"
},
"id": {
"type": "string"
},
"isCorrupted": {
"type": "boolean"
},
"isStopped": {
"type": "boolean"
},
"isUpToDate": {
"type": "boolean"
},
"isUpdateAvailable": {
"type": "boolean"
},
"percentPatched": {
"format": "double",
"type": "number"
}
},
"type": "object"
},
"LolPatchPublishedReleaseResponse": {
"properties": {
"client_patch_url": {
"type": "string"
},
"game_patch_url": {
"type": "string"
},
"timestamp": {
"type": "string"
},
"toggles": {
"additionalProperties": {
"format": "double",
"type": "number"
},
"type": "object"
},
"version": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPatchRegionLocale": {
"properties": {
"locale": {
"type": "string"
},
"region": {
"type": "string"
}
},
"type": "object"
},
"LolPatchScdCookie": {
"properties": {
"cookie": {
"type": "string"
},
"domain": {
"type": "string"
},
"path": {
"type": "string"
}
},
"type": "object"
},
"LolPatchScdCookies": {
"properties": {
"cookies": {
"items": {
"$ref": "#/components/schemas/LolPatchScdCookie"
},
"type": "array"
}
},
"type": "object"
},
"LolPatchScdEnabled": {
"enum": [
"Off",
"On"
],
"type": "string"
},
"LolPatchStatus": {
"properties": {
"connectedToPatchServer": {
"type": "boolean"
},
"hasUpdatesOnRestart": {
"type": "boolean"
},
"willRestartOnSelfUpdate": {
"type": "boolean"
}
},
"type": "object"
},
"LolPatchSupportedGameRelease": {
"properties": {
"artifact_id": {
"type": "string"
},
"download": {
"$ref": "#/components/schemas/LolPatchPatchSieveDownload"
},
"selected": {
"type": "boolean"
}
},
"type": "object"
},
"LolPatchSupportedGameReleases": {
"properties": {
"supported_game_releases": {
"items": {
"$ref": "#/components/schemas/LolPatchSupportedGameRelease"
},
"type": "array"
}
},
"type": "object"
},
"LolPatchUxResource": {
"properties": {
"visible": {
"type": "boolean"
}
},
"type": "object"
},
"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"
},
"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": "#/components/schemas/LolPerksChampSelectBannedChampions"
},
"chatDetails": {
"$ref": "#/components/schemas/LolPerksChampSelectChatRoomDetails"
},
"isSpectating": {
"type": "boolean"
},
"localPlayerCellId": {
"format": "int64",
"type": "integer"
},
"myTeam": {
"items": {
"$ref": "#/components/schemas/LolPerksChampSelectPlayerSelection"
},
"type": "array"
},
"theirTeam": {
"items": {
"$ref": "#/components/schemas/LolPerksChampSelectPlayerSelection"
},
"type": "array"
},
"timer": {
"$ref": "#/components/schemas/LolPerksChampSelectTimer"
},
"trades": {
"items": {
"$ref": "#/components/schemas/LolPerksChampSelectTradeContract"
},
"type": "array"
}
},
"type": "object"
},
"LolPerksChampSelectTimer": {
"properties": {
"adjustedTimeLeftInPhase": {
"format": "int64",
"type": "integer"
},
"internalNowInEpochMs": {
"format": "int64",
"type": "integer"
},
"isInfinite": {
"type": "boolean"
},
"phase": {
"type": "string"
},
"totalTimeInPhase": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolPerksChampSelectTradeContract": {
"properties": {
"cellId": {
"format": "int64",
"type": "integer"
},
"id": {
"format": "int64",
"type": "integer"
},
"state": {
"$ref": "#/components/schemas/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"
},
"LolPerksDefaultStatModsPerSubStyle": {
"properties": {
"id": {
"format": "int32",
"type": "integer"
},
"perks": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"LolPerksGameCustomizationDTO": {
"properties": {
"category": {
"type": "string"
},
"content": {
"type": "string"
},
"isTeambuilder": {
"type": "boolean"
},
"queueType": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolPerksGameflowGameData": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"isCustomGame": {
"type": "boolean"
},
"queue": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolPerksGameflowGameData"
},
"phase": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolPerksLoginSessionState"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolPerksLoginSessionState": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolPerksNameCheckPayload": {
"properties": {
"name": {
"type": "string"
},
"shard": {
"type": "string"
}
},
"type": "object"
},
"LolPerksNameCheckReponse": {
"properties": {
"errors": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolPerksPerkBook": {
"properties": {
"currentPageId": {
"format": "int32",
"type": "integer"
},
"pages": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolPerksPerkPageResource"
},
"type": "array"
},
"perShardPerkBooks": {
"additionalProperties": {
"$ref": "#/components/schemas/LolPerksPerkBook"
},
"type": "object"
},
"settings": {
"$ref": "#/components/schemas/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"
},
"defaultStatModsPerSubStyle": {
"items": {
"$ref": "#/components/schemas/LolPerksDefaultStatModsPerSubStyle"
},
"type": "array"
},
"defaultSubStyle": {
"format": "int32",
"type": "integer"
},
"iconPath": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
},
"isAdvanced": {
"type": "boolean"
},
"name": {
"type": "string"
},
"slots": {
"items": {
"$ref": "#/components/schemas/LolPerksPerkStyleSlotResource"
},
"type": "array"
},
"subStyleBonus": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolPerksPerkUISlot"
},
"type": "array"
},
"subStyleBonus": {
"items": {
"$ref": "#/components/schemas/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"
},
"isTeamBuilderManaged": {
"type": "boolean"
}
},
"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": "#/components/schemas/LolPerksPerkSettings"
},
"schemaVersion": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPerksSummoner": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"displayName": {
"type": "string"
},
"internalName": {
"type": "string"
},
"percentCompleteForNextLevel": {
"format": "int32",
"type": "integer"
},
"profileIconId": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"rerollPoints": {
"$ref": "#/components/schemas/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": "int32",
"type": "integer"
},
"maxRolls": {
"format": "int32",
"type": "integer"
},
"numberOfRolls": {
"format": "int32",
"type": "integer"
},
"pointsCostToRoll": {
"format": "int32",
"type": "integer"
},
"pointsToReroll": {
"format": "int32",
"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"
},
"LolPerksValidatePageNameData": {
"properties": {
"id": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolPerksValidatePageNameResponse": {
"properties": {
"nameCheckResponse": {
"$ref": "#/components/schemas/LolPerksNameCheckReponse"
},
"success": {
"type": "boolean"
}
},
"type": "object"
},
"LolPersonalizedOffersAccessTokenResource": {
"properties": {
"expiry": {
"format": "int64",
"type": "integer"
},
"scopes": {
"items": {
"type": "string"
},
"type": "array"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"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": "#/components/schemas/LolPersonalizedOffersOffer"
},
"type": "array"
},
"promotion": {
"$ref": "#/components/schemas/LolPersonalizedOffersPromotion"
}
},
"type": "object"
},
"LolPersonalizedOffersOfferId": {
"properties": {
"offerId": {
"type": "string"
}
},
"type": "object"
},
"LolPersonalizedOffersOfferIds": {
"properties": {
"offers": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/LolPersonalizedOffersPurchaseItem"
},
"type": "array"
},
"wallet": {
"$ref": "#/components/schemas/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"
},
"LolPftGameClientEndOfGameStats": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"gameMode": {
"type": "string"
},
"isRanked": {
"type": "boolean"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"statsBlock": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"LolPftGameflowGameDodge": {
"properties": {
"dodgeIds": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"state": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolPftGameflowGameDodge"
},
"phase": {
"$ref": "#/components/schemas/LolPftGameflowPhase"
}
},
"type": "object"
},
"LolPftLoginSession": {
"properties": {
"idToken": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/LolPftLoginSessionStates"
}
},
"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": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/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"
},
"homepageTimer": {
"format": "double",
"type": "number"
},
"locale": {
"type": "string"
},
"stats": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolPftPFTEvent"
},
"type": "array"
},
"questionResponses": {
"items": {
"$ref": "#/components/schemas/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"
},
"LolPftSummoner": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
},
"unnamed": {
"type": "boolean"
}
},
"type": "object"
},
"LolPlayerBehaviorBanNotification": {
"properties": {
"displayReformCard": {
"type": "boolean"
},
"id": {
"format": "int64",
"type": "integer"
},
"isPermaBan": {
"type": "boolean"
},
"reason": {
"type": "string"
},
"source": {
"$ref": "#/components/schemas/LolPlayerBehaviorNotificationSource"
},
"timeUntilBanExpires": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolPlayerBehaviorCodeOfConductNotification": {
"properties": {
"message": {
"type": "string"
}
},
"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": {
"CodeOfConductEnabled": {
"type": "boolean"
},
"IsLoaded": {
"type": "boolean"
}
},
"type": "object"
},
"LolPlayerBehaviorPlayerBehavior_GameflowSessionResource": {
"properties": {
"phase": {
"$ref": "#/components/schemas/LolPlayerBehaviorGameflowPhase"
}
},
"type": "object"
},
"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": "#/components/schemas/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": {
"accountId": {
"format": "int64",
"type": "integer"
},
"id": {
"format": "int64",
"type": "integer"
},
"messageId": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolPlayerBehaviorRestrictionNotification": {
"properties": {
"displayReformCard": {
"type": "boolean"
},
"expirationMillis": {
"format": "int64",
"type": "integer"
},
"gamesRemaining": {
"format": "int64",
"type": "integer"
},
"id": {
"format": "int64",
"type": "integer"
},
"source": {
"$ref": "#/components/schemas/LolPlayerBehaviorNotificationSource"
}
},
"type": "object"
},
"LolPlayerBehaviorSettingsResource": {
"properties": {
"data": {
"additionalProperties": true,
"type": "object"
},
"schemaVersion": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolPlayerBehaviorUserInfo": {
"properties": {
"userInfo": {
"type": "string"
}
},
"type": "object"
},
"LolPlayerBehaviorUserInfoBanData": {
"properties": {
"restrictions": {
"items": {
"$ref": "#/components/schemas/LolPlayerBehaviorUserInfoRestriction"
},
"type": "array"
}
},
"type": "object"
},
"LolPlayerBehaviorUserInfoRestriction": {
"properties": {
"dat": {
"$ref": "#/components/schemas/LolPlayerBehaviorUserInfoRestrictionData"
},
"reason": {
"type": "string"
},
"scope": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolPlayerBehaviorUserInfoRestrictionData": {
"properties": {
"expirationMillis": {
"format": "int64",
"type": "integer"
},
"gameData": {
"$ref": "#/components/schemas/LolPlayerBehaviorUserInfoRestrictionGameData"
},
"gameLocation": {
"type": "string"
}
},
"type": "object"
},
"LolPlayerBehaviorUserInfoRestrictionGameData": {
"properties": {
"additionalGameIds": {
"items": {
"type": "string"
},
"type": "array"
},
"gameLocation": {
"type": "string"
},
"productName": {
"type": "string"
},
"triggerGameId": {
"type": "string"
}
},
"type": "object"
},
"LolPlayerBehaviorUserInfoToken": {
"properties": {
"ban": {
"$ref": "#/components/schemas/LolPlayerBehaviorUserInfoBanData"
}
},
"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": "#/components/schemas/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"
},
"LolPlayerMessagingDynamicCelebrationMessagingNotificationResource": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"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"
},
"LolPlayerMessagingLoginDataPacket": {
"properties": {
"simpleMessages": {
"items": {
"$ref": "#/components/schemas/LolPlayerMessagingSimpleMessage"
},
"type": "array"
}
},
"type": "object"
},
"LolPlayerMessagingPlayerMessagingNotificationResource": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"body": {
"type": "string"
},
"id": {
"format": "int32",
"type": "integer"
},
"msgId": {
"type": "string"
},
"status": {
"format": "int32",
"type": "integer"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"LolPlayerMessagingSimpleMessage": {
"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"
},
"LolPlayerPreferencesLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"idToken": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/LolPlayerPreferencesLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolPlayerPreferencesLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolPlayerPreferencesPlayerPreferences": {
"properties": {
"data": {
"type": "string"
},
"hash": {
"type": "string"
},
"type": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"LolPlayerPreferencesPlayerPreferencesEndpoint": {
"properties": {
"Enabled": {
"type": "boolean"
},
"EnforceHttps": {
"type": "boolean"
},
"Retries": {
"format": "int64",
"type": "integer"
},
"ServiceEndpoint": {
"type": "string"
},
"Version": {
"type": "string"
}
},
"type": "object"
},
"LolPlayerReportSenderChampSelectReport": {
"properties": {
"categories": {
"items": {
"type": "string"
},
"type": "array"
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"match_token": {
"type": "string"
},
"offender_puuid": {
"type": "string"
}
},
"type": "object"
},
"LolPlayerReportSenderEndOfGamePlayerReport": {
"properties": {
"comment": {
"type": "string"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"offense": {
"type": "string"
},
"reportedPuuid": {
"type": "string"
}
},
"type": "object"
},
"LolPlayerReportSenderGameAgnosticReportPayload": {
"properties": {
"categories": {
"items": {
"type": "string"
},
"type": "array"
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"offenderId": {
"type": "string"
},
"token": {
"type": "string"
},
"tokenType": {
"type": "string"
}
},
"type": "object"
},
"LolPreEndOfGameGameflowPhase": {
"enum": [
"None",
"Lobby",
"Matchmaking",
"CheckedIntoTournament",
"ReadyCheck",
"ChampSelect",
"GameStart",
"FailedToLaunch",
"InProgress",
"Reconnect",
"WaitingForStats",
"PreEndOfGame",
"EndOfGame",
"TerminatedInError"
],
"type": "string"
},
"LolPreEndOfGameGameflowSessionResource": {
"properties": {
"phase": {
"$ref": "#/components/schemas/LolPreEndOfGameGameflowPhase"
}
},
"type": "object"
},
"LolPreEndOfGameSequenceEvent": {
"properties": {
"name": {
"type": "string"
},
"priority": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPremadeVoiceAccountSettingsCategoryDataResource": {
"properties": {
"autoJoin": {
"type": "boolean"
},
"inputMode": {
"$ref": "#/components/schemas/LolPremadeVoiceInputMode"
},
"muteOnConnect": {
"type": "boolean"
},
"pushToTalkKey": {
"type": "string"
},
"showFirstExperienceInGame": {
"type": "boolean"
},
"showFirstExperienceInLCU": {
"type": "boolean"
}
},
"type": "object"
},
"LolPremadeVoiceAccountSettingsCategoryResource": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolPremadeVoiceAccountSettingsCategoryDataResource"
},
"schemaVersion": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPremadeVoiceAudioPropertiesResource": {
"properties": {
"isLoopbackEnabled": {
"type": "boolean"
},
"micEnergy": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPremadeVoiceConfigReadinessEnum": {
"enum": [
"NotReady",
"Ready",
"Disabled"
],
"type": "string"
},
"LolPremadeVoiceConfigStatus": {
"properties": {
"readiness": {
"$ref": "#/components/schemas/LolPremadeVoiceConfigReadinessEnum"
}
},
"type": "object"
},
"LolPremadeVoiceConfigType": {
"enum": [
"public",
"player"
],
"type": "string"
},
"LolPremadeVoiceDeviceResource": {
"properties": {
"handle": {
"type": "string"
},
"is_current_device": {
"type": "boolean"
},
"is_default": {
"type": "boolean"
},
"name": {
"type": "string"
},
"usable": {
"type": "boolean"
}
},
"type": "object"
},
"LolPremadeVoiceDeviceResourceRiotClient": {
"properties": {
"handle": {
"type": "string"
},
"is_current_device": {
"type": "boolean"
},
"is_default": {
"type": "boolean"
},
"is_effective_device": {
"type": "boolean"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolPremadeVoiceEntitlementsToken": {
"properties": {
"entitlements": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolPremadeVoiceExternalSession": {
"properties": {
"patchlineFullName": {
"type": "string"
},
"patchlineId": {
"type": "string"
},
"productId": {
"type": "string"
}
},
"type": "object"
},
"LolPremadeVoiceFirstExperience": {
"properties": {
"showFirstExperienceInGame": {
"type": "boolean"
},
"showFirstExperienceInLCU": {
"type": "boolean"
}
},
"type": "object"
},
"LolPremadeVoiceGameEventHotkeys": {
"properties": {
"evtPushToTalk": {
"type": "string"
}
},
"type": "object"
},
"LolPremadeVoiceGameInputSettings": {
"properties": {
"GameEvents": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolPremadeVoiceGameflowGameClient"
},
"phase": {
"$ref": "#/components/schemas/LolPremadeVoiceGameflowPhase"
}
},
"type": "object"
},
"LolPremadeVoiceInputMode": {
"enum": [
"voiceActivity",
"pushToTalk"
],
"type": "string"
},
"LolPremadeVoiceKeyCombo": {
"properties": {
"keyBindings": {
"items": {
"$ref": "#/components/schemas/LolPremadeVoicePushToTalkKey"
},
"type": "array"
}
},
"type": "object"
},
"LolPremadeVoiceKeycodePushToTalkResource": {
"properties": {
"enabled": {
"type": "boolean"
},
"keyCombos": {
"items": {
"$ref": "#/components/schemas/LolPremadeVoiceKeyCombo"
},
"type": "array"
}
},
"type": "object"
},
"LolPremadeVoiceLocalSettingsCategoryDataResource": {
"properties": {
"currentCaptureDeviceHandle": {
"type": "string"
},
"inputVolume": {
"format": "int32",
"type": "integer"
},
"vadSensitivity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPremadeVoiceLocalSettingsCategoryResource": {
"properties": {
"data": {
"$ref": "#/components/schemas/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": {
"commsEnabled": {
"type": "boolean"
},
"partyId": {
"type": "string"
},
"players": {
"additionalProperties": {
"$ref": "#/components/schemas/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": "#/components/schemas/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"
},
"LolPremadeVoicePushToTalkKey": {
"properties": {
"key": {
"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": "#/components/schemas/LolPremadeVoiceParticipantResource"
},
"type": "array"
},
"status": {
"$ref": "#/components/schemas/LolPremadeVoiceSessionStatus"
},
"volume": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPremadeVoiceSessionStatus": {
"enum": [
"active",
"onHold"
],
"type": "string"
},
"LolPremadeVoiceSettingsResource": {
"properties": {
"autoJoin": {
"type": "boolean"
},
"currentCaptureDeviceHandle": {
"type": "string"
},
"inputMode": {
"$ref": "#/components/schemas/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"
},
"LolPublishingContentRegionLocale": {
"properties": {
"locale": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetBalance": {
"properties": {
"amount": {
"format": "int32",
"type": "integer"
},
"currencyType": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetBaseSkinLineDto": {
"properties": {
"collectionCardPath": {
"type": "string"
},
"collectionDescription": {
"type": "string"
},
"items": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetSkinLineItemDto"
},
"type": "array"
},
"localizedName": {
"type": "string"
},
"pricingOptions": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetPriceOptionDto"
},
"type": "array"
},
"skinLineDescriptions": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetSkinLineDescriptionDto"
},
"type": "array"
},
"splashPath": {
"type": "string"
},
"tilePath": {
"type": "string"
},
"uncenteredSplashPath": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetBundledItemPricingInfo": {
"properties": {
"discountPrices": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetDiscountPricingInfo"
},
"type": "array"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"quantity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPurchaseWidgetCapOffer": {
"properties": {
"active": {
"type": "boolean"
},
"createdDate": {
"type": "string"
},
"id": {
"type": "string"
},
"label": {
"type": "string"
},
"merchantId": {
"type": "string"
},
"payload": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetCapOfferPayloadEntry"
},
"type": "array"
},
"productId": {
"type": "string"
},
"startDate": {
"type": "string"
},
"typeId": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetCapOfferPayloadEntry": {
"properties": {
"fulfillmentTypeId": {
"type": "string"
},
"inventoryTypeUUID": {
"type": "string"
},
"itemInstanceId": {
"type": "string"
},
"itemPriceMap": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
}
},
"type": "object"
},
"LolPurchaseWidgetCapOrdersDataDto": {
"properties": {
"id": {
"type": "string"
},
"location": {
"type": "string"
},
"purchaser": {
"$ref": "#/components/schemas/LolPurchaseWidgetCapOrdersTypedIdentifierDto"
},
"source": {
"type": "string"
},
"subOrders": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetCapOrdersSubOrderDto"
},
"type": "array"
}
},
"type": "object"
},
"LolPurchaseWidgetCapOrdersMetaDto": {
"properties": {
"xid": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetCapOrdersOfferContextDto": {
"properties": {
"paymentOption": {
"type": "string"
},
"quantity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPurchaseWidgetCapOrdersOfferDto": {
"properties": {
"id": {
"type": "string"
},
"productId": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetCapOrdersOrderDto": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolPurchaseWidgetCapOrdersDataDto"
},
"meta": {
"$ref": "#/components/schemas/LolPurchaseWidgetCapOrdersMetaDto"
}
},
"type": "object"
},
"LolPurchaseWidgetCapOrdersSubOrderDto": {
"properties": {
"offer": {
"$ref": "#/components/schemas/LolPurchaseWidgetCapOrdersOfferDto"
},
"offerContext": {
"$ref": "#/components/schemas/LolPurchaseWidgetCapOrdersOfferContextDto"
},
"recipientId": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetCapOrdersTypedIdentifierDto": {
"properties": {
"id": {
"type": "string"
},
"typeId": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetCatalogPluginItem": {
"properties": {
"active": {
"type": "boolean"
},
"description": {
"type": "string"
},
"imagePath": {
"type": "string"
},
"inactiveDate": {
"format": "int64",
"type": "integer"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"itemInstanceId": {
"type": "string"
},
"metadata": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemMetadataEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"owned": {
"type": "boolean"
},
"prices": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetCatalogPluginPrice"
},
"type": "array"
},
"purchaseDate": {
"format": "int64",
"type": "integer"
},
"questSkinInfo": {
"$ref": "#/components/schemas/LolPurchaseWidgetSkinLineInfo"
},
"releaseDate": {
"format": "int64",
"type": "integer"
},
"subInventoryType": {
"type": "string"
},
"subTitle": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolPurchaseWidgetCatalogPluginItemAssets": {
"properties": {
"colors": {
"items": {
"type": "string"
},
"type": "array"
},
"emblems": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetChampionSkinEmblem"
},
"type": "array"
},
"iconPath": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"tilePath": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetCatalogPluginItemWithDetails": {
"properties": {
"assets": {
"$ref": "#/components/schemas/LolPurchaseWidgetCatalogPluginItemAssets"
},
"bundledDiscountPrices": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetCatalogPluginPrice"
},
"type": "array"
},
"bundledItems": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetCatalogPluginItemWithDetails"
},
"type": "array"
},
"item": {
"$ref": "#/components/schemas/LolPurchaseWidgetCatalogPluginItem"
},
"minimumBundlePrices": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetCatalogPluginPrice"
},
"type": "array"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"requiredItems": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetCatalogPluginItemWithDetails"
},
"type": "array"
}
},
"type": "object"
},
"LolPurchaseWidgetCatalogPluginPrice": {
"properties": {
"cost": {
"format": "int64",
"type": "integer"
},
"costType": {
"type": "string"
},
"currency": {
"type": "string"
},
"sale": {
"$ref": "#/components/schemas/LolPurchaseWidgetCatalogPluginSale"
}
},
"type": "object"
},
"LolPurchaseWidgetCatalogPluginSale": {
"properties": {
"cost": {
"format": "int64",
"type": "integer"
},
"discount": {
"format": "float",
"type": "number"
},
"endDate": {
"type": "string"
},
"startDate": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetChampionSkinEmblem": {
"properties": {
"emblemPath": {
"$ref": "#/components/schemas/LolPurchaseWidgetChampionSkinEmblemPath"
},
"emblemPosition": {
"$ref": "#/components/schemas/LolPurchaseWidgetChampionSkinEmblemPosition"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetChampionSkinEmblemPath": {
"properties": {
"large": {
"type": "string"
},
"small": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetChampionSkinEmblemPosition": {
"properties": {
"horizontal": {
"type": "string"
},
"vertical": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetDiscountPricingInfo": {
"properties": {
"cost": {
"format": "int32",
"type": "integer"
},
"costType": {
"type": "string"
},
"currency": {
"type": "string"
},
"discount": {
"format": "float",
"type": "number"
}
},
"type": "object"
},
"LolPurchaseWidgetItemChoiceDetails": {
"properties": {
"backgroundImage": {
"type": "string"
},
"contents": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemDetails"
},
"type": "array"
},
"discount": {
"type": "string"
},
"displayType": {
"type": "string"
},
"fullPrice": {
"format": "int32",
"type": "integer"
},
"item": {
"$ref": "#/components/schemas/LolPurchaseWidgetCatalogPluginItem"
},
"purchaseOptions": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetPurchaseOption"
},
"type": "array"
}
},
"type": "object"
},
"LolPurchaseWidgetItemChoices": {
"properties": {
"choices": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemChoiceDetails"
},
"type": "array"
},
"validationErrors": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetValidationErrorEntry"
},
"type": "array"
}
},
"type": "object"
},
"LolPurchaseWidgetItemCost": {
"properties": {
"cost": {
"format": "int64",
"type": "integer"
},
"currency": {
"type": "string"
},
"discount": {
"format": "float",
"type": "number"
}
},
"type": "object"
},
"LolPurchaseWidgetItemDefinition": {
"properties": {
"assets": {
"$ref": "#/components/schemas/LolPurchaseWidgetCatalogPluginItemAssets"
},
"bundledItemPrice": {
"$ref": "#/components/schemas/LolPurchaseWidgetBundledItemPricingInfo"
},
"description": {
"type": "string"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"metadata": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemMetadataEntry"
},
"type": "array"
},
"name": {
"type": "string"
},
"owned": {
"type": "boolean"
},
"subInventoryType": {
"type": "string"
},
"subTitle": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolPurchaseWidgetItemDetails": {
"properties": {
"description": {
"type": "string"
},
"iconUrl": {
"type": "string"
},
"subTitle": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetItemKey": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPurchaseWidgetItemMetadataEntry": {
"properties": {
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetItemOwnership": {
"properties": {
"itemKey": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemKey"
},
"quantity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPurchaseWidgetItemPrice": {
"properties": {
"currencyType": {
"type": "string"
},
"price": {
"format": "int64",
"type": "integer"
},
"purchasable": {
"type": "boolean"
}
},
"type": "object"
},
"LolPurchaseWidgetItemSale": {
"properties": {
"discount": {
"format": "float",
"type": "number"
},
"endDate": {
"type": "string"
},
"startDate": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"idToken": {
"type": "string"
},
"puuid": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/LolPurchaseWidgetLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolPurchaseWidgetLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolPurchaseWidgetOrderNotificationResource": {
"properties": {
"eventType": {
"type": "string"
},
"eventTypeId": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetPriceDetail": {
"properties": {
"itemKey": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemKey"
},
"price": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemPrice"
}
},
"type": "object"
},
"LolPurchaseWidgetPriceOptionDto": {
"properties": {
"currencyImagePath": {
"type": "string"
},
"currencyName": {
"type": "string"
},
"currencyPaymentOption": {
"type": "string"
},
"currencyType": {
"type": "string"
},
"price": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolPurchaseWidgetPurchasableItem": {
"properties": {
"bundledItems": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemDefinition"
},
"type": "array"
},
"dependencies": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemDefinition"
},
"type": "array"
},
"item": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemDefinition"
},
"purchaseOptions": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetPurchaseOption"
},
"type": "array"
},
"sale": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemSale"
},
"validationErrors": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetValidationErrorEntry"
},
"type": "array"
}
},
"type": "object"
},
"LolPurchaseWidgetPurchaseItem": {
"properties": {
"itemKey": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemKey"
},
"purchaseCurrencyInfo": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemPrice"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"source": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetPurchaseOfferOrderStates": {
"enum": [
"NOT_STARTED",
"IN_PROGRESS",
"FAIL",
"SUCCESS"
],
"type": "string"
},
"LolPurchaseWidgetPurchaseOfferOrderStatus": {
"properties": {
"message": {
"type": "string"
},
"orderState": {
"$ref": "#/components/schemas/LolPurchaseWidgetPurchaseOfferOrderStates"
}
},
"type": "object"
},
"LolPurchaseWidgetPurchaseOfferOrderStatuses": {
"properties": {
"statuses": {
"additionalProperties": {
"$ref": "#/components/schemas/LolPurchaseWidgetPurchaseOfferOrderStatus"
},
"type": "object"
}
},
"type": "object"
},
"LolPurchaseWidgetPurchaseOfferRequestV3": {
"properties": {
"currencyType": {
"type": "string"
},
"offerId": {
"type": "string"
},
"price": {
"format": "int32",
"type": "integer"
},
"quantity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPurchaseWidgetPurchaseOfferResponseV3": {
"properties": {
"legacy": {
"type": "boolean"
},
"orderDto": {
"$ref": "#/components/schemas/LolPurchaseWidgetCapOrdersOrderDto"
}
},
"type": "object"
},
"LolPurchaseWidgetPurchaseOption": {
"properties": {
"priceDetails": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetPriceDetail"
},
"type": "array"
}
},
"type": "object"
},
"LolPurchaseWidgetPurchaseRequest": {
"properties": {
"items": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetPurchaseItem"
},
"type": "array"
}
},
"type": "object"
},
"LolPurchaseWidgetPurchaseResponse": {
"properties": {
"items": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetPurchaseItem"
},
"type": "array"
},
"transactions": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetTransaction"
},
"type": "array"
},
"useRMSConfirmation": {
"type": "boolean"
}
},
"type": "object"
},
"LolPurchaseWidgetPurchaseWidgetConfig": {
"properties": {
"alwaysShowPurchaseDisclaimer": {
"type": "boolean"
},
"enabled": {
"type": "boolean"
},
"nonRefundableDisclaimerEnabled": {
"type": "boolean"
}
},
"type": "object"
},
"LolPurchaseWidgetRiotMessagingServiceMessage": {
"properties": {
"payload": {
"type": "string"
},
"resource": {
"type": "string"
},
"service": {
"type": "string"
},
"timestamp": {
"format": "int64",
"type": "integer"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetSale": {
"properties": {
"endDate": {
"type": "string"
},
"prices": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemCost"
},
"type": "array"
},
"startDate": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetSkinLineDescriptionDto": {
"properties": {
"description": {
"type": "string"
},
"iconImagePath": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetSkinLineDescriptionInfo": {
"properties": {
"description": {
"type": "string"
},
"iconPath": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetSkinLineInfo": {
"properties": {
"collectionCardPath": {
"type": "string"
},
"collectionDescription": {
"type": "string"
},
"descriptionInfo": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetSkinLineDescriptionInfo"
},
"type": "array"
},
"name": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"tiers": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetSkinLineTier"
},
"type": "array"
},
"tilePath": {
"type": "string"
},
"uncenteredSplashPath": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetSkinLineItemDto": {
"properties": {
"largeImagePath": {
"type": "string"
},
"largeVideoPath": {
"type": "string"
},
"localizedLongName": {
"type": "string"
},
"localizedShortName": {
"type": "string"
},
"thumbnailImagePath": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetSkinLineTier": {
"properties": {
"collectionSplashVideoPath": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"loadScreenPath": {
"type": "string"
},
"name": {
"type": "string"
},
"shortName": {
"type": "string"
},
"splashPath": {
"type": "string"
},
"splashVideoPath": {
"type": "string"
},
"stage": {
"format": "int64",
"type": "integer"
},
"tilePath": {
"type": "string"
},
"uncenteredSplashPath": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetTransaction": {
"properties": {
"iconUrl": {
"type": "string"
},
"itemKey": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemKey"
},
"itemName": {
"type": "string"
},
"transactionId": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetValidateOfferError": {
"properties": {
"errorKey": {
"type": "string"
},
"meta": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetValidateOfferRequestV3": {
"properties": {
"offerId": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetValidateOfferResponseV3": {
"properties": {
"validationErrors": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetValidateOfferError"
},
"type": "array"
}
},
"type": "object"
},
"LolPurchaseWidgetValidationError": {
"properties": {
"errorCode": {
"type": "string"
},
"errorDetails": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"message": {
"type": "string"
},
"responseItems": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolPurchaseWidgetValidationErrorEntry": {
"properties": {
"id": {
"type": "string"
}
},
"type": "object"
},
"LolPurchaseWidgetValidationRequest": {
"properties": {
"items": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetValidationRequestItem"
},
"type": "array"
},
"ownedItems": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemOwnership"
},
"type": "array"
}
},
"type": "object"
},
"LolPurchaseWidgetValidationRequestItem": {
"properties": {
"itemKey": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemKey"
},
"quantity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolPurchaseWidgetValidationResponse": {
"properties": {
"items": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetValidationResponseItem"
},
"type": "array"
},
"valid": {
"type": "boolean"
}
},
"type": "object"
},
"LolPurchaseWidgetValidationResponseItem": {
"properties": {
"description": {
"type": "string"
},
"itemKey": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemKey"
},
"name": {
"type": "string"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"sale": {
"$ref": "#/components/schemas/LolPurchaseWidgetSale"
},
"validationCurrencyInfo": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemPrice"
},
"type": "array"
}
},
"type": "object"
},
"LolPurchaseWidgetWallet": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"balances": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetBalance"
},
"type": "array"
},
"version": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedAchievedTier": {
"properties": {
"division": {
"format": "int64",
"type": "integer"
},
"queueType": {
"$ref": "#/components/schemas/LolRankedLeagueQueueType"
},
"tier": {
"$ref": "#/components/schemas/LolRankedLeagueTier"
}
},
"type": "object"
},
"LolRankedEndOfGameStatsBlock": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRankedEosNotificationResource": {
"properties": {
"division": {
"type": "string"
},
"notificationName": {
"type": "string"
},
"notificationType": {
"type": "string"
},
"queue": {
"type": "string"
},
"seasonEndTime": {
"format": "int64",
"type": "integer"
},
"tier": {
"type": "string"
}
},
"type": "object"
},
"LolRankedEosNotificationType": {
"enum": [
"FIRST_WARNING",
"SECOND_WARNING",
"SEASON_ENDED"
],
"type": "string"
},
"LolRankedEosNotificationsConfig": {
"properties": {
"config": {
"items": {
"$ref": "#/components/schemas/LolRankedEosNotificationsConfigEntry"
},
"type": "array"
}
},
"type": "object"
},
"LolRankedEosNotificationsConfigEntry": {
"properties": {
"name": {
"type": "string"
},
"offsetTime1": {
"format": "int64",
"type": "integer"
},
"offsetTime2": {
"format": "int64",
"type": "integer"
},
"offsetTime3": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRankedEosRewardsConfig": {
"properties": {
"config": {
"items": {
"$ref": "#/components/schemas/LolRankedEosRewardsConfigEntry"
},
"type": "array"
}
},
"type": "object"
},
"LolRankedEosRewardsConfigEntry": {
"properties": {
"rewards": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"season": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedEosSettingsData": {
"properties": {
"notificationShown": {
"type": "boolean"
}
},
"type": "object"
},
"LolRankedEosSettingsResource": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolRankedEosSettingsData"
},
"schemaVersion": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedGameflowGameData": {
"properties": {
"queue": {
"$ref": "#/components/schemas/LolRankedQueue"
}
},
"type": "object"
},
"LolRankedGameflowPhase": {
"enum": [
"None",
"Lobby",
"Matchmaking",
"CheckedIntoTournament",
"ReadyCheck",
"ChampSelect",
"GameStart",
"FailedToLaunch",
"InProgress",
"Reconnect",
"WaitingForStats",
"PreEndOfGame",
"EndOfGame",
"TerminatedInError"
],
"type": "string"
},
"LolRankedGameflowSession": {
"properties": {
"gameData": {
"$ref": "#/components/schemas/LolRankedGameflowGameData"
},
"phase": {
"$ref": "#/components/schemas/LolRankedGameflowPhase"
}
},
"type": "object"
},
"LolRankedGlobalNotification": {
"properties": {
"notifyReason": {
"type": "string"
},
"participantId": {
"type": "string"
},
"position": {
"format": "int32",
"type": "integer"
},
"queueType": {
"type": "string"
},
"tier": {
"type": "string"
}
},
"type": "object"
},
"LolRankedLcuLeagueNotification": {
"properties": {
"afkLpPenaltyAmount": {
"format": "int32",
"type": "integer"
},
"afkLpPenaltyLevel": {
"format": "int32",
"type": "integer"
},
"canDemoteFromTier": {
"type": "boolean"
},
"changeReason": {
"type": "string"
},
"consolationLpUsed": {
"format": "int32",
"type": "integer"
},
"displayType": {
"$ref": "#/components/schemas/LolRankedNotificationDisplayType"
},
"division": {
"$ref": "#/components/schemas/LolRankedLeagueDivision"
},
"eligibleForPromoHelper": {
"type": "boolean"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"id": {
"format": "int64",
"type": "integer"
},
"leaguePoints": {
"format": "int32",
"type": "integer"
},
"leaguePointsDelta": {
"format": "int32",
"type": "integer"
},
"miniseriesProgress": {
"type": "string"
},
"miniseriesWins": {
"format": "int32",
"type": "integer"
},
"msgId": {
"type": "string"
},
"notifyReason": {
"type": "string"
},
"numberOfPromotions": {
"format": "int32",
"type": "integer"
},
"promoSeriesForRanksEnabled": {
"type": "boolean"
},
"provisionalGamesRemaining": {
"format": "int32",
"type": "integer"
},
"queueType": {
"$ref": "#/components/schemas/LolRankedLeagueQueueType"
},
"ratedRating": {
"format": "int32",
"type": "integer"
},
"ratedRatingDelta": {
"format": "int32",
"type": "integer"
},
"ratedTier": {
"$ref": "#/components/schemas/LolRankedRatedTier"
},
"rewardEarnedId": {
"type": "string"
},
"rewardEarnedType": {
"type": "string"
},
"splitPointsNotification": {
"$ref": "#/components/schemas/LolRankedSplitPointsNotification"
},
"tier": {
"$ref": "#/components/schemas/LolRankedLeagueTier"
},
"timeUntilInactivityStatusChanges": {
"format": "int64",
"type": "integer"
},
"wasAfkOrLeaver": {
"type": "boolean"
}
},
"type": "object"
},
"LolRankedLeagueDivision": {
"enum": [
"I",
"II",
"III",
"IV",
"V",
"NA"
],
"type": "string"
},
"LolRankedLeagueDivisionInfo": {
"properties": {
"apexUnlockTimeMillis": {
"format": "int64",
"type": "integer"
},
"division": {
"$ref": "#/components/schemas/LolRankedLeagueDivision"
},
"maxLeagueSize": {
"format": "int32",
"type": "integer"
},
"minLpForApexTier": {
"format": "int32",
"type": "integer"
},
"standings": {
"items": {
"$ref": "#/components/schemas/LolRankedLeagueStanding"
},
"type": "array"
},
"tier": {
"$ref": "#/components/schemas/LolRankedLeagueTier"
},
"topNumberOfPlayers": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRankedLeagueLadderDTO": {
"properties": {
"apexUnlockTimeMillis": {
"format": "int64",
"type": "integer"
},
"entries": {
"items": {
"$ref": "#/components/schemas/LolRankedLeagueLadderEntryDTO"
},
"type": "array"
},
"maxLeagueSize": {
"format": "int32",
"type": "integer"
},
"minLpForTier": {
"format": "int32",
"type": "integer"
},
"nextApexUpdate": {
"format": "int64",
"type": "integer"
},
"provisionalGameThreshold": {
"format": "int32",
"type": "integer"
},
"queueType": {
"type": "string"
},
"tier": {
"type": "string"
},
"topNumberOfPlayers": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedLeagueLadderEntryDTO": {
"properties": {
"earnedRegaliaRewardIds": {
"items": {
"type": "string"
},
"type": "array"
},
"leaguePoints": {
"format": "int32",
"type": "integer"
},
"losses": {
"format": "int32",
"type": "integer"
},
"miniSeriesProgress": {
"type": "string"
},
"previousDayLeaguePosition": {
"format": "int32",
"type": "integer"
},
"previousSeasonAchievedRank": {
"type": "string"
},
"previousSeasonAchievedTier": {
"type": "string"
},
"provisionalGamesRemaining": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"rank": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerName": {
"type": "string"
},
"tier": {
"type": "string"
},
"wins": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedLeagueLadderInfo": {
"properties": {
"divisions": {
"items": {
"$ref": "#/components/schemas/LolRankedLeagueDivisionInfo"
},
"type": "array"
},
"nextApexUpdateMillis": {
"format": "int64",
"type": "integer"
},
"provisionalGameThreshold": {
"format": "int32",
"type": "integer"
},
"queueType": {
"$ref": "#/components/schemas/LolRankedLeagueQueueType"
},
"requestedRankedEntry": {
"$ref": "#/components/schemas/LolRankedLeagueStanding"
},
"tier": {
"$ref": "#/components/schemas/LolRankedLeagueTier"
}
},
"type": "object"
},
"LolRankedLeagueNotification": {
"properties": {
"afkLpPenaltyAmount": {
"format": "int32",
"type": "integer"
},
"afkLpPenaltyLevel": {
"format": "int32",
"type": "integer"
},
"canDemoteFromTier": {
"type": "boolean"
},
"changeReason": {
"type": "string"
},
"consolationLpUsed": {
"format": "int32",
"type": "integer"
},
"eligibleForPromoHelper": {
"type": "boolean"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"leaguePoints": {
"format": "int32",
"type": "integer"
},
"leaguePointsDelta": {
"format": "int32",
"type": "integer"
},
"miniseriesProgress": {
"type": "string"
},
"notifyReason": {
"type": "string"
},
"promoSeriesForRanksEnabled": {
"type": "boolean"
},
"provisionalGamesRemaining": {
"format": "int32",
"type": "integer"
},
"queueType": {
"type": "string"
},
"rank": {
"type": "string"
},
"ratedRating": {
"format": "int32",
"type": "integer"
},
"ratedRatingDelta": {
"format": "int32",
"type": "integer"
},
"ratedTier": {
"type": "string"
},
"splitPoints": {
"format": "int32",
"type": "integer"
},
"splitPointsBreakdown": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
},
"tier": {
"type": "string"
},
"wasAfkOrLeaver": {
"type": "boolean"
}
},
"type": "object"
},
"LolRankedLeagueNotifications": {
"properties": {
"globalNotifications": {
"items": {
"$ref": "#/components/schemas/LolRankedGlobalNotification"
},
"type": "array"
},
"notifications": {
"items": {
"$ref": "#/components/schemas/LolRankedLeagueNotification"
},
"type": "array"
}
},
"type": "object"
},
"LolRankedLeagueQueueType": {
"enum": [
"NONE",
"RANKED_SOLO_5x5",
"RANKED_FLEX_SR",
"RANKED_FLEX_TT",
"RANKED_TFT",
"RANKED_TFT_TURBO",
"RANKED_TFT_PAIRS"
],
"type": "string"
},
"LolRankedLeagueStanding": {
"properties": {
"division": {
"$ref": "#/components/schemas/LolRankedLeagueDivision"
},
"earnedRegaliaRewardIds": {
"items": {
"type": "string"
},
"type": "array"
},
"isProvisional": {
"type": "boolean"
},
"leaguePoints": {
"format": "int64",
"type": "integer"
},
"losses": {
"format": "int64",
"type": "integer"
},
"miniseriesResults": {
"items": {
"$ref": "#/components/schemas/LolRankedMiniseries"
},
"type": "array"
},
"pendingDemotion": {
"type": "boolean"
},
"pendingPromotion": {
"type": "boolean"
},
"position": {
"format": "int32",
"type": "integer"
},
"positionDelta": {
"format": "int32",
"type": "integer"
},
"previousPosition": {
"format": "int32",
"type": "integer"
},
"previousSeasonAchievedDivision": {
"$ref": "#/components/schemas/LolRankedLeagueDivision"
},
"previousSeasonAchievedTier": {
"$ref": "#/components/schemas/LolRankedLeagueTier"
},
"provisionalGamesRemaining": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"rankedRegaliaLevel": {
"format": "int32",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerName": {
"type": "string"
},
"tier": {
"$ref": "#/components/schemas/LolRankedLeagueTier"
},
"wins": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRankedLeagueTier": {
"enum": [
"NONE",
"IRON",
"BRONZE",
"SILVER",
"GOLD",
"PLATINUM",
"DIAMOND",
"MASTER",
"GRANDMASTER",
"CHALLENGER"
],
"type": "string"
},
"LolRankedLeagueTierAndRankDTO": {
"properties": {
"playerOrTeamId": {
"type": "string"
},
"playerOrTeamName": {
"type": "string"
},
"queueType": {
"type": "string"
},
"rank": {
"type": "string"
},
"tier": {
"type": "string"
}
},
"type": "object"
},
"LolRankedLeaguesSeasonRewardConfig": {
"properties": {
"QualificationWarningEnabled": {
"type": "boolean"
}
},
"type": "object"
},
"LolRankedLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"state": {
"$ref": "#/components/schemas/LolRankedLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRankedLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolRankedMiniseries": {
"enum": [
"W",
"L",
"N"
],
"type": "string"
},
"LolRankedNotificationDisplayType": {
"enum": [
"NONE",
"TOAST",
"MODAL",
"VIGNETTE"
],
"type": "string"
},
"LolRankedParticipantTiers": {
"properties": {
"achievedTiers": {
"items": {
"$ref": "#/components/schemas/LolRankedAchievedTier"
},
"type": "array"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRankedQueue": {
"properties": {
"type": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"LolRankedQueuesAndPuuidsPayload": {
"properties": {
"queueTypes": {
"items": {
"$ref": "#/components/schemas/LolRankedLeagueQueueType"
},
"type": "array"
},
"summonerIds": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"LolRankedRankedQueueStats": {
"properties": {
"division": {
"$ref": "#/components/schemas/LolRankedLeagueDivision"
},
"isProvisional": {
"type": "boolean"
},
"leaguePoints": {
"format": "int32",
"type": "integer"
},
"losses": {
"format": "int32",
"type": "integer"
},
"miniSeriesProgress": {
"type": "string"
},
"previousSeasonAchievedDivision": {
"$ref": "#/components/schemas/LolRankedLeagueDivision"
},
"previousSeasonAchievedTier": {
"$ref": "#/components/schemas/LolRankedLeagueTier"
},
"previousSeasonEndDivision": {
"$ref": "#/components/schemas/LolRankedLeagueDivision"
},
"previousSeasonEndTier": {
"$ref": "#/components/schemas/LolRankedLeagueTier"
},
"provisionalGameThreshold": {
"format": "int32",
"type": "integer"
},
"provisionalGamesRemaining": {
"format": "int32",
"type": "integer"
},
"queueType": {
"$ref": "#/components/schemas/LolRankedLeagueQueueType"
},
"ratedRating": {
"format": "int32",
"type": "integer"
},
"ratedTier": {
"$ref": "#/components/schemas/LolRankedRatedTier"
},
"tier": {
"$ref": "#/components/schemas/LolRankedLeagueTier"
},
"warnings": {
"$ref": "#/components/schemas/LolRankedRankedQueueWarnings"
},
"wins": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedRankedQueueStatsDTO": {
"properties": {
"leaguePoints": {
"format": "int32",
"type": "integer"
},
"losses": {
"format": "int32",
"type": "integer"
},
"miniSeriesProgress": {
"type": "string"
},
"previousSeasonAchievedRank": {
"type": "string"
},
"previousSeasonAchievedTier": {
"type": "string"
},
"previousSeasonEndRank": {
"type": "string"
},
"previousSeasonEndTier": {
"type": "string"
},
"provisionalGameThreshold": {
"format": "int32",
"type": "integer"
},
"provisionalGamesRemaining": {
"format": "int32",
"type": "integer"
},
"queueType": {
"type": "string"
},
"rank": {
"type": "string"
},
"ratedRating": {
"format": "int32",
"type": "integer"
},
"ratedTier": {
"type": "string"
},
"tier": {
"type": "string"
},
"warnings": {
"$ref": "#/components/schemas/LolRankedRankedQueueWarningsDTO"
},
"wins": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedRankedQueueWarnings": {
"properties": {
"daysUntilDecay": {
"format": "int32",
"type": "integer"
},
"demotionWarning": {
"format": "int32",
"type": "integer"
},
"displayDecayWarning": {
"type": "boolean"
},
"timeUntilInactivityStatusChanges": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRankedRankedQueueWarningsDTO": {
"properties": {
"apexDaysUntilDecay": {
"format": "int32",
"type": "integer"
},
"daysUntilDecay": {
"format": "int32",
"type": "integer"
},
"demotionWarning": {
"format": "int32",
"type": "integer"
},
"displayDecayWarning": {
"type": "boolean"
},
"timeUntilInactivityStatusChanges": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRankedRankedStats": {
"properties": {
"earnedRegaliaRewardIds": {
"items": {
"type": "string"
},
"type": "array"
},
"highestPreviousSeasonAchievedDivision": {
"$ref": "#/components/schemas/LolRankedLeagueDivision"
},
"highestPreviousSeasonAchievedTier": {
"$ref": "#/components/schemas/LolRankedLeagueTier"
},
"highestPreviousSeasonEndDivision": {
"$ref": "#/components/schemas/LolRankedLeagueDivision"
},
"highestPreviousSeasonEndTier": {
"$ref": "#/components/schemas/LolRankedLeagueTier"
},
"highestRankedEntry": {
"$ref": "#/components/schemas/LolRankedRankedQueueStats"
},
"highestRankedEntrySR": {
"$ref": "#/components/schemas/LolRankedRankedQueueStats"
},
"queueMap": {
"additionalProperties": {
"$ref": "#/components/schemas/LolRankedRankedQueueStats"
},
"type": "object"
},
"queues": {
"items": {
"$ref": "#/components/schemas/LolRankedRankedQueueStats"
},
"type": "array"
},
"rankedRegaliaLevel": {
"format": "int32",
"type": "integer"
},
"seasons": {
"additionalProperties": {
"$ref": "#/components/schemas/LolRankedSeasonDTO"
},
"type": "object"
},
"splitsProgress": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
}
},
"type": "object"
},
"LolRankedRankedStatsDTO": {
"properties": {
"earnedRegaliaRewardIds": {
"items": {
"type": "string"
},
"type": "array"
},
"highestPreviousSeasonAchievedRank": {
"type": "string"
},
"highestPreviousSeasonAchievedTier": {
"type": "string"
},
"highestPreviousSeasonEndRank": {
"type": "string"
},
"highestPreviousSeasonEndTier": {
"type": "string"
},
"queues": {
"items": {
"$ref": "#/components/schemas/LolRankedRankedQueueStatsDTO"
},
"type": "array"
},
"seasons": {
"additionalProperties": {
"$ref": "#/components/schemas/LolRankedSeasonDTO"
},
"type": "object"
},
"splitsProgress": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
}
},
"type": "object"
},
"LolRankedRatedLadderEntryDTO": {
"properties": {
"previousUpdateLadderPosition": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"ratedRating": {
"format": "int32",
"type": "integer"
},
"ratedTier": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerName": {
"type": "string"
},
"wins": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedRatedLadderInfo": {
"properties": {
"queueType": {
"$ref": "#/components/schemas/LolRankedLeagueQueueType"
},
"standings": {
"items": {
"$ref": "#/components/schemas/LolRankedRatedLadderStanding"
},
"type": "array"
}
},
"type": "object"
},
"LolRankedRatedLadderStanding": {
"properties": {
"leaguePoints": {
"format": "int32",
"type": "integer"
},
"position": {
"format": "int32",
"type": "integer"
},
"positionDelta": {
"format": "int32",
"type": "integer"
},
"previousPosition": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"ratedTier": {
"$ref": "#/components/schemas/LolRankedRatedTier"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerName": {
"type": "string"
},
"wins": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedRatedTier": {
"enum": [
"NONE",
"GRAY",
"GREEN",
"BLUE",
"PURPLE",
"ORANGE"
],
"type": "string"
},
"LolRankedRewardsInfo": {
"properties": {
"currentSeasonId": {
"format": "int32",
"type": "integer"
},
"currentSplit": {
"$ref": "#/components/schemas/LolRankedSeasonSplit"
},
"currentSplitId": {
"format": "int32",
"type": "integer"
},
"rewardInfoByRewardId": {
"additionalProperties": {
"$ref": "#/components/schemas/LolRankedSplitReward"
},
"type": "object"
},
"splits": {
"items": {
"$ref": "#/components/schemas/LolRankedSeasonSplit"
},
"type": "array"
}
},
"type": "object"
},
"LolRankedSeasonDTO": {
"properties": {
"currentSeasonEnd": {
"format": "int64",
"type": "integer"
},
"currentSeasonId": {
"format": "int32",
"type": "integer"
},
"nextSeasonStart": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRankedSeasonSplit": {
"properties": {
"endTimeMillis": {
"format": "int64",
"type": "integer"
},
"rewardTrack": {
"items": {
"$ref": "#/components/schemas/LolRankedSplitRewardGroup"
},
"type": "array"
},
"seasonId": {
"format": "int32",
"type": "integer"
},
"splitId": {
"format": "int32",
"type": "integer"
},
"startTimeMillis": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRankedSeasonSplitDTO": {
"properties": {
"endTime": {
"format": "int64",
"type": "integer"
},
"rewardTrack": {
"items": {
"$ref": "#/components/schemas/LolRankedSplitRewardGroupDTO"
},
"type": "array"
},
"seasonId": {
"format": "int32",
"type": "integer"
},
"splitId": {
"format": "int32",
"type": "integer"
},
"startTime": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRankedSequenceEvent": {
"properties": {
"name": {
"type": "string"
},
"priority": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedSeverity": {
"enum": [
"WARNING",
"ALERT"
],
"type": "string"
},
"LolRankedSignedRankedStatsDTO": {
"properties": {
"earnedRegaliaRewardIds": {
"items": {
"type": "string"
},
"type": "array"
},
"highestPreviousSeasonAchievedRank": {
"type": "string"
},
"highestPreviousSeasonAchievedTier": {
"type": "string"
},
"highestPreviousSeasonEndRank": {
"type": "string"
},
"highestPreviousSeasonEndTier": {
"type": "string"
},
"jwt": {
"type": "string"
},
"queues": {
"items": {
"$ref": "#/components/schemas/LolRankedRankedQueueStatsDTO"
},
"type": "array"
},
"seasons": {
"additionalProperties": {
"$ref": "#/components/schemas/LolRankedSeasonDTO"
},
"type": "object"
},
"splitsProgress": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
}
},
"type": "object"
},
"LolRankedSocialLeaderboardRankedQueueStats": {
"properties": {
"division": {
"$ref": "#/components/schemas/LolRankedLeagueDivision"
},
"isProvisional": {
"type": "boolean"
},
"leaguePoints": {
"format": "int32",
"type": "integer"
},
"losses": {
"format": "int32",
"type": "integer"
},
"miniSeriesProgress": {
"type": "string"
},
"provisionalGameThreshold": {
"format": "int32",
"type": "integer"
},
"provisionalGamesRemaining": {
"format": "int32",
"type": "integer"
},
"queueType": {
"$ref": "#/components/schemas/LolRankedLeagueQueueType"
},
"ratedRating": {
"format": "int32",
"type": "integer"
},
"ratedTier": {
"$ref": "#/components/schemas/LolRankedRatedTier"
},
"tier": {
"$ref": "#/components/schemas/LolRankedLeagueTier"
},
"wins": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedSocialLeaderboardRankedQueueStatsDTO": {
"properties": {
"leaguePoints": {
"format": "int32",
"type": "integer"
},
"losses": {
"format": "int32",
"type": "integer"
},
"miniSeriesProgress": {
"type": "string"
},
"provisionalGameThreshold": {
"format": "int32",
"type": "integer"
},
"provisionalGamesRemaining": {
"format": "int32",
"type": "integer"
},
"queueType": {
"type": "string"
},
"rank": {
"type": "string"
},
"ratedRating": {
"format": "int32",
"type": "integer"
},
"ratedTier": {
"type": "string"
},
"tier": {
"type": "string"
},
"wins": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedSplitPointsNotification": {
"properties": {
"nextRewardId": {
"type": "string"
},
"nextRewardType": {
"type": "string"
},
"previousSplitPointsRequired": {
"format": "int32",
"type": "integer"
},
"splitPointsAfterGame": {
"format": "int32",
"type": "integer"
},
"splitPointsBeforeGame": {
"format": "int32",
"type": "integer"
},
"splitPointsBreakdown": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
},
"splitPointsDelta": {
"format": "int32",
"type": "integer"
},
"splitPointsRequired": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedSplitReward": {
"properties": {
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"pointsRequired": {
"format": "int32",
"type": "integer"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"regaliaLevel": {
"format": "int32",
"type": "integer"
},
"rewardType": {
"type": "string"
},
"splitId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedSplitRewardDTO": {
"properties": {
"defaultRewardId": {
"type": "string"
},
"metadata": {
"$ref": "#/components/schemas/LolRankedSplitRewardsMetaData"
},
"rewardType": {
"type": "string"
},
"tieredRewardIds": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
},
"type": "object"
},
"LolRankedSplitRewardGroup": {
"properties": {
"rewards": {
"items": {
"$ref": "#/components/schemas/LolRankedSplitReward"
},
"type": "array"
},
"splitPoints": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedSplitRewardGroupDTO": {
"properties": {
"rewards": {
"items": {
"$ref": "#/components/schemas/LolRankedSplitRewardDTO"
},
"type": "array"
},
"splitPoints": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedSplitRewardsMetaData": {
"properties": {
"description": {
"type": "string"
},
"quantity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRankedSummoner": {
"properties": {
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRegaliaAccountIdAndSummonerId": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRegaliaChatPresence": {
"properties": {
"icon": {
"format": "int32",
"type": "integer"
},
"lol": {
"$ref": "#/components/schemas/LolRegaliaChatPresenceLolData"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRegaliaChatPresenceExternal": {
"properties": {
"icon": {
"format": "int32",
"type": "integer"
},
"id": {
"type": "string"
},
"lol": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRegaliaChatPresenceLolData": {
"properties": {
"level": {
"format": "int32",
"type": "integer"
},
"rankedLeagueDivision": {
"$ref": "#/components/schemas/LolRegaliaLeagueDivision"
},
"rankedLeagueQueue": {
"$ref": "#/components/schemas/LolRegaliaLeagueQueueType"
},
"rankedLeagueTier": {
"$ref": "#/components/schemas/LolRegaliaLeagueTier"
},
"rankedPrevSeasonDivision": {
"$ref": "#/components/schemas/LolRegaliaLeagueDivision"
},
"rankedPrevSeasonTier": {
"$ref": "#/components/schemas/LolRegaliaLeagueTier"
},
"rankedSplitRewardLevel": {
"format": "int32",
"type": "integer"
},
"regalia": {
"$ref": "#/components/schemas/LolRegaliaRegaliaSettings"
}
},
"type": "object"
},
"LolRegaliaItemKey": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRegaliaLeagueDivision": {
"enum": [
"I",
"II",
"III",
"IV",
"V",
"NA"
],
"type": "string"
},
"LolRegaliaLeagueQueueType": {
"enum": [
"NONE",
"RANKED_SOLO_5x5",
"RANKED_FLEX_SR",
"RANKED_FLEX_TT",
"RANKED_TFT",
"RANKED_TFT_TURBO",
"RANKED_TFT_PAIRS"
],
"type": "string"
},
"LolRegaliaLeagueTier": {
"enum": [
"NONE",
"IRON",
"BRONZE",
"SILVER",
"GOLD",
"PLATINUM",
"DIAMOND",
"MASTER",
"GRANDMASTER",
"CHALLENGER"
],
"type": "string"
},
"LolRegaliaLoadout": {
"properties": {
"id": {
"type": "string"
},
"loadout": {
"$ref": "#/components/schemas/LolRegaliaRegaliaLoadout"
},
"name": {
"type": "string"
},
"scope": {
"type": "string"
}
},
"type": "object"
},
"LolRegaliaRankedQueueStats": {
"properties": {
"division": {
"$ref": "#/components/schemas/LolRegaliaLeagueDivision"
},
"isProvisional": {
"type": "boolean"
},
"queueType": {
"$ref": "#/components/schemas/LolRegaliaLeagueQueueType"
},
"tier": {
"$ref": "#/components/schemas/LolRegaliaLeagueTier"
}
},
"type": "object"
},
"LolRegaliaRankedStats": {
"properties": {
"highestPreviousSeasonAchievedTier": {
"$ref": "#/components/schemas/LolRegaliaLeagueTier"
},
"highestRankedEntry": {
"$ref": "#/components/schemas/LolRegaliaRankedQueueStats"
},
"queues": {
"items": {
"$ref": "#/components/schemas/LolRegaliaRankedQueueStats"
},
"type": "array"
},
"rankedRegaliaLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRegaliaRegalia": {
"properties": {
"bannerType": {
"type": "string"
},
"crestType": {
"type": "string"
},
"highestRankedEntry": {
"$ref": "#/components/schemas/LolRegaliaRegaliaRankedEntry"
},
"lastSeasonHighestRank": {
"$ref": "#/components/schemas/LolRegaliaLeagueTier"
},
"profileIconId": {
"format": "int32",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRegaliaRegaliaAsync": {
"properties": {
"md5": {
"type": "string"
}
},
"type": "object"
},
"LolRegaliaRegaliaBannerType": {
"enum": [
"blank",
"lastSeasonHighestRank"
],
"type": "string"
},
"LolRegaliaRegaliaCrestType": {
"enum": [
"none",
"prestige",
"ranked"
],
"type": "string"
},
"LolRegaliaRegaliaFrontendConfig": {
"properties": {
"hovercardEnabled": {
"type": "boolean"
},
"selectionsEnabled": {
"type": "boolean"
}
},
"type": "object"
},
"LolRegaliaRegaliaLoadout": {
"properties": {
"REGALIA_BANNER_SLOT": {
"$ref": "#/components/schemas/LolRegaliaItemKey"
},
"REGALIA_CREST_SLOT": {
"$ref": "#/components/schemas/LolRegaliaItemKey"
}
},
"type": "object"
},
"LolRegaliaRegaliaPlatformConfig": {
"properties": {
"HovercardEnabled": {
"type": "boolean"
},
"SelectionsEnabled": {
"type": "boolean"
}
},
"type": "object"
},
"LolRegaliaRegaliaPreferences": {
"properties": {
"preferredBannerType": {
"type": "string"
},
"preferredCrestType": {
"type": "string"
}
},
"type": "object"
},
"LolRegaliaRegaliaRankedEntry": {
"properties": {
"division": {
"$ref": "#/components/schemas/LolRegaliaLeagueDivision"
},
"queueType": {
"$ref": "#/components/schemas/LolRegaliaLeagueQueueType"
},
"splitRewardLevel": {
"format": "int32",
"type": "integer"
},
"tier": {
"$ref": "#/components/schemas/LolRegaliaLeagueTier"
}
},
"type": "object"
},
"LolRegaliaRegaliaSettings": {
"properties": {
"bannerType": {
"$ref": "#/components/schemas/LolRegaliaRegaliaBannerType"
},
"crestType": {
"$ref": "#/components/schemas/LolRegaliaRegaliaCrestType"
}
},
"type": "object"
},
"LolRegaliaRegaliaSettingsExternal": {
"properties": {
"bannerType": {
"format": "int32",
"type": "integer"
},
"crestType": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRegaliaRegaliaWithPreferences": {
"properties": {
"bannerType": {
"type": "string"
},
"crestType": {
"type": "string"
},
"highestRankedEntry": {
"$ref": "#/components/schemas/LolRegaliaRegaliaRankedEntry"
},
"lastSeasonHighestRank": {
"$ref": "#/components/schemas/LolRegaliaLeagueTier"
},
"preferredBannerType": {
"type": "string"
},
"preferredCrestType": {
"type": "string"
},
"profileIconId": {
"format": "int32",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRegaliaSummoner": {
"properties": {
"profileIconId": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRegaliaSummonerProfile": {
"properties": {
"regalia": {
"type": "string"
}
},
"type": "object"
},
"LolRegaliaSummonerProfileUpdate": {
"properties": {
"key": {
"type": "string"
},
"value": {
"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": "#/components/schemas/LolReplaysGameflowGameClient"
},
"phase": {
"$ref": "#/components/schemas/LolReplaysGameflowPhase"
}
},
"type": "object"
},
"LolReplaysGameflowWatchPhase": {
"enum": [
"None",
"WatchStarted",
"WatchInProgress",
"WatchFailedToLaunch"
],
"type": "string"
},
"LolReplaysInstallPaths": {
"properties": {
"gameExecutablePath": {
"type": "string"
},
"gameInstallRoot": {
"type": "string"
}
},
"type": "object"
},
"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": "#/components/schemas/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": "#/components/schemas/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"
},
"LolRewardsGrantStatus": {
"enum": [
"PENDING_FULFILLMENT",
"PENDING_SELECTION",
"FULFILLED",
"FAILED"
],
"type": "string"
},
"LolRewardsGrantorDescription": {
"properties": {
"appName": {
"type": "string"
},
"entityId": {
"type": "string"
}
},
"type": "object"
},
"LolRewardsRMSPayload": {
"properties": {
"affinities": {
"items": {
"type": "string"
},
"type": "array"
},
"productId": {
"type": "string"
}
},
"type": "object"
},
"LolRewardsRegionLocale": {
"properties": {
"locale": {
"type": "string"
},
"region": {
"type": "string"
}
},
"type": "object"
},
"LolRewardsRequestDTO-SelectionRequestDTO": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolRewardsSelectionRequestDTO"
},
"metadata": {
"$ref": "#/components/schemas/LolRewardsRequestMetadataDTO"
}
},
"type": "object"
},
"LolRewardsRequestMetadataDTO": {
"properties": {
"transactionId": {
"type": "string"
}
},
"type": "object"
},
"LolRewardsResponseDTO-SvcRewardGrant": {
"properties": {
"data": {
"$ref": "#/components/schemas/LolRewardsSvcRewardGrant"
},
"metadata": {
"$ref": "#/components/schemas/LolRewardsResponseMetadataDTO"
}
},
"type": "object"
},
"LolRewardsResponseDTO-vector-SvcRewardGrant": {
"properties": {
"data": {
"items": {
"$ref": "#/components/schemas/LolRewardsSvcRewardGrant"
},
"type": "array"
},
"metadata": {
"$ref": "#/components/schemas/LolRewardsResponseMetadataDTO"
}
},
"type": "object"
},
"LolRewardsResponseDTO-vector-SvcRewardGroup": {
"properties": {
"data": {
"items": {
"$ref": "#/components/schemas/LolRewardsSvcRewardGroup"
},
"type": "array"
},
"metadata": {
"$ref": "#/components/schemas/LolRewardsResponseMetadataDTO"
}
},
"type": "object"
},
"LolRewardsResponseMetadataDTO": {
"properties": {},
"type": "object"
},
"LolRewardsReward": {
"properties": {
"fulfillmentSource": {
"type": "string"
},
"id": {
"type": "string"
},
"itemId": {
"type": "string"
},
"itemType": {
"type": "string"
},
"localizations": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"media": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"quantity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRewardsRewardGrant": {
"properties": {
"info": {
"$ref": "#/components/schemas/LolRewardsSvcRewardGrant"
},
"rewardGroup": {
"$ref": "#/components/schemas/LolRewardsSvcRewardGroup"
}
},
"type": "object"
},
"LolRewardsRewardStatus": {
"enum": [
"PENDING",
"FULFILLED",
"FAILED"
],
"type": "string"
},
"LolRewardsRewardStrategy": {
"enum": [
"ALL",
"RANDOM",
"SELECTION"
],
"type": "string"
},
"LolRewardsRewardsConfig": {
"properties": {
"Enabled": {
"type": "boolean"
}
},
"type": "object"
},
"LolRewardsSelectionRequestDTO": {
"properties": {
"rewardGroupId": {
"type": "string"
},
"selections": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolRewardsSelectionStrategyConfig": {
"properties": {
"maxSelectionsAllowed": {
"format": "int32",
"type": "integer"
},
"minSelectionsAllowed": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolRewardsSvcRewardGrant": {
"properties": {
"grantElements": {
"items": {
"$ref": "#/components/schemas/LolRewardsSvcRewardGrantElement"
},
"type": "array"
},
"granteeId": {
"type": "string"
},
"grantorDescription": {
"$ref": "#/components/schemas/LolRewardsGrantorDescription"
},
"id": {
"type": "string"
},
"rewardGroupId": {
"type": "string"
},
"selectedIds": {
"items": {
"type": "string"
},
"type": "array"
},
"status": {
"$ref": "#/components/schemas/LolRewardsGrantStatus"
},
"viewed": {
"type": "boolean"
}
},
"type": "object"
},
"LolRewardsSvcRewardGrantElement": {
"properties": {
"elementId": {
"type": "string"
},
"fulfillmentSource": {
"type": "string"
},
"itemId": {
"type": "string"
},
"itemType": {
"type": "string"
},
"localizations": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"media": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"status": {
"$ref": "#/components/schemas/LolRewardsRewardStatus"
}
},
"type": "object"
},
"LolRewardsSvcRewardGroup": {
"properties": {
"active": {
"type": "boolean"
},
"childRewardGroupIds": {
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"type": "string"
},
"internalName": {
"type": "string"
},
"localizations": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"media": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"productId": {
"type": "string"
},
"rewardStrategy": {
"$ref": "#/components/schemas/LolRewardsRewardStrategy"
},
"rewards": {
"items": {
"$ref": "#/components/schemas/LolRewardsReward"
},
"type": "array"
},
"selectionStrategyConfig": {
"$ref": "#/components/schemas/LolRewardsSelectionStrategyConfig"
},
"types": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolRiotMessagingServiceChampionMasteryLevelUp": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"championLevel": {
"format": "int64",
"type": "integer"
},
"hasLeveledUp": {
"type": "boolean"
},
"id": {
"format": "int64",
"type": "integer"
},
"playerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolRiotMessagingServiceGameflowPhase": {
"enum": [
"None",
"Lobby",
"Matchmaking",
"CheckedIntoTournament",
"ReadyCheck",
"ChampSelect",
"GameStart",
"FailedToLaunch",
"InProgress",
"Reconnect",
"WaitingForStats",
"PreEndOfGame",
"EndOfGame",
"TerminatedInError"
],
"type": "string"
},
"LolRiotMessagingServiceGameflowSession": {
"properties": {
"phase": {
"$ref": "#/components/schemas/LolRiotMessagingServiceGameflowPhase"
}
},
"type": "object"
},
"LolRiotclientUpgraderGameflowAvailability": {
"properties": {
"isAvailable": {
"type": "boolean"
},
"state": {
"type": "string"
}
},
"type": "object"
},
"LolRsoAuthAccessToken": {
"properties": {
"expiry": {
"format": "int64",
"type": "integer"
},
"scopes": {
"items": {
"type": "string"
},
"type": "array"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"LolRsoAuthAuthError": {
"properties": {
"error": {
"type": "string"
},
"errorDescription": {
"type": "string"
}
},
"type": "object"
},
"LolRsoAuthAuthHint": {
"properties": {
"context": {
"additionalProperties": true,
"type": "object"
},
"required": {
"type": "boolean"
},
"type": {
"$ref": "#/components/schemas/LolRsoAuthAuthHintType"
}
},
"type": "object"
},
"LolRsoAuthAuthHintType": {
"enum": [
"email_verification",
"password_reset",
"parental_consent",
"ambiguous_username"
],
"type": "string"
},
"LolRsoAuthAuthorization": {
"properties": {
"currentAccountId": {
"format": "int64",
"type": "integer"
},
"currentPlatformId": {
"type": "string"
},
"subject": {
"type": "string"
}
},
"type": "object"
},
"LolRsoAuthAuthorizationRequest": {
"properties": {
"claims": {
"items": {
"type": "string"
},
"type": "array"
},
"clientId": {
"type": "string"
},
"scope": {
"items": {
"type": "string"
},
"type": "array"
},
"trustLevels": {
"items": {
"$ref": "#/components/schemas/LolRsoAuthRSOAuthorizationTrustLevel"
},
"type": "array"
}
},
"type": "object"
},
"LolRsoAuthAuthorizationResponse": {
"properties": {
"authorization": {
"$ref": "#/components/schemas/LolRsoAuthImplicitAuthorization"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolRsoAuthConfigReadinessEnum": {
"enum": [
"NotReady",
"Ready",
"Disabled"
],
"type": "string"
},
"LolRsoAuthConfigStatus": {
"properties": {
"readiness": {
"$ref": "#/components/schemas/LolRsoAuthConfigReadinessEnum"
}
},
"type": "object"
},
"LolRsoAuthConfigType": {
"enum": [
"public",
"player"
],
"type": "string"
},
"LolRsoAuthDeviceId": {
"properties": {
"collectorServerName": {
"type": "string"
},
"frameUrl": {
"type": "string"
},
"installId": {
"type": "string"
},
"merchantId": {
"type": "string"
},
"sessionId": {
"type": "string"
}
},
"type": "object"
},
"LolRsoAuthEntitlementsToken": {
"properties": {
"entitlements": {
"items": {
"type": "string"
},
"type": "array"
},
"expiry": {
"format": "int64",
"type": "integer"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"LolRsoAuthIdToken": {
"properties": {
"expiry": {
"format": "int64",
"type": "integer"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"LolRsoAuthImplicitAuthorization": {
"properties": {
"accessToken": {
"$ref": "#/components/schemas/LolRsoAuthAccessToken"
},
"idToken": {
"$ref": "#/components/schemas/LolRsoAuthIdToken"
}
},
"type": "object"
},
"LolRsoAuthPublicClientConfig": {
"properties": {
"clientId": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"LolRsoAuthRSOAuthorizationTrustLevel": {
"enum": [
"always_trusted",
"trusted_device",
"always_verify"
],
"type": "string"
},
"LolRsoAuthRSOConfigReadyState": {
"properties": {
"ready": {
"type": "boolean"
}
},
"type": "object"
},
"LolRsoAuthRSOJWTConfig": {
"properties": {
"token": {
"type": "string"
}
},
"type": "object"
},
"LolRsoAuthRSOPlayerCredentials": {
"properties": {
"password": {
"type": "string"
},
"platformId": {
"type": "string"
},
"username": {
"type": "string"
}
},
"type": "object"
},
"LolRsoAuthRegionStatus": {
"properties": {
"enabled": {
"type": "boolean"
},
"isLQFallbackAllowed": {
"type": "boolean"
},
"isUserInfoEnabled": {
"type": "boolean"
},
"platformId": {
"type": "string"
}
},
"type": "object"
},
"LolRsoAuthSessionResponse": {
"properties": {
"error": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LolRsoAuthUserInfo": {
"properties": {
"userInfo": {
"type": "string"
}
},
"type": "object"
},
"LolServiceStatusBroadcastMessage": {
"properties": {
"content": {
"type": "string"
},
"messageKey": {
"type": "string"
},
"severity": {
"type": "string"
}
},
"type": "object"
},
"LolServiceStatusBroadcastNotification": {
"properties": {
"broadcastMessages": {
"items": {
"$ref": "#/components/schemas/LolServiceStatusBroadcastMessage"
},
"type": "array"
}
},
"type": "object"
},
"LolServiceStatusLegacyServiceStatusMessage": {
"properties": {
"content": {
"type": "string"
},
"created_at": {
"type": "string"
},
"heading": {
"type": "string"
},
"severity": {
"type": "string"
},
"translations": {
"items": {
"$ref": "#/components/schemas/LolServiceStatusLegacyServiceStatusTranslation"
},
"type": "array"
},
"updated_at": {
"type": "string"
}
},
"type": "object"
},
"LolServiceStatusLegacyServiceStatusResponse": {
"properties": {
"messages": {
"items": {
"$ref": "#/components/schemas/LolServiceStatusLegacyServiceStatusMessage"
},
"type": "array"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"LolServiceStatusLegacyServiceStatusTranslation": {
"properties": {
"content": {
"type": "string"
},
"heading": {
"type": "string"
},
"locale": {
"type": "string"
}
},
"type": "object"
},
"LolServiceStatusLoginDataPacket": {
"properties": {
"broadcastNotification": {
"$ref": "#/components/schemas/LolServiceStatusBroadcastNotification"
}
},
"type": "object"
},
"LolServiceStatusRegionLocaleResource": {
"properties": {
"locale": {
"type": "string"
},
"region": {
"type": "string"
}
},
"type": "object"
},
"LolServiceStatusRiotStatusIncident": {
"properties": {
"archive_at": {
"type": "string"
},
"created_at": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"incident_severity": {
"type": "string"
},
"platforms": {
"items": {
"type": "string"
},
"type": "array"
},
"titles": {
"items": {
"$ref": "#/components/schemas/LolServiceStatusRiotStatusTitle"
},
"type": "array"
},
"updated_at": {
"type": "string"
},
"updates": {
"items": {
"$ref": "#/components/schemas/LolServiceStatusRiotStatusUpdate"
},
"type": "array"
}
},
"type": "object"
},
"LolServiceStatusRiotStatusMaintenance": {
"properties": {
"archive_at": {
"type": "string"
},
"created_at": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"maintenance_status": {
"type": "string"
},
"platforms": {
"items": {
"type": "string"
},
"type": "array"
},
"titles": {
"items": {
"$ref": "#/components/schemas/LolServiceStatusRiotStatusTitle"
},
"type": "array"
},
"updated_at": {
"type": "string"
},
"updates": {
"items": {
"$ref": "#/components/schemas/LolServiceStatusRiotStatusUpdate"
},
"type": "array"
}
},
"type": "object"
},
"LolServiceStatusRiotStatusResource": {
"properties": {
"id": {
"type": "string"
},
"incidents": {
"items": {
"$ref": "#/components/schemas/LolServiceStatusRiotStatusIncident"
},
"type": "array"
},
"locales": {
"items": {
"type": "string"
},
"type": "array"
},
"maintenances": {
"items": {
"$ref": "#/components/schemas/LolServiceStatusRiotStatusMaintenance"
},
"type": "array"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolServiceStatusRiotStatusTitle": {
"properties": {
"content": {
"type": "string"
},
"locale": {
"type": "string"
}
},
"type": "object"
},
"LolServiceStatusRiotStatusTranslation": {
"properties": {
"content": {
"type": "string"
},
"locale": {
"type": "string"
}
},
"type": "object"
},
"LolServiceStatusRiotStatusUpdate": {
"properties": {
"author": {
"type": "string"
},
"created_at": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"publish": {
"type": "boolean"
},
"publish_locations": {
"items": {
"type": "string"
},
"type": "array"
},
"translations": {
"items": {
"$ref": "#/components/schemas/LolServiceStatusRiotStatusTranslation"
},
"type": "array"
},
"updated_at": {
"type": "string"
}
},
"type": "object"
},
"LolServiceStatusServiceStatusResource": {
"properties": {
"humanReadableUrl": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"LolServiceStatusTickerMessage": {
"properties": {
"createdAt": {
"type": "string"
},
"heading": {
"type": "string"
},
"message": {
"type": "string"
},
"severity": {
"type": "string"
},
"updatedAt": {
"type": "string"
}
},
"type": "object"
},
"LolSettingsLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"gasToken": {
"additionalProperties": true,
"type": "object"
},
"state": {
"$ref": "#/components/schemas/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"
},
"LolShutdownShutdownNotification": {
"properties": {
"additionalInfo": {
"type": "string"
},
"countdown": {
"format": "float",
"type": "number"
},
"reason": {
"$ref": "#/components/schemas/LolShutdownShutdownReason"
}
},
"type": "object"
},
"LolShutdownShutdownReason": {
"enum": [
"Invalid",
"PlatformMaintenance",
"LcuAlphaDisabled",
"PlayerBanned"
],
"type": "string"
},
"LolSimpleDialogMessagesGameflowPhase": {
"enum": [
"None",
"Lobby",
"Matchmaking",
"CheckedIntoTournament",
"ReadyCheck",
"ChampSelect",
"GameStart",
"FailedToLaunch",
"InProgress",
"Reconnect",
"WaitingForStats",
"PreEndOfGame",
"EndOfGame",
"TerminatedInError"
],
"type": "string"
},
"LolSimpleDialogMessagesGameflowSession": {
"properties": {
"phase": {
"$ref": "#/components/schemas/LolSimpleDialogMessagesGameflowPhase"
}
},
"type": "object"
},
"LolSimpleDialogMessagesLocalMessageRequest": {
"properties": {
"msgBody": {
"items": {
"type": "string"
},
"type": "array"
},
"msgType": {
"type": "string"
}
},
"type": "object"
},
"LolSimpleDialogMessagesLoginDataPacket": {
"properties": {
"simpleMessages": {
"items": {
"$ref": "#/components/schemas/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"
},
"LolSocialLeaderboardFriendResource": {
"properties": {
"availability": {
"type": "string"
},
"icon": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolSocialLeaderboardGiftingFriend": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolSocialLeaderboardLeagueDivision": {
"enum": [
"I",
"II",
"III",
"IV",
"V",
"NA"
],
"type": "string"
},
"LolSocialLeaderboardLeagueQueueType": {
"enum": [
"NONE",
"RANKED_SOLO_5x5",
"RANKED_FLEX_SR",
"RANKED_FLEX_TT",
"RANKED_TFT",
"RANKED_TFT_TURBO",
"RANKED_TFT_PAIRS"
],
"type": "string"
},
"LolSocialLeaderboardLeagueTier": {
"enum": [
"NONE",
"IRON",
"BRONZE",
"SILVER",
"GOLD",
"PLATINUM",
"DIAMOND",
"MASTER",
"GRANDMASTER",
"CHALLENGER"
],
"type": "string"
},
"LolSocialLeaderboardRankedQueueStats": {
"properties": {
"division": {
"$ref": "#/components/schemas/LolSocialLeaderboardLeagueDivision"
},
"isProvisional": {
"type": "boolean"
},
"leaguePoints": {
"format": "int32",
"type": "integer"
},
"provisionalGamesRemaining": {
"format": "int32",
"type": "integer"
},
"queueType": {
"$ref": "#/components/schemas/LolSocialLeaderboardLeagueQueueType"
},
"tier": {
"$ref": "#/components/schemas/LolSocialLeaderboardLeagueTier"
},
"wins": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolSocialLeaderboardRankedStats": {
"properties": {
"queueMap": {
"additionalProperties": {
"$ref": "#/components/schemas/LolSocialLeaderboardRankedQueueStats"
},
"type": "object"
}
},
"type": "object"
},
"LolSocialLeaderboardSocialLeaderboardData": {
"properties": {
"nextUpdateTime": {
"format": "int64",
"type": "integer"
},
"rowData": {
"items": {
"$ref": "#/components/schemas/LolSocialLeaderboardSocialLeaderboardRowData"
},
"type": "array"
}
},
"type": "object"
},
"LolSocialLeaderboardSocialLeaderboardRowData": {
"properties": {
"availability": {
"type": "string"
},
"division": {
"$ref": "#/components/schemas/LolSocialLeaderboardLeagueDivision"
},
"isGiftable": {
"type": "boolean"
},
"isProvisional": {
"type": "boolean"
},
"leaderboardPosition": {
"format": "int32",
"type": "integer"
},
"leaguePoints": {
"format": "int32",
"type": "integer"
},
"profileIconId": {
"format": "int32",
"type": "integer"
},
"provisionalGamesRemaining": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
},
"summonerName": {
"type": "string"
},
"tier": {
"$ref": "#/components/schemas/LolSocialLeaderboardLeagueTier"
},
"wins": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolSocialLeaderboardSummoner": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"displayName": {
"type": "string"
},
"internalName": {
"type": "string"
},
"profileIconId": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolSpectatorSpectateGameInfo": {
"properties": {
"allowObserveMode": {
"type": "string"
},
"dropInSpectateGameId": {
"type": "string"
},
"gameQueueType": {
"type": "string"
},
"puuid": {
"type": "string"
}
},
"type": "object"
},
"LolSpectatorSummonerOrTeamAvailabilty": {
"properties": {
"availableForWatching": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolStatstonesCatalogBundle": {
"properties": {
"item": {
"$ref": "#/components/schemas/LolStatstonesCatalogItemDetails"
}
},
"type": "object"
},
"LolStatstonesCatalogBundlePrice": {
"properties": {
"cost": {
"format": "int32",
"type": "integer"
},
"currency": {
"type": "string"
}
},
"type": "object"
},
"LolStatstonesCatalogItemDetails": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"itemInstanceId": {
"type": "string"
},
"prices": {
"items": {
"$ref": "#/components/schemas/LolStatstonesCatalogBundlePrice"
},
"type": "array"
},
"releaseDate": {
"type": "string"
},
"subInventoryType": {
"type": "string"
}
},
"type": "object"
},
"LolStatstonesChampionStatstoneSetSummary": {
"properties": {
"milestonesPassed": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"stonesAvailable": {
"format": "int32",
"type": "integer"
},
"stonesIlluminated": {
"format": "int32",
"type": "integer"
},
"stonesOwned": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolStatstonesChampionStatstoneSummary": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"milestonesPassed": {
"format": "int32",
"type": "integer"
},
"sets": {
"items": {
"$ref": "#/components/schemas/LolStatstonesChampionStatstoneSetSummary"
},
"type": "array"
},
"stonesAvailable": {
"format": "int32",
"type": "integer"
},
"stonesIlluminated": {
"format": "int32",
"type": "integer"
},
"stonesOwned": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolStatstonesCollectionsChampion": {
"properties": {
"id": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"squarePortraitPath": {
"type": "string"
}
},
"type": "object"
},
"LolStatstonesEogNotificationEnvelope": {
"properties": {
"othersPersonalBests": {
"items": {
"$ref": "#/components/schemas/LolStatstonesPersonalBestNotification"
},
"type": "array"
},
"selfMilestoneProgress": {
"items": {
"$ref": "#/components/schemas/LolStatstonesMilestoneProgressNotification"
},
"type": "array"
},
"selfPersonalBests": {
"items": {
"$ref": "#/components/schemas/LolStatstonesPersonalBestNotification"
},
"type": "array"
},
"selfStatstoneProgress": {
"items": {
"$ref": "#/components/schemas/LolStatstonesStatstoneProgress"
},
"type": "array"
}
},
"type": "object"
},
"LolStatstonesGameDataItemReference": {
"properties": {
"contentId": {
"type": "string"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolStatstonesGameDataStatstone": {
"properties": {
"boundChampion": {
"$ref": "#/components/schemas/LolStatstonesGameDataItemReference"
},
"category": {
"type": "string"
},
"contentId": {
"type": "string"
},
"description": {
"type": "string"
},
"iconFull": {
"type": "string"
},
"iconLit": {
"type": "string"
},
"iconUnlit": {
"type": "string"
},
"iconUnowned": {
"type": "string"
},
"isEpic": {
"type": "boolean"
},
"isRetired": {
"type": "boolean"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"milestones": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"name": {
"type": "string"
},
"trackingType": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolStatstonesGameDataStatstonePack": {
"properties": {
"contentId": {
"type": "string"
},
"description": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"LolStatstonesGameDataStatstoneSet": {
"properties": {
"contentId": {
"type": "string"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"price": {
"format": "int32",
"type": "integer"
},
"statstones": {
"items": {
"$ref": "#/components/schemas/LolStatstonesGameDataStatstone"
},
"type": "array"
}
},
"type": "object"
},
"LolStatstonesGameDataStatstonesInfo": {
"properties": {
"champIdToPackIds": {
"additionalProperties": true,
"type": "object"
},
"collectionIdToStatStoneIds": {
"additionalProperties": true,
"type": "object"
},
"packData": {
"items": {
"$ref": "#/components/schemas/LolStatstonesGameDataStatstonePack"
},
"type": "array"
},
"packIdToChampIds": {
"additionalProperties": true,
"type": "object"
},
"packIdToStatStonesIds": {
"additionalProperties": true,
"type": "object"
},
"packIdToSubPackIds": {
"additionalProperties": true,
"type": "object"
},
"seriesIdToStatStoneIds": {
"additionalProperties": true,
"type": "object"
},
"statstoneData": {
"items": {
"$ref": "#/components/schemas/LolStatstonesGameDataStatstoneSet"
},
"type": "array"
}
},
"type": "object"
},
"LolStatstonesLoadout": {
"properties": {
"id": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"loadout": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
},
"name": {
"type": "string"
},
"scope": {
"type": "string"
}
},
"type": "object"
},
"LolStatstonesLoadoutItem": {
"properties": {
"contentId": {
"type": "string"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolStatstonesMilestoneNotificationDto": {
"properties": {
"isCompleted": {
"type": "boolean"
},
"level": {
"format": "int32",
"type": "integer"
},
"statstoneId": {
"type": "string"
},
"threshold": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolStatstonesMilestoneProgressNotification": {
"properties": {
"imageUrl": {
"type": "string"
},
"level": {
"type": "string"
},
"statstoneId": {
"type": "string"
},
"statstoneName": {
"type": "string"
},
"threshold": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolStatstonesNumberFormattingBehavior": {
"properties": {
"digitsForThousandsSeperator": {
"format": "int32",
"type": "integer"
},
"trimTrailingZerosAfterDecimal": {
"type": "boolean"
},
"westernNumberGrouping": {
"type": "boolean"
}
},
"type": "object"
},
"LolStatstonesNumberFormattingData": {
"properties": {
"billionAbbreviation": {
"type": "string"
},
"decimalSeperator": {
"type": "string"
},
"hourAbbreviation": {
"type": "string"
},
"kilometersAbbreviation": {
"type": "string"
},
"metersAbbreviation": {
"type": "string"
},
"millionAbbreviation": {
"type": "string"
},
"minuteAbbreviation": {
"type": "string"
},
"numberFormattingBehavior": {
"$ref": "#/components/schemas/LolStatstonesNumberFormattingBehavior"
},
"oneHundredMillionAbbreviation": {
"type": "string"
},
"percentageFormat": {
"type": "string"
},
"secondAbbreviation": {
"type": "string"
},
"tenThousandAbbreviation": {
"type": "string"
},
"thousandAbbreviation": {
"type": "string"
},
"thousandSeperator": {
"type": "string"
},
"trillionAbbreviation": {
"type": "string"
}
},
"type": "object"
},
"LolStatstonesPersonalBestNotification": {
"properties": {
"imageUrl": {
"type": "string"
},
"personalBest": {
"type": "string"
},
"statstoneId": {
"type": "string"
},
"statstoneName": {
"type": "string"
},
"summoner": {
"$ref": "#/components/schemas/LolStatstonesSummoner"
}
},
"type": "object"
},
"LolStatstonesPriceInfo": {
"properties": {
"currency": {
"type": "string"
},
"price": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolStatstonesProfileStatstoneSummary": {
"properties": {
"category": {
"type": "string"
},
"championId": {
"format": "int32",
"type": "integer"
},
"imageUrl": {
"type": "string"
},
"name": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LolStatstonesStatstone": {
"properties": {
"boundChampionItemId": {
"format": "int32",
"type": "integer"
},
"category": {
"type": "string"
},
"completionValue": {
"format": "float",
"type": "number"
},
"description": {
"type": "string"
},
"formattedMilestoneLevel": {
"type": "string"
},
"formattedPersonalBest": {
"type": "string"
},
"formattedValue": {
"type": "string"
},
"imageUrl": {
"type": "string"
},
"isComplete": {
"type": "boolean"
},
"isEpic": {
"type": "boolean"
},
"isFeatured": {
"type": "boolean"
},
"isRetired": {
"type": "boolean"
},
"name": {
"type": "string"
},
"nextMilestone": {
"type": "string"
},
"playerRecord": {
"$ref": "#/components/schemas/LolStatstonesStatstonePlayerRecord"
},
"statstoneId": {
"type": "string"
}
},
"type": "object"
},
"LolStatstonesStatstoneCompletion": {
"properties": {
"category": {
"type": "string"
},
"isEpic": {
"type": "boolean"
},
"statstoneName": {
"type": "string"
}
},
"type": "object"
},
"LolStatstonesStatstoneFeaturedRequest": {
"properties": {
"existingFeatured": {
"items": {
"$ref": "#/components/schemas/LolStatstonesStatstone"
},
"type": "array"
},
"index": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolStatstonesStatstoneMasteryVignette": {
"properties": {
"completedSetUuids": {
"items": {
"type": "string"
},
"type": "array"
},
"masteryLevel": {
"format": "int32",
"type": "integer"
},
"numSetsCompleted": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
}
},
"type": "object"
},
"LolStatstonesStatstoneNotificationDto": {
"properties": {
"best": {
"format": "int32",
"type": "integer"
},
"delta": {
"format": "int32",
"type": "integer"
},
"isNewBest": {
"type": "boolean"
},
"level": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"statstoneId": {
"type": "string"
},
"value": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolStatstonesStatstoneNotificationEnvelopeDto": {
"properties": {
"gameId": {
"format": "int64",
"type": "integer"
},
"milestones": {
"items": {
"$ref": "#/components/schemas/LolStatstonesMilestoneNotificationDto"
},
"type": "array"
},
"updates": {
"items": {
"$ref": "#/components/schemas/LolStatstonesStatstoneNotificationDto"
},
"type": "array"
}
},
"type": "object"
},
"LolStatstonesStatstonePlayerRecord": {
"properties": {
"dateAcquired": {
"type": "string"
},
"dateArchived": {
"type": "string"
},
"dateCompleted": {
"type": "string"
},
"dateModified": {
"type": "string"
},
"entitled": {
"type": "boolean"
},
"milestoneLevel": {
"format": "int32",
"type": "integer"
},
"personalBest": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"statstoneId": {
"type": "string"
},
"value": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolStatstonesStatstoneProgress": {
"properties": {
"best": {
"format": "int32",
"type": "integer"
},
"category": {
"type": "string"
},
"delta": {
"type": "string"
},
"description": {
"type": "string"
},
"existingProgressPercent": {
"type": "string"
},
"imageUrl": {
"type": "string"
},
"isNewBest": {
"type": "boolean"
},
"level": {
"format": "int32",
"type": "integer"
},
"newMilestoneDifference": {
"type": "string"
},
"newProgressPercent": {
"type": "string"
},
"nextMilestone": {
"type": "string"
},
"statstoneId": {
"type": "string"
},
"statstoneName": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LolStatstonesStatstoneRekindledVignette": {
"properties": {
"portraitPath": {
"type": "string"
},
"statstone": {
"$ref": "#/components/schemas/LolStatstonesStatstoneCompletion"
}
},
"type": "object"
},
"LolStatstonesStatstoneSet": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"itemInstanceID": {
"type": "string"
},
"milestonesPassed": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"ownedFromPacks": {
"items": {
"$ref": "#/components/schemas/LolStatstonesGameDataStatstonePack"
},
"type": "array"
},
"prices": {
"items": {
"$ref": "#/components/schemas/LolStatstonesPriceInfo"
},
"type": "array"
},
"statstones": {
"items": {
"$ref": "#/components/schemas/LolStatstonesStatstone"
},
"type": "array"
},
"stonesOwned": {
"format": "int32",
"type": "integer"
},
"subInventoryType": {
"type": "string"
}
},
"type": "object"
},
"LolStatstonesStatstoneSetCompleteVignette": {
"properties": {
"statstones": {
"items": {
"$ref": "#/components/schemas/LolStatstonesStatstoneCompletion"
},
"type": "array"
}
},
"type": "object"
},
"LolStatstonesStatstoneVignetteNotificationEnvelopeDto": {
"properties": {
"champId": {
"format": "int32",
"type": "integer"
},
"champName": {
"type": "string"
},
"masteryVignetteNotifications": {
"items": {
"$ref": "#/components/schemas/LolStatstonesStatstoneMasteryVignette"
},
"type": "array"
},
"rekindledVignetteNotifications": {
"items": {
"$ref": "#/components/schemas/LolStatstonesStatstoneRekindledVignette"
},
"type": "array"
},
"setCompleteVignetteNotifications": {
"items": {
"$ref": "#/components/schemas/LolStatstonesStatstoneSetCompleteVignette"
},
"type": "array"
}
},
"type": "object"
},
"LolStatstonesSummoner": {
"properties": {
"displayName": {
"type": "string"
},
"puuid": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolStoreAccessTokenResource": {
"properties": {
"expiry": {
"format": "int64",
"type": "integer"
},
"scopes": {
"items": {
"type": "string"
},
"type": "array"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"LolStoreAllSummonerData": {
"properties": {
"summoner": {
"$ref": "#/components/schemas/LolStoreSummoner"
},
"summonerLevelAndPoints": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolStoreBundledItem"
},
"type": "array"
},
"minimumPrices": {
"items": {
"$ref": "#/components/schemas/LolStoreBundledItemCost"
},
"type": "array"
}
},
"type": "object"
},
"LolStoreBundledItem": {
"properties": {
"discountPrices": {
"items": {
"$ref": "#/components/schemas/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"
},
"LolStoreCapOffer": {
"properties": {
"active": {
"type": "boolean"
},
"createdDate": {
"type": "string"
},
"id": {
"type": "string"
},
"label": {
"type": "string"
},
"merchantId": {
"type": "string"
},
"payload": {
"items": {
"$ref": "#/components/schemas/LolStoreCapOfferPayloadEntry"
},
"type": "array"
},
"productId": {
"type": "string"
},
"startDate": {
"type": "string"
},
"typeId": {
"type": "string"
}
},
"type": "object"
},
"LolStoreCapOfferPayloadEntry": {
"properties": {
"fulfillmentTypeId": {
"type": "string"
},
"inventoryTypeUUID": {
"type": "string"
},
"itemInstanceId": {
"type": "string"
},
"itemPriceMap": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
}
},
"type": "object"
},
"LolStoreCatalogInstanceToItemKeyMap": {
"properties": {
"platformIds": {
"additionalProperties": {
"$ref": "#/components/schemas/LolStoreItemKey"
},
"type": "object"
}
},
"type": "object"
},
"LolStoreCatalogItem": {
"properties": {
"active": {
"type": "boolean"
},
"bundled": {
"$ref": "#/components/schemas/LolStoreBundled"
},
"iconUrl": {
"type": "string"
},
"inactiveDate": {
"type": "string"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"itemInstanceId": {
"type": "string"
},
"itemRequirements": {
"items": {
"$ref": "#/components/schemas/LolStoreItemKey"
},
"type": "array"
},
"localizations": {
"additionalProperties": {
"$ref": "#/components/schemas/LolStoreItemLocalization"
},
"type": "object"
},
"maxQuantity": {
"format": "int32",
"type": "integer"
},
"metadata": {
"items": {
"$ref": "#/components/schemas/LolStoreItemMetadataEntry"
},
"type": "array"
},
"offerId": {
"type": "string"
},
"prices": {
"items": {
"$ref": "#/components/schemas/LolStoreItemCost"
},
"type": "array"
},
"releaseDate": {
"type": "string"
},
"sale": {
"$ref": "#/components/schemas/LolStoreSale"
},
"subInventoryType": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolStoreFeaturedPageDTO": {
"properties": {
"Player": {
"$ref": "#/components/schemas/LolStorePlayer"
}
},
"type": "object"
},
"LolStoreGetPlatformIdsFromInstanceIdsRequest": {
"properties": {
"instanceIds": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolStoreGiftableResult": {
"properties": {
"config": {
"$ref": "#/components/schemas/LolStoreGiftingConfig"
},
"friends": {
"items": {
"$ref": "#/components/schemas/LolStoreGiftingFriend"
},
"type": "array"
}
},
"type": "object"
},
"LolStoreGiftingConfig": {
"properties": {
"giftingHextecMaxDailyGiftsReceive": {
"format": "int32",
"type": "integer"
},
"giftingHextechMaxDailyGiftsSend": {
"format": "int32",
"type": "integer"
},
"giftingItemMaxDailyGiftsReceive": {
"format": "int32",
"type": "integer"
},
"giftingItemMaxDailyGiftsSend": {
"format": "int32",
"type": "integer"
},
"giftingItemMinLevelSend": {
"format": "int32",
"type": "integer"
},
"giftingRestrictionFlagRioter": {
"format": "int32",
"type": "integer"
},
"giftingRpMaxDailyGiftsReceive": {
"format": "int32",
"type": "integer"
},
"giftingRpMaxDailyGiftsSend": {
"format": "int32",
"type": "integer"
},
"giftingRpMinLevelSend": {
"format": "int32",
"type": "integer"
},
"recipientLevelLimitItem": {
"format": "int32",
"type": "integer"
},
"recipientLevelLimitRp": {
"format": "int32",
"type": "integer"
},
"requiresIdentityVerification": {
"type": "boolean"
}
},
"type": "object"
},
"LolStoreGiftingFriend": {
"properties": {
"friendsSince": {
"type": "string"
},
"nick": {
"type": "string"
},
"oldFriends": {
"type": "boolean"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"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"
},
"LolStoreItemMetadataEntry": {
"properties": {
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"LolStoreItemSale": {
"properties": {
"active": {
"type": "boolean"
},
"id": {
"format": "int64",
"type": "integer"
},
"item": {
"$ref": "#/components/schemas/LolStoreItemKey"
},
"sale": {
"$ref": "#/components/schemas/LolStoreSale"
}
},
"type": "object"
},
"LolStoreLoginDataPacket": {
"properties": {
"allSummonerData": {
"$ref": "#/components/schemas/LolStoreAllSummonerData"
},
"simpleMessages": {
"items": {
"$ref": "#/components/schemas/LolStoreSimpleDialogMessage"
},
"type": "array"
}
},
"type": "object"
},
"LolStoreLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"gasToken": {
"additionalProperties": true,
"type": "object"
},
"idToken": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolStorePlayer"
},
"catalog": {
"items": {
"$ref": "#/components/schemas/LolStoreCatalogItem"
},
"type": "array"
},
"groupOrder": {
"items": {
"type": "string"
},
"type": "array"
},
"itemGroups": {
"additionalProperties": {
"$ref": "#/components/schemas/LolStorePageGroupingDTO"
},
"type": "object"
}
},
"type": "object"
},
"LolStorePageGroupingDTO": {
"properties": {
"grouped": {
"type": "boolean"
},
"hidden": {
"type": "boolean"
},
"items": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/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"
},
"LolStoreStoreStatus": {
"properties": {
"storefrontIsRunning": {
"type": "boolean"
}
},
"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": "#/components/schemas/LolSuggestedPlayersEndOfGameTeam"
},
"type": "array"
}
},
"type": "object"
},
"LolSuggestedPlayersEndOfGameTeam": {
"properties": {
"isWinningTeam": {
"type": "boolean"
},
"players": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/LolSuggestedPlayersSuggestedPlayersConfig"
}
},
"type": "object"
},
"LolSuggestedPlayersSuggestedPlayersFriend": {
"properties": {
"availability": {
"type": "string"
},
"name": {
"type": "string"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"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": "#/components/schemas/LolSuggestedPlayersSuggestedPlayersLobbyStatus"
},
"lastQueuedLobbyStatus": {
"$ref": "#/components/schemas/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": "#/components/schemas/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"
},
"LolSummonerAccountIdAndSummonerId": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolSummonerAutoFillQueueDto": {
"properties": {
"autoFillEligible": {
"type": "boolean"
},
"autoFillProtectedForPromos": {
"type": "boolean"
},
"autoFillProtectedForStreaking": {
"type": "boolean"
},
"queueId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolSummonerGameloopPlayerInfoV2": {
"properties": {
"autoFillDataBags": {
"items": {
"$ref": "#/components/schemas/LolSummonerAutoFillQueueDto"
},
"type": "array"
},
"rerollDataBags": {
"items": {
"$ref": "#/components/schemas/LolSummonerRerollDataBagForClientV1"
},
"type": "array"
}
},
"type": "object"
},
"LolSummonerLevelField": {
"properties": {
"finalLevel": {
"format": "int32",
"type": "integer"
},
"initialLevel": {
"format": "int32",
"type": "integer"
},
"progress": {
"$ref": "#/components/schemas/LolSummonerLevelProgression"
}
},
"type": "object"
},
"LolSummonerLevelProgression": {
"properties": {
"finalLevelBoundary": {
"format": "int64",
"type": "integer"
},
"finalXp": {
"format": "int64",
"type": "integer"
},
"initialLevelBoundary": {
"format": "int64",
"type": "integer"
},
"initialXp": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolSummonerLoginSession": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"connected": {
"type": "boolean"
},
"puuid": {
"type": "string"
},
"state": {
"$ref": "#/components/schemas/LolSummonerLoginSessionStates"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolSummonerLoginSessionStates": {
"enum": [
"IN_PROGRESS",
"SUCCEEDED",
"LOGGING_OUT",
"ERROR"
],
"type": "string"
},
"LolSummonerProfilePrivacy": {
"properties": {
"enabledState": {
"$ref": "#/components/schemas/LolSummonerProfilePrivacyEnabledState"
},
"setting": {
"$ref": "#/components/schemas/LolSummonerProfilePrivacySetting"
}
},
"type": "object"
},
"LolSummonerProfilePrivacyEnabledState": {
"enum": [
"UNKNOWN",
"ENABLED",
"DISABLED"
],
"type": "string"
},
"LolSummonerProfilePrivacySetting": {
"enum": [
"PRIVATE",
"PUBLIC"
],
"type": "string"
},
"LolSummonerRerollDataBagForClientV1": {
"properties": {
"maximumRerolls": {
"format": "int32",
"type": "integer"
},
"pointCostOfReroll": {
"format": "int32",
"type": "integer"
},
"pointsUntilNextReroll": {
"format": "int32",
"type": "integer"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"rerollCount": {
"format": "int32",
"type": "integer"
},
"totalPoints": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolSummonerStatus": {
"properties": {
"ready": {
"type": "boolean"
}
},
"type": "object"
},
"LolSummonerSummoner": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"displayName": {
"type": "string"
},
"internalName": {
"type": "string"
},
"nameChangeFlag": {
"type": "boolean"
},
"percentCompleteForNextLevel": {
"format": "int32",
"type": "integer"
},
"privacy": {
"$ref": "#/components/schemas/LolSummonerProfilePrivacySetting"
},
"profileIconId": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"rerollPoints": {
"$ref": "#/components/schemas/LolSummonerSummonerRerollPoints"
},
"summonerId": {
"format": "int64",
"type": "integer"
},
"summonerLevel": {
"format": "int32",
"type": "integer"
},
"unnamed": {
"type": "boolean"
},
"xpSinceLastLevel": {
"format": "int64",
"type": "integer"
},
"xpUntilNextLevel": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolSummonerSummonerCacheData": {
"properties": {
"privacy": {
"$ref": "#/components/schemas/LolSummonerProfilePrivacySetting"
},
"summoner": {
"$ref": "#/components/schemas/LolSummonerSummoner"
},
"summonerIcon": {
"format": "int32",
"type": "integer"
},
"summonerName": {
"type": "string"
}
},
"type": "object"
},
"LolSummonerSummonerCreateRequest": {
"properties": {
"summonerName": {
"type": "string"
}
},
"type": "object"
},
"LolSummonerSummonerCreatedId": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolSummonerSummonerDTO": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"expPoints": {
"format": "int32",
"type": "integer"
},
"expToNextLevel": {
"format": "int32",
"type": "integer"
},
"id": {
"format": "int64",
"type": "integer"
},
"level": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"nameChangeFlag": {
"type": "boolean"
},
"partnerId": {
"type": "string"
},
"privacy": {
"$ref": "#/components/schemas/LolSummonerProfilePrivacySetting"
},
"profileIconId": {
"format": "int32",
"type": "integer"
},
"puuid": {
"type": "string"
},
"unnamed": {
"type": "boolean"
}
},
"type": "object"
},
"LolSummonerSummonerIcon": {
"properties": {
"inventoryToken": {
"type": "string"
},
"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": "int32",
"type": "integer"
},
"maxRolls": {
"format": "int32",
"type": "integer"
},
"numberOfRolls": {
"format": "int32",
"type": "integer"
},
"pointsCostToRoll": {
"format": "int32",
"type": "integer"
},
"pointsToReroll": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolSummonerSummonerSession": {
"properties": {
"displayName": {
"type": "string"
},
"isNewPlayer": {
"type": "boolean"
},
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolSummonerXpAndLevelMessage": {
"properties": {
"level": {
"$ref": "#/components/schemas/LolSummonerLevelField"
},
"xp": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"LolTastesDataModelResponse": {
"properties": {
"modelData": {
"additionalProperties": true,
"type": "object"
},
"responseCode": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolTftLolTftHubFooterColors": {
"properties": {
"bottomColor": {
"type": "string"
},
"lineColor": {
"type": "string"
},
"topColor": {
"type": "string"
}
},
"type": "object"
},
"LolTftLolTftStorePromos": {
"properties": {
"battlePassOfferIds": {
"items": {
"type": "string"
},
"type": "array"
},
"storePromoOfferIds": {
"items": {
"type": "string"
},
"type": "array"
},
"tacticianPromoOfferIds": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"LolTrophiesCapClashTrophyEntitlementPayload": {
"properties": {
"rewardSpec": {
"$ref": "#/components/schemas/LolTrophiesClashV2TrophyRewardSpec"
},
"rewardType": {
"type": "string"
}
},
"type": "object"
},
"LolTrophiesClashV2TrophyRewardSpec": {
"properties": {
"bracket": {
"type": "string"
},
"cup": {
"type": "string"
},
"gem": {
"type": "string"
},
"pedestal": {
"type": "string"
},
"seasonId": {
"type": "string"
},
"theme": {
"type": "string"
},
"tier": {
"type": "string"
}
},
"type": "object"
},
"LolTrophiesInventoryItemsByType": {
"properties": {
"TOURNAMENT_TROPHY": {
"items": {
"$ref": "#/components/schemas/LolTrophiesTournamentTrophyInventoryItem"
},
"type": "array"
}
},
"type": "object"
},
"LolTrophiesInventoryResponse": {
"properties": {
"items": {
"$ref": "#/components/schemas/LolTrophiesInventoryItemsByType"
}
},
"type": "object"
},
"LolTrophiesLoadout": {
"properties": {
"id": {
"type": "string"
},
"loadout": {
"additionalProperties": {
"$ref": "#/components/schemas/LolTrophiesLoadoutItem"
},
"type": "object"
},
"name": {
"type": "string"
},
"scope": {
"type": "string"
}
},
"type": "object"
},
"LolTrophiesLoadoutItem": {
"properties": {
"data": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LolTrophiesOtherPlayerTrophyInventoryItem": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"payload": {
"$ref": "#/components/schemas/LolTrophiesCapClashTrophyEntitlementPayload"
},
"purchaseDate": {
"type": "string"
},
"uuid": {
"type": "string"
}
},
"type": "object"
},
"LolTrophiesTournamentTrophyInventoryItem": {
"properties": {
"payload": {
"$ref": "#/components/schemas/LolTrophiesCapClashTrophyEntitlementPayload"
},
"purchaseDate": {
"type": "string"
}
},
"type": "object"
},
"LolTrophiesTrophyProfileData": {
"properties": {
"bracket": {
"format": "int64",
"type": "integer"
},
"cup": {
"type": "string"
},
"gem": {
"type": "string"
},
"pedestal": {
"type": "string"
},
"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": "#/components/schemas/LolUserExperienceGameflowPhase"
}
},
"type": "object"
},
"LolWorldsTokenCardAccountIdAndSummonerId": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"LolWorldsTokenCardInventoryItem": {
"properties": {
"inventoryType": {
"type": "string"
},
"itemId": {
"format": "int32",
"type": "integer"
},
"ownershipType": {
"$ref": "#/components/schemas/LolWorldsTokenCardItemOwnershipType"
},
"purchaseDate": {
"type": "string"
},
"quantity": {
"format": "int64",
"type": "integer"
},
"uuid": {
"type": "string"
}
},
"type": "object"
},
"LolWorldsTokenCardItemOwnershipType": {
"enum": [
"OWNED",
"RENTED",
"LOYALTY",
"F2P"
],
"type": "string"
},
"LolWorldsTokenCardLootDataGdsResource": {
"properties": {
"LootTokenBankCards": {
"items": {
"$ref": "#/components/schemas/LolWorldsTokenCardLootTokenBankCardGdsResource"
},
"type": "array"
}
},
"type": "object"
},
"LolWorldsTokenCardLootTokenBankCardGdsResource": {
"properties": {
"activationDate": {
"type": "string"
},
"backsplashImagePath": {
"type": "string"
},
"buttonText": {
"type": "string"
},
"deactivationDate": {
"type": "string"
},
"lootItemName": {
"type": "string"
},
"nonPremiumCapCurrencyId": {
"type": "string"
},
"premiumCapCurrencyId": {
"type": "string"
},
"storeLinkItem": {
"type": "string"
},
"storeLinkType": {
"type": "string"
},
"titleText": {
"type": "string"
},
"tokenIconPath": {
"type": "string"
},
"tooltipDescriptionText": {
"type": "string"
},
"tooltipSplashPath": {
"type": "string"
},
"tooltipTitleText": {
"type": "string"
},
"unlockItemId": {
"type": "string"
},
"unlockItemType": {
"type": "string"
}
},
"type": "object"
},
"LolWorldsTokenCardTokenUpsell": {
"properties": {
"backgroundUrl": {
"type": "string"
},
"buttonText": {
"type": "string"
},
"currencyUrl": {
"type": "string"
},
"currentlyLocked": {
"$ref": "#/components/schemas/LolWorldsTokenCardTokenUpsellLockedType"
},
"dependentInventoryId": {
"format": "int32",
"type": "integer"
},
"dependentInventoryType": {
"type": "string"
},
"endDate": {
"type": "string"
},
"id": {
"type": "string"
},
"internalName": {
"type": "string"
},
"lockedCount": {
"format": "int32",
"type": "integer"
},
"premiumCurrencyName": {
"type": "string"
},
"purchaseUrl": {
"type": "string"
},
"startDate": {
"type": "string"
},
"title": {
"type": "string"
},
"tooltipBackgroundUrl": {
"type": "string"
},
"tooltipDescription": {
"type": "string"
},
"tooltipTitle": {
"type": "string"
}
},
"type": "object"
},
"LolWorldsTokenCardTokenUpsellLockedType": {
"enum": [
"UNASSIGNED",
"UNLOCKED",
"LOCKED"
],
"type": "string"
},
"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": "#/components/schemas/LootItemClientDTO"
},
"type": "array"
}
},
"type": "object"
},
"LootLcdsClientConfigurationDTO": {
"properties": {
"currenciesUsingCapWallets": {
"items": {
"type": "string"
},
"type": "array"
},
"disabledRedemptions": {
"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": "#/components/schemas/LootLcdsRecipeMetadata"
},
"outputs": {
"items": {
"$ref": "#/components/schemas/LootLcdsRecipeOutputDTO"
},
"type": "array"
},
"recipeName": {
"type": "string"
},
"slots": {
"items": {
"$ref": "#/components/schemas/LootLcdsRecipeSlotClientDTO"
},
"type": "array"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"LootLcdsRecipeListClientDTO": {
"properties": {
"lastUpdate": {
"format": "int64",
"type": "integer"
},
"recipes": {
"items": {
"$ref": "#/components/schemas/LootLcdsRecipeClientDTO"
},
"type": "array"
}
},
"type": "object"
},
"LootLcdsRecipeMetadata": {
"properties": {
"bonusDescriptions": {
"items": {
"$ref": "#/components/schemas/LootLcdsLootDescriptionDTO"
},
"type": "array"
},
"guaranteedDescriptions": {
"items": {
"$ref": "#/components/schemas/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"
},
"LootLedgerRecipeConfigMap": {
"properties": {
"lastUpdate": {
"format": "int64",
"type": "integer"
},
"lootLedgerRecipeDTOMap": {
"additionalProperties": {
"$ref": "#/components/schemas/LootLedgerRecipeConfiguration"
},
"type": "object"
}
},
"type": "object"
},
"LootLedgerRecipeConfiguration": {
"properties": {
"activationTime": {
"type": "string"
},
"active": {
"type": "boolean"
},
"counterUuids": {
"items": {
"type": "string"
},
"type": "array"
},
"deactivationTime": {
"type": "string"
},
"ledgerUuid": {
"type": "string"
},
"recipeName": {
"type": "string"
}
},
"type": "object"
},
"LootNameRefId": {
"properties": {
"lootName": {
"type": "string"
},
"refId": {
"type": "string"
}
},
"type": "object"
},
"LootOddsDTO": {
"properties": {
"children": {
"items": {
"$ref": "#/components/schemas/LootOddsDTO"
},
"type": "array"
},
"dropRate": {
"format": "double",
"type": "number"
},
"label": {
"type": "string"
},
"lootId": {
"type": "string"
},
"lootOrder": {
"format": "int32",
"type": "integer"
},
"parentId": {
"type": "string"
},
"quantity": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"LootSimpleDialogMessageResponse": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"command": {
"type": "string"
},
"msgId": {
"type": "string"
}
},
"type": "object"
},
"MatchedPlayerDTO": {
"properties": {
"captain": {
"$ref": "#/components/schemas/PlayerInfoDTO"
},
"players": {
"items": {
"$ref": "#/components/schemas/PlayerInfoDTO"
},
"type": "array"
},
"rosterId": {
"type": "string"
}
},
"type": "object"
},
"MatchmakingLcdsBustedLeaver": {
"properties": {
"accessToken": {
"type": "string"
},
"leaverPenaltyMillisRemaining": {
"format": "int64",
"type": "integer"
},
"reasonFailed": {
"type": "string"
},
"summoner": {
"$ref": "#/components/schemas/MatchmakingLcdsSummoner"
}
},
"type": "object"
},
"MatchmakingLcdsFailedJoinPlayer": {
"properties": {
"reasonFailed": {
"type": "string"
},
"summoner": {
"$ref": "#/components/schemas/MatchmakingLcdsSummoner"
}
},
"type": "object"
},
"MatchmakingLcdsGameDTO": {
"properties": {
"gameState": {
"type": "string"
},
"statusOfParticipants": {
"type": "string"
},
"teamOne": {
"items": {
"$ref": "#/components/schemas/MatchmakingLcdsPlayerParticipant"
},
"type": "array"
},
"teamTwo": {
"items": {
"$ref": "#/components/schemas/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": "#/components/schemas/MatchmakingLcdsSummoner"
}
},
"type": "object"
},
"MatchmakingLcdsQueueDodger": {
"properties": {
"dodgePenaltyRemainingTime": {
"format": "int64",
"type": "integer"
},
"reasonFailed": {
"type": "string"
},
"summoner": {
"$ref": "#/components/schemas/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": "#/components/schemas/MatchmakingLcdsSummoner"
}
},
"type": "object"
},
"MatchmakingLcdsQueueThrottled": {
"properties": {
"message": {
"type": "string"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"reasonFailed": {
"type": "string"
},
"summoner": {
"$ref": "#/components/schemas/MatchmakingLcdsSummoner"
}
},
"type": "object"
},
"MatchmakingLcdsSearchingForMatchNotification": {
"properties": {
"joinedQueues": {
"items": {
"$ref": "#/components/schemas/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"
},
"MemberBanUnbanTournament": {
"properties": {
"tournamentId": {
"format": "int64",
"type": "integer"
},
"tournamentPhaseLockInTime": {
"format": "int64",
"type": "integer"
},
"tournamentnameLocKey": {
"type": "string"
},
"tournamentnameLocKeySecondary": {
"type": "string"
}
},
"type": "object"
},
"MetricDataType": {
"enum": [
"unknown",
"int",
"uint",
"float",
"bool",
"string"
],
"type": "string"
},
"MetricMetadata": {
"properties": {
"alerts": {
"items": {
"$ref": "#/components/schemas/MetricMetadataAlert"
},
"type": "array"
},
"category": {
"type": "string"
},
"data_type": {
"$ref": "#/components/schemas/MetricDataType"
},
"description": {
"type": "string"
},
"destination": {
"type": "string"
},
"info": {
"type": "string"
},
"notify": {
"$ref": "#/components/schemas/MetricMetadataNotify"
},
"period": {
"format": "int32",
"type": "integer"
},
"pretty_name": {
"type": "string"
},
"priority": {
"$ref": "#/components/schemas/MetricPriority"
},
"sample_window_ms": {
"format": "int32",
"type": "integer"
},
"transientAggregation": {
"$ref": "#/components/schemas/AggregationType"
},
"type": {
"$ref": "#/components/schemas/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": "#/components/schemas/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": "#/components/schemas/MetricMetadataHipchatNotification"
},
"type": "array"
},
"pagerduty": {
"items": {
"$ref": "#/components/schemas/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"
},
"MissionDisplay": {
"properties": {
"attributes": {
"items": {
"type": "string"
},
"type": "array"
},
"locations": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"MissionMetadata": {
"properties": {
"level": {
"format": "int32",
"type": "integer"
},
"npeRewardPack": {
"$ref": "#/components/schemas/NpeRewardPackMetadata"
},
"tutorial": {
"$ref": "#/components/schemas/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"
},
"MissionsCompressedPayloadDTO": {
"properties": {
"missionsCompressed": {
"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": "#/components/schemas/ReplayMetadataV2"
},
"status": {
"$ref": "#/components/schemas/ReplayResponseStatus"
}
},
"type": "object"
},
"MultipleReplayMetadataResponseV2": {
"properties": {
"metadataResponses": {
"items": {
"$ref": "#/components/schemas/MultipleReplayMetadataResponseItemV2"
},
"type": "array"
}
},
"type": "object"
},
"NonTimingEventV1": {
"properties": {
"eventName": {
"description": "event name",
"type": "string"
},
"unit": {
"description": "unit of measurement",
"type": "string"
},
"value": {
"description": "event value",
"type": "string"
},
"when": {
"description": "timestamp in microseconds of when the event occurred",
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"NpeReward": {
"properties": {
"data": {
"additionalProperties": true,
"type": "object"
},
"renderer": {
"type": "string"
}
},
"type": "object"
},
"NpeRewardPackMetadata": {
"properties": {
"index": {
"format": "int32",
"type": "integer"
},
"majorReward": {
"$ref": "#/components/schemas/NpeReward"
},
"minorRewards": {
"items": {
"$ref": "#/components/schemas/NpeReward"
},
"type": "array"
},
"premiumReward": {
"type": "boolean"
},
"rewardKey": {
"type": "string"
}
},
"type": "object"
},
"OpenedTeamDTO": {
"properties": {
"captainId": {
"format": "int64",
"type": "integer"
},
"invitationId": {
"type": "string"
},
"invitees": {
"items": {
"$ref": "#/components/schemas/PendingRosterInviteeDTO"
},
"type": "array"
},
"logo": {
"format": "int32",
"type": "integer"
},
"logoColor": {
"format": "int32",
"type": "integer"
},
"members": {
"items": {
"$ref": "#/components/schemas/OpenedTeamMemberDTO"
},
"type": "array"
},
"name": {
"type": "string"
},
"openPositions": {
"items": {
"$ref": "#/components/schemas/Position"
},
"type": "array"
},
"shortName": {
"type": "string"
},
"tier": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"OpenedTeamMemberDTO": {
"properties": {
"friendship": {
"format": "int32",
"type": "integer"
},
"playerId": {
"format": "int64",
"type": "integer"
},
"position": {
"$ref": "#/components/schemas/Position"
},
"tier": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"PartiesVoiceDTO": {
"properties": {
"jwt": {
"type": "string"
}
},
"type": "object"
},
"PatcherChunkingPatcherEnvironment": {
"properties": {
"client_patcher_available": {
"type": "boolean"
},
"client_patcher_enabled": {
"type": "boolean"
},
"game_patcher_available": {
"type": "boolean"
},
"game_patcher_enabled": {
"type": "boolean"
}
},
"type": "object"
},
"PatcherComponentActionProgress": {
"properties": {
"currentItem": {
"type": "string"
},
"network": {
"$ref": "#/components/schemas/PatcherComponentStateProgress"
},
"primaryWork": {
"$ref": "#/components/schemas/PatcherComponentStateWorkType"
},
"total": {
"$ref": "#/components/schemas/PatcherComponentStateProgress"
}
},
"type": "object"
},
"PatcherComponentState": {
"properties": {
"action": {
"$ref": "#/components/schemas/PatcherComponentStateAction"
},
"id": {
"type": "string"
},
"isCorrupted": {
"type": "boolean"
},
"isUpToDate": {
"type": "boolean"
},
"isUpdateAvailable": {
"type": "boolean"
},
"progress": {
"$ref": "#/components/schemas/PatcherComponentActionProgress"
},
"timeOfLastUpToDateCheckISO8601": {
"type": "string"
}
},
"type": "object"
},
"PatcherComponentStateAction": {
"enum": [
"Idle",
"CheckingForUpdates",
"Patching",
"Repairing",
"Migrating"
],
"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"
},
"PatcherNotification": {
"properties": {
"data": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
},
"id": {
"type": "string"
},
"notificationId": {
"$ref": "#/components/schemas/PatcherNotificationId"
}
},
"type": "object"
},
"PatcherNotificationId": {
"enum": [
"UnspecifiedError",
"ConnectionError",
"MissingFilesError",
"FailedToWriteError",
"WillRestoreClientBackupOnRestart",
"DidRestoreClientBackup",
"NotEnoughDiskSpace",
"BrokenPermissions"
],
"type": "string"
},
"PatcherP2PStatus": {
"properties": {
"isAllowedByUser": {
"type": "boolean"
},
"isEnabledForPatchline": {
"type": "boolean"
},
"requiresRestart": {
"type": "boolean"
}
},
"type": "object"
},
"PatcherP2PStatusUpdate": {
"properties": {
"isAllowedByUser": {
"type": "boolean"
}
},
"type": "object"
},
"PatcherProductResource": {
"properties": {
"id": {
"type": "string"
}
},
"type": "object"
},
"PatcherProductState": {
"properties": {
"action": {
"$ref": "#/components/schemas/PatcherComponentStateAction"
},
"components": {
"items": {
"$ref": "#/components/schemas/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"
},
"PatcherUxResource": {
"properties": {
"visible": {
"type": "boolean"
}
},
"type": "object"
},
"PaymentsFrontEndRequest": {
"properties": {
"game": {
"type": "string"
},
"gifteeAccountId": {
"type": "string"
},
"gifteeMessage": {
"type": "string"
},
"isPrepaid": {
"type": "boolean"
},
"localeId": {
"type": "string"
},
"rsoToken": {
"type": "string"
},
"summonerLevel": {
"type": "integer"
},
"usePmcSessions": {
"type": "boolean"
}
},
"type": "object"
},
"PaymentsFrontEndResult": {
"properties": {
"url": {
"type": "string"
}
},
"type": "object"
},
"PaymentsPMCStartUrlRequest": {
"properties": {
"game": {
"type": "string"
},
"gifteeAccountId": {
"type": "string"
},
"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"
},
"PendingOpenedTeamDTO": {
"properties": {
"invitationId": {
"type": "string"
},
"logo": {
"format": "int32",
"type": "integer"
},
"logoColor": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"shortName": {
"type": "string"
},
"tier": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"PendingRosterDTO": {
"properties": {
"captainId": {
"format": "int64",
"type": "integer"
},
"highTierVariance": {
"type": "boolean"
},
"invitationId": {
"type": "string"
},
"inviteFaileds": {
"items": {
"$ref": "#/components/schemas/FailedInvite"
},
"type": "array"
},
"invitees": {
"items": {
"$ref": "#/components/schemas/PendingRosterInviteeDTO"
},
"type": "array"
},
"lft": {
"type": "boolean"
},
"logo": {
"format": "int32",
"type": "integer"
},
"logoColor": {
"format": "int32",
"type": "integer"
},
"members": {
"items": {
"$ref": "#/components/schemas/PendingRosterMemberDTO"
},
"type": "array"
},
"multiUserChatJWT": {
"type": "string"
},
"name": {
"type": "string"
},
"rewardLogos": {
"items": {
"$ref": "#/components/schemas/RewardLogo"
},
"type": "array"
},
"shortName": {
"type": "string"
},
"ticketOffers": {
"items": {
"$ref": "#/components/schemas/TicketOfferDTO"
},
"type": "array"
},
"tier": {
"format": "int32",
"type": "integer"
},
"tournamentId": {
"format": "int64",
"type": "integer"
},
"version": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"PendingRosterInviteeDTO": {
"properties": {
"inviteTime": {
"format": "int64",
"type": "integer"
},
"inviteType": {
"$ref": "#/components/schemas/InviteType"
},
"inviteeId": {
"format": "int64",
"type": "integer"
},
"inviteeState": {
"$ref": "#/components/schemas/PendingRosterInviteeState"
},
"inviter": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"PendingRosterInviteeState": {
"enum": [
"SUGGESTED",
"PENDING",
"DECLINED",
"REVOKED",
"SUGGEST_DECLINED",
"SUGGEST_REVOKED",
"ACCEPTED",
"SELFJOIN",
"SELFJOIN_DECLINED",
"SELFJOIN_REVOKED"
],
"type": "string"
},
"PendingRosterMemberDTO": {
"properties": {
"bet": {
"format": "int32",
"type": "integer"
},
"betType": {
"$ref": "#/components/schemas/TicketType"
},
"joinTime": {
"format": "int64",
"type": "integer"
},
"memberState": {
"$ref": "#/components/schemas/PendingRosterMemberState"
},
"pendingPay": {
"format": "int32",
"type": "integer"
},
"pendingPremiumPay": {
"format": "int32",
"type": "integer"
},
"playerId": {
"format": "int64",
"type": "integer"
},
"position": {
"$ref": "#/components/schemas/Position"
},
"selfBet": {
"format": "int32",
"type": "integer"
},
"tier": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"PendingRosterMemberState": {
"enum": [
"NOT_READY",
"FORCED_NOT_READY",
"READY",
"LEFT",
"KICK"
],
"type": "string"
},
"PersonalizedOffersLcdsChampionDTO": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"owned": {
"type": "boolean"
}
},
"type": "object"
},
"PersonalizedOffersLcdsChampionSkinDTO": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"owned": {
"type": "boolean"
},
"skinId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"PersonalizedOffersLcdsClientDynamicConfigurationNotification": {
"properties": {
"configs": {
"type": "string"
},
"delta": {
"type": "boolean"
}
},
"type": "object"
},
"PersonalizedOffersStoreFulfillmentNotification": {
"properties": {
"data": {
"additionalProperties": true,
"type": "object"
},
"inventoryType": {
"type": "string"
}
},
"type": "object"
},
"PhaseInMember": {
"properties": {
"bet": {
"format": "int32",
"type": "integer"
},
"pendingPay": {
"format": "int32",
"type": "integer"
},
"playerId": {
"format": "int64",
"type": "integer"
},
"selfBet": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"PhaseRosterDTO": {
"properties": {
"bracketDTO": {
"$ref": "#/components/schemas/Bracket"
},
"bracketId": {
"format": "int64",
"type": "integer"
},
"checkinTime": {
"format": "int64",
"type": "integer"
},
"period": {
"format": "int32",
"type": "integer"
},
"phaseId": {
"format": "int64",
"type": "integer"
},
"phaseRosterSubs": {
"items": {
"$ref": "#/components/schemas/PhaseRosterSubDTO"
},
"type": "array"
}
},
"type": "object"
},
"PhaseRosterSubDTO": {
"properties": {
"bet": {
"format": "int32",
"type": "integer"
},
"betType": {
"$ref": "#/components/schemas/TicketType"
},
"pay": {
"format": "int32",
"type": "integer"
},
"playerId": {
"format": "int64",
"type": "integer"
},
"position": {
"$ref": "#/components/schemas/Position"
},
"premiumPay": {
"format": "int32",
"type": "integer"
},
"replacedPlayerId": {
"format": "int64",
"type": "integer"
},
"subState": {
"$ref": "#/components/schemas/SubState"
},
"tier": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"PickModes": {
"enum": [
"NOT_PICKING",
"IN_PROGRESS",
"DONE"
],
"type": "string"
},
"PlayerBehaviorLcdsForcedClientShutdown": {
"properties": {
"additionalInfo": {
"type": "string"
},
"reason": {
"type": "string"
}
},
"type": "object"
},
"PlayerBehaviorLcdsSimpleMessage": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"msgId": {
"type": "string"
},
"params": {
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"PlayerBehaviorSimpleMessageResponse": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"command": {
"type": "string"
},
"msgId": {
"type": "string"
}
},
"type": "object"
},
"PlayerDTO": {
"properties": {
"banned": {
"type": "boolean"
},
"lft": {
"type": "boolean"
},
"notifications": {
"items": {
"$ref": "#/components/schemas/ClashOfflineNotification"
},
"type": "array"
},
"primaryPos": {
"type": "string"
},
"secondaryPos": {
"type": "string"
},
"tmntLosses": {
"format": "int32",
"type": "integer"
},
"tmntWins": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"PlayerFinderDTO": {
"properties": {
"friendId": {
"format": "int64",
"type": "integer"
},
"playerId": {
"format": "int64",
"type": "integer"
},
"primaryPos": {
"$ref": "#/components/schemas/Position"
},
"secondaryPos": {
"$ref": "#/components/schemas/Position"
},
"tier": {
"format": "int32",
"type": "integer"
},
"type": {
"$ref": "#/components/schemas/PlayerFinderEnum"
}
},
"type": "object"
},
"PlayerFinderEnum": {
"enum": [
"FREEAGENT",
"FRIEND"
],
"type": "string"
},
"PlayerInfoDTO": {
"properties": {
"playerId": {
"format": "int64",
"type": "integer"
},
"position": {
"type": "string"
},
"role": {
"$ref": "#/components/schemas/Role"
},
"teamId": {
"type": "string"
}
},
"type": "object"
},
"PlayerInventory": {
"properties": {
"champions": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"icons": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"inventoryJwts": {
"items": {
"type": "string"
},
"type": "array"
},
"skins": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"wardSkins": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"PlayerLootDTO": {
"properties": {
"count": {
"format": "int32",
"type": "integer"
},
"expiryTime": {
"format": "int64",
"type": "integer"
},
"lootName": {
"type": "string"
},
"refId": {
"type": "string"
}
},
"type": "object"
},
"PlayerLootDefinitionsDTO": {
"properties": {
"lootItemList": {
"$ref": "#/components/schemas/LootItemListClientDTO"
},
"playerLoot": {
"items": {
"$ref": "#/components/schemas/PlayerLootDTO"
},
"type": "array"
},
"queryResult": {
"$ref": "#/components/schemas/QueryResultDTO"
},
"recipeList": {
"$ref": "#/components/schemas/LootLcdsRecipeListClientDTO"
}
},
"type": "object"
},
"PlayerLootResultDTO": {
"properties": {
"added": {
"items": {
"$ref": "#/components/schemas/PlayerLootDTO"
},
"type": "array"
},
"details": {
"type": "string"
},
"redeemed": {
"items": {
"type": "string"
},
"type": "array"
},
"removed": {
"items": {
"$ref": "#/components/schemas/PlayerLootDTO"
},
"type": "array"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"PlayerMissionDTO": {
"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"
},
"display": {
"$ref": "#/components/schemas/MissionDisplay"
},
"displayType": {
"type": "string"
},
"earnedDate": {
"format": "int64",
"type": "integer"
},
"endTime": {
"format": "int64",
"type": "integer"
},
"expiringWarnings": {
"items": {
"$ref": "#/components/schemas/MissionAlertDTO"
},
"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"
},
"media": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"metadata": {
"$ref": "#/components/schemas/MissionMetadata"
},
"missionType": {
"type": "string"
},
"objectives": {
"items": {
"$ref": "#/components/schemas/PlayerMissionObjectiveDTO"
},
"type": "array"
},
"requirements": {
"items": {
"type": "string"
},
"type": "array"
},
"rewardStrategy": {
"$ref": "#/components/schemas/RewardStrategy"
},
"rewards": {
"items": {
"$ref": "#/components/schemas/PlayerMissionRewardDTO"
},
"type": "array"
},
"sequence": {
"format": "int32",
"type": "integer"
},
"seriesName": {
"type": "string"
},
"startTime": {
"format": "int64",
"type": "integer"
},
"status": {
"type": "string"
},
"title": {
"type": "string"
},
"viewed": {
"type": "boolean"
}
},
"type": "object"
},
"PlayerMissionEligibilityData": {
"properties": {
"level": {
"format": "int32",
"type": "integer"
},
"loyaltyEnabled": {
"type": "boolean"
},
"playerInventory": {
"$ref": "#/components/schemas/PlayerInventory"
},
"userInfoToken": {
"type": "string"
}
},
"type": "object"
},
"PlayerMissionObjectiveDTO": {
"properties": {
"description": {
"type": "string"
},
"hasObjectiveBasedReward": {
"type": "boolean"
},
"progress": {
"$ref": "#/components/schemas/MissionProgressDTO"
},
"requirements": {
"items": {
"type": "string"
},
"type": "array"
},
"rewardGroups": {
"items": {
"type": "string"
},
"type": "array"
},
"sequence": {
"format": "int32",
"type": "integer"
},
"status": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"PlayerMissionRewardDTO": {
"properties": {
"description": {
"type": "string"
},
"iconNeedsFrame": {
"type": "boolean"
},
"iconUrl": {
"type": "string"
},
"isObjectiveBasedReward": {
"type": "boolean"
},
"itemId": {
"type": "string"
},
"media": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"rewardFulfilled": {
"type": "boolean"
},
"rewardGroup": {
"type": "string"
},
"rewardGroupSelected": {
"type": "boolean"
},
"rewardType": {
"type": "string"
},
"sequence": {
"format": "int32",
"type": "integer"
},
"smallIconUrl": {
"type": "string"
},
"uniqueName": {
"type": "string"
}
},
"type": "object"
},
"PlayerNotificationsPlayerNotificationConfigResource": {
"properties": {
"ExpirationCheckFrequency": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"PlayerNotificationsPlayerNotificationResource": {
"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"
},
"PlayerNotificationsRiotMessagingServiceMessage": {
"properties": {
"payload": {
"type": "string"
},
"resource": {
"type": "string"
},
"service": {
"type": "string"
},
"timestamp": {
"format": "int64",
"type": "integer"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"PlayerParticipant": {
"properties": {
"summonerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"PlayerRosterHistoryDTO": {
"properties": {
"rosters": {
"items": {
"$ref": "#/components/schemas/RosterMemberDTO"
},
"type": "array"
}
},
"type": "object"
},
"PlayerTierDTO": {
"properties": {
"playerId": {
"format": "int64",
"type": "integer"
},
"primaryPos": {
"$ref": "#/components/schemas/Position"
},
"secondPos": {
"$ref": "#/components/schemas/Position"
},
"tier": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"PluginDescriptionResource": {
"properties": {
"name": {
"type": "string"
},
"pluginDependencies": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"riotMeta": {
"$ref": "#/components/schemas/PluginMetadataResource"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"PluginLcdsEvent": {
"properties": {
"body": {
"additionalProperties": true,
"type": "object"
},
"clientId": {
"type": "string"
},
"subtopic": {
"type": "string"
},
"typeName": {
"type": "string"
}
},
"type": "object"
},
"PluginLcdsResponse": {
"properties": {
"body": {
"additionalProperties": true,
"type": "object"
},
"typeName": {
"type": "string"
}
},
"type": "object"
},
"PluginManagerResource": {
"properties": {
"state": {
"$ref": "#/components/schemas/PluginManagerState"
}
},
"type": "object"
},
"PluginManagerState": {
"enum": [
"NotReady",
"PluginsInitialized"
],
"type": "string"
},
"PluginMetadataResource": {
"properties": {
"app": {
"type": "string"
},
"feature": {
"type": "string"
},
"globalAssetBundles": {
"items": {
"type": "string"
},
"type": "array"
},
"hasBundledAssets": {
"type": "boolean"
},
"implements": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"mock": {
"type": "string"
},
"perLocaleAssetBundles": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
},
"subtype": {
"type": "string"
},
"threading": {
"$ref": "#/components/schemas/PluginThreadingModel"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"PluginRegionLocaleChangedEvent": {
"properties": {
"locale": {
"type": "string"
},
"region": {
"type": "string"
}
},
"type": "object"
},
"PluginResource": {
"properties": {
"app": {
"type": "string"
},
"assetBundleNames": {
"items": {
"type": "string"
},
"type": "array"
},
"dependencies": {
"items": {
"$ref": "#/components/schemas/PluginResourceContract"
},
"type": "array"
},
"feature": {
"type": "string"
},
"fullName": {
"type": "string"
},
"implementedContracts": {
"items": {
"$ref": "#/components/schemas/PluginResourceContract"
},
"type": "array"
},
"mountedAssetBundles": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"orderWADFileMounted": {
"format": "int32",
"type": "integer"
},
"shortName": {
"type": "string"
},
"subtype": {
"type": "string"
},
"supertype": {
"type": "string"
},
"threadingModel": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"PluginResourceContract": {
"properties": {
"fullName": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"PluginResourceEvent": {
"properties": {
"data": {
"additionalProperties": true,
"type": "object"
},
"eventType": {
"$ref": "#/components/schemas/PluginResourceEventType"
},
"uri": {
"type": "string"
}
},
"type": "object"
},
"PluginResourceEventType": {
"enum": [
"Create",
"Update",
"Delete"
],
"type": "string"
},
"PluginServiceProxyResponse": {
"properties": {
"error": {
"type": "string"
},
"methodName": {
"type": "string"
},
"payload": {
"type": "string"
},
"serviceName": {
"type": "string"
},
"status": {
"type": "string"
},
"uuid": {
"type": "string"
}
},
"type": "object"
},
"PluginThreadingModel": {
"enum": [
"dedicated",
"sequential",
"concurrent",
"parallel"
],
"type": "string"
},
"Position": {
"enum": [
"TOP",
"MIDDLE",
"BOTTOM",
"JUNGLE",
"UTILITY",
"FILL",
"UNSELECTED"
],
"type": "string"
},
"ProcessControlProcess": {
"properties": {
"restart-countdown-seconds": {
"format": "float",
"type": "number"
},
"status": {
"type": "string"
}
},
"type": "object"
},
"PublicPhaseSubDTO": {
"properties": {
"playerId": {
"format": "int64",
"type": "integer"
},
"replacedPlayerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"PublicPhaseSubsDTO": {
"properties": {
"phaseId": {
"format": "int64",
"type": "integer"
},
"phaseSubs": {
"items": {
"$ref": "#/components/schemas/PublicPhaseSubDTO"
},
"type": "array"
}
},
"type": "object"
},
"PublicRosterDTO": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"logo": {
"format": "int32",
"type": "integer"
},
"logoColor": {
"format": "int32",
"type": "integer"
},
"memberIds": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"name": {
"type": "string"
},
"phasesSubs": {
"items": {
"$ref": "#/components/schemas/PublicPhaseSubsDTO"
},
"type": "array"
},
"shortName": {
"type": "string"
},
"tournamentId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"Punishment": {
"properties": {
"permaBan": {
"type": "boolean"
},
"playerFacingMessage": {
"type": "string"
},
"punishedForChatLogs": {
"items": {
"type": "string"
},
"type": "array"
},
"punishedForGameIds": {
"items": {
"format": "int64",
"type": "integer"
},
"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"
},
"QueryResultDTO": {
"properties": {
"lastUpdate": {
"format": "int64",
"type": "integer"
},
"queryToLootNames": {
"additionalProperties": true,
"type": "object"
}
},
"type": "object"
},
"RankedScoutingDTO": {
"properties": {
"playerId": {
"format": "int64",
"type": "integer"
},
"topMasteries": {
"items": {
"$ref": "#/components/schemas/ChampionMasteryPublicDTO"
},
"type": "array"
},
"topSeasonChampions": {
"items": {
"$ref": "#/components/schemas/ChampionScoutingDTO"
},
"type": "array"
},
"totalMasteryScore": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"RankedScoutingMemberDTO": {
"properties": {
"championScoutingData": {
"items": {
"$ref": "#/components/schemas/RankedScoutingTopChampionDTO"
},
"type": "array"
},
"playerId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"RankedScoutingTopChampionDTO": {
"properties": {
"championId": {
"format": "int32",
"type": "integer"
},
"gameCount": {
"format": "int32",
"type": "integer"
},
"kda": {
"format": "float",
"type": "number"
},
"rank": {
"format": "int32",
"type": "integer"
},
"winCount": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"RedeemLootTransactionDTO": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"clientId": {
"type": "string"
},
"lootName": {
"type": "string"
},
"playerId": {
"format": "int64",
"type": "integer"
},
"puuid": {
"type": "string"
}
},
"type": "object"
},
"RegionLocale": {
"properties": {
"locale": {
"type": "string"
},
"region": {
"type": "string"
},
"webLanguage": {
"type": "string"
},
"webRegion": {
"type": "string"
}
},
"type": "object"
},
"RemotingHelpFormat": {
"description": "Help format for remoting functions and types.",
"enum": [
"Full",
"Epytext",
"Brief",
"Console"
],
"type": "string"
},
"RemotingPrivilege": {
"description": "Well-known privilege levels for bindable functions.",
"enum": [
"None",
"User",
"Admin",
"Local"
],
"type": "string"
},
"RemotingSerializedFormat": {
"description": "Serialization format for remoting requests and results.",
"enum": [
"JSON",
"YAML",
"MsgPack"
],
"type": "string"
},
"ReplayMetadataV2": {
"properties": {
"fileSize": {
"format": "int32",
"type": "integer"
},
"gameVersion": {
"type": "string"
}
},
"type": "object"
},
"ReplayResponseStatus": {
"enum": [
"OK",
"NOT_FOUND",
"EXPIRED",
"BAD_REQUEST",
"INTERNAL_SERVER_ERROR"
],
"type": "string"
},
"RewardDetails": {
"properties": {
"rosterId": {
"format": "int64",
"type": "integer"
},
"teamMemberIds": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"tournamentId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"RewardLogo": {
"properties": {
"logo": {
"format": "int32",
"type": "integer"
},
"memberOwnedCount": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"RewardStrategy": {
"properties": {
"groupStrategy": {
"type": "string"
},
"selectMaxGroupCount": {
"type": "integer"
},
"selectMinGroupCount": {
"type": "integer"
}
},
"type": "object"
},
"RiotMessagingServiceAcknowledgeBody": {
"properties": {
"id": {
"type": "string"
}
},
"type": "object"
},
"RiotMessagingServiceEntitlementsToken": {
"properties": {
"accessToken": {
"type": "string"
},
"entitlements": {
"items": {
"type": "string"
},
"type": "array"
},
"issuer": {
"type": "string"
},
"subject": {
"type": "string"
},
"token": {
"type": "string"
}
},
"type": "object"
},
"RiotMessagingServicePluginRegionLocaleChangedEvent": {
"properties": {
"locale": {
"type": "string"
},
"region": {
"type": "string"
}
},
"type": "object"
},
"RiotMessagingServiceSession": {
"properties": {
"state": {
"$ref": "#/components/schemas/RiotMessagingServiceState"
},
"token": {
"type": "string"
},
"tokenType": {
"$ref": "#/components/schemas/RiotMessagingServiceTokenType"
}
},
"type": "object"
},
"RiotMessagingServiceState": {
"enum": [
"Disconnecting",
"Disconnected",
"Connecting",
"Connected"
],
"type": "string"
},
"RiotMessagingServiceTokenType": {
"enum": [
"Unavailable",
"Access",
"Identity"
],
"type": "string"
},
"RmsMessage": {
"properties": {
"ackRequired": {
"type": "boolean"
},
"id": {
"type": "string"
},
"payload": {
"type": "string"
},
"resource": {
"type": "string"
},
"service": {
"type": "string"
},
"timestamp": {
"format": "int64",
"type": "integer"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"Role": {
"enum": [
"CAPTAIN",
"MEMBER",
"NONE"
],
"type": "string"
},
"RosterAggregatedStatsDTO": {
"properties": {
"periodStats": {
"items": {
"$ref": "#/components/schemas/RosterPeriodAggregatedStatsDTO"
},
"type": "array"
},
"playerStats": {
"additionalProperties": {
"$ref": "#/components/schemas/RosterPlayerAggregatedStatsDTO"
},
"type": "object"
}
},
"type": "object"
},
"RosterDTO": {
"properties": {
"banned": {
"type": "boolean"
},
"captainId": {
"format": "int64",
"type": "integer"
},
"dynamicState": {
"$ref": "#/components/schemas/RosterDynamicStateDTO"
},
"eliminated": {
"type": "boolean"
},
"id": {
"format": "int64",
"type": "integer"
},
"invitationId": {
"type": "string"
},
"logo": {
"format": "int32",
"type": "integer"
},
"logoColor": {
"format": "int32",
"type": "integer"
},
"losses": {
"format": "int32",
"type": "integer"
},
"members": {
"items": {
"$ref": "#/components/schemas/RosterMemberDTO"
},
"type": "array"
},
"multiUserChatJWT": {
"type": "string"
},
"name": {
"type": "string"
},
"phases": {
"items": {
"$ref": "#/components/schemas/PhaseRosterDTO"
},
"type": "array"
},
"points": {
"format": "int32",
"type": "integer"
},
"shortName": {
"type": "string"
},
"tier": {
"format": "int32",
"type": "integer"
},
"tournamentId": {
"format": "int64",
"type": "integer"
},
"version": {
"format": "int32",
"type": "integer"
},
"wins": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"RosterDynamicStateDTO": {
"properties": {
"members": {
"items": {
"$ref": "#/components/schemas/PhaseInMember"
},
"type": "array"
},
"phaseCheckinStates": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"phaseRosterSubs": {
"items": {
"$ref": "#/components/schemas/PhaseRosterSubDTO"
},
"type": "array"
},
"rosterId": {
"format": "int64",
"type": "integer"
},
"subbedMemberIds": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"ticketOffers": {
"items": {
"$ref": "#/components/schemas/TicketOfferDTO"
},
"type": "array"
},
"tournamentId": {
"format": "int64",
"type": "integer"
},
"version": {
"format": "int32",
"type": "integer"
},
"withdraw": {
"$ref": "#/components/schemas/RosterWithdraw"
}
},
"type": "object"
},
"RosterMatchAggregatedStatsDTO": {
"properties": {
"duration": {
"format": "int64",
"type": "integer"
},
"gameId": {
"format": "int64",
"type": "integer"
},
"kills": {
"format": "int32",
"type": "integer"
},
"loserBracket": {
"type": "boolean"
},
"opponentKills": {
"format": "int32",
"type": "integer"
},
"opponentLogo": {
"format": "int32",
"type": "integer"
},
"opponentLogoColor": {
"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"
},
"RosterMemberDTO": {
"properties": {
"bidType": {
"$ref": "#/components/schemas/TicketType"
},
"currentBid": {
"format": "int32",
"type": "integer"
},
"joinTime": {
"format": "int64",
"type": "integer"
},
"pendingPremiumSpend": {
"format": "int32",
"type": "integer"
},
"pendingSpend": {
"format": "int32",
"type": "integer"
},
"playerId": {
"format": "int64",
"type": "integer"
},
"position": {
"$ref": "#/components/schemas/Position"
},
"rosterId": {
"format": "int64",
"type": "integer"
},
"tier": {
"format": "int32",
"type": "integer"
},
"tournamentId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"RosterPeriodAggregatedStatsDTO": {
"properties": {
"bracketSize": {
"format": "int32",
"type": "integer"
},
"matchStats": {
"items": {
"$ref": "#/components/schemas/RosterMatchAggregatedStatsDTO"
},
"type": "array"
},
"period": {
"format": "int32",
"type": "integer"
},
"playerBids": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
},
"time": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"RosterPlayerAggregatedStatsDTO": {
"properties": {
"rawStatsMax": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
},
"rawStatsSum": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
},
"sub": {
"type": "boolean"
}
},
"type": "object"
},
"RosterStatsDTO": {
"properties": {
"rosterId": {
"format": "int64",
"type": "integer"
},
"rosterLogo": {
"format": "int32",
"type": "integer"
},
"rosterLogoColor": {
"format": "int32",
"type": "integer"
},
"rosterName": {
"type": "string"
},
"rosterShortName": {
"type": "string"
},
"scheduleEndTime": {
"format": "int64",
"type": "integer"
},
"scheduleTime": {
"format": "int64",
"type": "integer"
},
"stats": {
"$ref": "#/components/schemas/RosterAggregatedStatsDTO"
},
"tier": {
"format": "int32",
"type": "integer"
},
"tournamentNameLocKey": {
"type": "string"
},
"tournamentNameLocKeySecondary": {
"type": "string"
},
"tournamentPeriods": {
"format": "int32",
"type": "integer"
},
"tournamentThemeId": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"RosterWithdraw": {
"properties": {
"declineWithdrawMembers": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"gameStartBufferMs": {
"format": "int64",
"type": "integer"
},
"initVoteMember": {
"format": "int64",
"type": "integer"
},
"initVoteTime": {
"format": "int64",
"type": "integer"
},
"lockoutTimeMs": {
"format": "int64",
"type": "integer"
},
"voteTimeoutMs": {
"format": "int64",
"type": "integer"
},
"voteWithdrawMembers": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
},
"type": "object"
},
"SanitizerContainsSanitizedRequest": {
"properties": {
"aggressiveScan": {
"type": "boolean"
},
"level": {
"format": "int32",
"type": "integer"
},
"text": {
"type": "string"
}
},
"type": "object"
},
"SanitizerContainsSanitizedResponse": {
"properties": {
"contains": {
"type": "boolean"
}
},
"type": "object"
},
"SanitizerSanitizeRequest": {
"properties": {
"aggressiveScan": {
"type": "boolean"
},
"level": {
"format": "int32",
"type": "integer"
},
"text": {
"type": "string"
},
"texts": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"SanitizerSanitizeResponse": {
"properties": {
"modified": {
"type": "boolean"
},
"text": {
"type": "string"
},
"texts": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"SanitizerSanitizerStatus": {
"properties": {
"breakingCharsCount": {
"format": "int32",
"type": "integer"
},
"filteredWordCountsByLevel": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
},
"locale": {
"type": "string"
},
"projectedCharsCount": {
"format": "int32",
"type": "integer"
},
"ready": {
"type": "boolean"
},
"region": {
"type": "string"
},
"whitelistedWordCountsByLevel": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
}
},
"type": "object"
},
"SeriesDTO": {
"properties": {
"createdDate": {
"format": "int64",
"type": "integer"
},
"description": {
"type": "string"
},
"displayType": {
"type": "string"
},
"eligibilityType": {
"type": "string"
},
"endDate": {
"format": "int64",
"type": "integer"
},
"id": {
"type": "string"
},
"internalName": {
"type": "string"
},
"lastUpdatedTimestamp": {
"format": "int64",
"type": "integer"
},
"media": {
"$ref": "#/components/schemas/SeriesMediaDTO"
},
"optInButtonText": {
"type": "string"
},
"optOutButtonText": {
"type": "string"
},
"parentInternalName": {
"type": "string"
},
"startDate": {
"format": "int64",
"type": "integer"
},
"status": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
},
"viewed": {
"type": "boolean"
},
"warnings": {
"items": {
"$ref": "#/components/schemas/AlertDTO"
},
"type": "array"
}
},
"type": "object"
},
"SeriesMediaDTO": {
"properties": {
"accentColor": {
"type": "string"
},
"backgroundImageLargeUrl": {
"type": "string"
},
"backgroundImageSmallUrl": {
"type": "string"
},
"backgroundUrl": {
"type": "string"
},
"trackerIconUrl": {
"type": "string"
}
},
"type": "object"
},
"ShutdownLcdsForcedClientShutdown": {
"properties": {
"additionalInfo": {
"type": "string"
},
"reason": {
"type": "string"
}
},
"type": "object"
},
"SimpleDialogMessage": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"msgId": {
"type": "string"
},
"params": {
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"SimpleDialogMessageResponse": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"command": {
"type": "string"
},
"msgId": {
"type": "string"
}
},
"type": "object"
},
"SpectatorLcdsSpectateAvailabilityDto": {
"properties": {
"teamOrSummonerIds": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"SpectatorLcdsSpectateAvailabilityResponseDto": {
"properties": {
"availableForWatching": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"StoreLcdsChampionDTO": {
"properties": {
"active": {
"type": "boolean"
},
"botEnabled": {
"type": "boolean"
},
"championId": {
"format": "int32",
"type": "integer"
},
"championSkins": {
"items": {
"$ref": "#/components/schemas/StoreLcdsChampionSkinDTO"
},
"type": "array"
},
"endDate": {
"format": "int64",
"type": "integer"
},
"freeToPlay": {
"type": "boolean"
},
"freeToPlayReward": {
"type": "boolean"
},
"owned": {
"type": "boolean"
},
"purchaseDate": {
"format": "int64",
"type": "integer"
},
"rankedPlayEnabled": {
"type": "boolean"
},
"sources": {
"items": {
"type": "string"
},
"type": "array"
},
"winCountRemaining": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"StoreLcdsChampionSkinDTO": {
"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"
},
"StoreLcdsSimpleDialogMessage": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"msgId": {
"type": "string"
},
"params": {
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"StoreLcdsSimpleDialogMessageResponse": {
"properties": {
"accountId": {
"format": "int64",
"type": "integer"
},
"command": {
"type": "string"
},
"msgId": {
"type": "string"
}
},
"type": "object"
},
"StoreLcdsStoreAccountBalanceNotification": {
"properties": {
"ip": {
"format": "int64",
"type": "integer"
},
"rp": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"StoreLcdsStoreFulfillmentNotification": {
"properties": {
"data": {
"additionalProperties": true,
"type": "object"
},
"inventoryType": {
"type": "string"
},
"ip": {
"format": "int64",
"type": "integer"
},
"rp": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"SubState": {
"enum": [
"SUGGESTED",
"PENDING",
"DECLINED",
"REVOKED",
"NOT_READY",
"FORCED_NOT_READY",
"READY"
],
"type": "string"
},
"ThemeVp": {
"properties": {
"themeId": {
"format": "int32",
"type": "integer"
},
"themeVp": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"TicketOfferDTO": {
"properties": {
"count": {
"format": "int32",
"type": "integer"
},
"offerPlayerId": {
"format": "int64",
"type": "integer"
},
"receivePlayerId": {
"format": "int64",
"type": "integer"
},
"ticketOfferState": {
"$ref": "#/components/schemas/TicketOfferState"
},
"type": {
"$ref": "#/components/schemas/TicketType"
}
},
"type": "object"
},
"TicketOfferState": {
"enum": [
"ACTIVE",
"ACCEPTED",
"REJECTED",
"REVOKED"
],
"type": "string"
},
"TicketType": {
"enum": [
"BASIC",
"PREMIUM"
],
"type": "string"
},
"TierConfig": {
"properties": {
"delayTime": {
"format": "int64",
"type": "integer"
},
"estimateTime": {
"format": "int64",
"type": "integer"
},
"tier": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"TimeSeriesEventBeginV1": {
"properties": {
"eventName": {
"description": "event name",
"type": "string"
},
"when": {
"description": "timestamp in microseconds of when the event occurred",
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"TimeSeriesEventEndV1": {
"properties": {
"eventName": {
"description": "event name",
"type": "string"
},
"suffix": {
"description": "optional event name suffix",
"type": "string"
},
"when": {
"description": "timestamp in microseconds of when the event occurred",
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"TimeSeriesEventMarkerV1": {
"properties": {
"eventName": {
"description": "event name",
"type": "string"
},
"markerName": {
"description": "event marker name",
"type": "string"
},
"when": {
"description": "timestamp in microseconds of when the event occurred",
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"TournamentDTO": {
"properties": {
"bracketFormationInitDelayMs": {
"format": "int64",
"type": "integer"
},
"bracketFormationIntervalMs": {
"format": "int64",
"type": "integer"
},
"bracketSize": {
"type": "string"
},
"buyInOptions": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"buyInOptionsPremium": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"entryFee": {
"format": "int32",
"type": "integer"
},
"honorRestriction": {
"type": "boolean"
},
"id": {
"format": "int64",
"type": "integer"
},
"lastThemeOfSeason": {
"type": "boolean"
},
"lft": {
"type": "boolean"
},
"maxInvites": {
"format": "int32",
"type": "integer"
},
"maxSub": {
"format": "int32",
"type": "integer"
},
"maxSuggestionsPerPlayer": {
"format": "int32",
"type": "integer"
},
"minGames": {
"format": "int32",
"type": "integer"
},
"nameLocKey": {
"type": "string"
},
"nameLocKeySecondary": {
"type": "string"
},
"phases": {
"items": {
"$ref": "#/components/schemas/TournamentPhaseDTO"
},
"type": "array"
},
"queueId": {
"format": "int32",
"type": "integer"
},
"rankRestriction": {
"type": "boolean"
},
"resumeTime": {
"format": "int64",
"type": "integer"
},
"rewardConfig": {
"items": {
"$ref": "#/components/schemas/ClashRewardConfigClient"
},
"type": "array"
},
"rosterCreateDeadline": {
"format": "int64",
"type": "integer"
},
"rosterSize": {
"format": "int32",
"type": "integer"
},
"scheduleEndTime": {
"format": "int64",
"type": "integer"
},
"scheduleTime": {
"format": "int64",
"type": "integer"
},
"scoutingTimeMs": {
"format": "int64",
"type": "integer"
},
"smsRestriction": {
"type": "boolean"
},
"status": {
"$ref": "#/components/schemas/TournamentStatusEnum"
},
"themeId": {
"format": "int32",
"type": "integer"
},
"tierConfigs": {
"items": {
"$ref": "#/components/schemas/TierConfig"
},
"type": "array"
},
"voiceEnabled": {
"type": "boolean"
}
},
"type": "object"
},
"TournamentHistoryAndWinnersDTO": {
"properties": {
"tournamentHistory": {
"items": {
"$ref": "#/components/schemas/TournamentDTO"
},
"type": "array"
},
"tournamentWinnersCompressed": {
"type": "string"
}
},
"type": "object"
},
"TournamentInfoDTO": {
"properties": {
"inviteePendingRosters": {
"items": {
"$ref": "#/components/schemas/PendingRosterDTO"
},
"type": "array"
},
"pendingRoster": {
"$ref": "#/components/schemas/PendingRosterDTO"
},
"roster": {
"$ref": "#/components/schemas/RosterDTO"
},
"subRosters": {
"items": {
"$ref": "#/components/schemas/RosterDTO"
},
"type": "array"
},
"themeVp": {
"format": "int32",
"type": "integer"
},
"tournament": {
"$ref": "#/components/schemas/TournamentDTO"
}
},
"type": "object"
},
"TournamentInfoMinimalDTO": {
"properties": {
"time": {
"format": "int64",
"type": "integer"
},
"tournamentInfo": {
"items": {
"$ref": "#/components/schemas/TournamentInfoDTO"
},
"type": "array"
}
},
"type": "object"
},
"TournamentPhaseDTO": {
"properties": {
"cancelled": {
"type": "boolean"
},
"capacityStatus": {
"$ref": "#/components/schemas/CapacityEnum"
},
"id": {
"format": "int64",
"type": "integer"
},
"limitTiers": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
},
"period": {
"format": "int32",
"type": "integer"
},
"registrationTime": {
"format": "int64",
"type": "integer"
},
"startTime": {
"format": "int64",
"type": "integer"
},
"tournamentId": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"TournamentPlayerInfoDTO": {
"properties": {
"player": {
"$ref": "#/components/schemas/PlayerDTO"
},
"rosterStats": {
"items": {
"$ref": "#/components/schemas/RosterStatsDTO"
},
"type": "array"
},
"seasonVp": {
"format": "int32",
"type": "integer"
},
"themeVps": {
"items": {
"$ref": "#/components/schemas/ThemeVp"
},
"type": "array"
},
"tier": {
"format": "int32",
"type": "integer"
},
"time": {
"format": "int64",
"type": "integer"
},
"tournamentInfo": {
"items": {
"$ref": "#/components/schemas/TournamentInfoDTO"
},
"type": "array"
}
},
"type": "object"
},
"TournamentStatusEnum": {
"enum": [
"DEFAULT",
"CANCELLED",
"PAUSED",
"PRERESUME"
],
"type": "string"
},
"TracingEventV1": {
"properties": {
"dest": {
"description": "destination module name",
"type": "string"
},
"details": {
"description": "event specific details",
"type": "string"
},
"name": {
"description": "event name",
"type": "string"
},
"src": {
"description": "source module name",
"type": "string"
},
"tags": {
"description": "a list of tags associated with this event",
"type": "string"
},
"when": {
"description": "timestamp in microseconds of when the event occurred",
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"TracingModuleThreadingModelV1": {
"enum": [
"kNone",
"kMainThread",
"kDedicated",
"kSequential",
"kConcurrent",
"kParallel"
],
"type": "string"
},
"TracingModuleTypeV1": {
"enum": [
"kUnknown",
"kRemoteAppModule",
"kBackEndPlugin",
"kBackendOther",
"kFrontEndPlugin",
"kRemotingSource"
],
"type": "string"
},
"TracingModuleV1": {
"properties": {
"moduleId": {
"format": "int32",
"type": "integer"
},
"name": {
"type": "string"
},
"threadingModel": {
"$ref": "#/components/schemas/TracingModuleThreadingModelV1"
},
"type": {
"$ref": "#/components/schemas/TracingModuleTypeV1"
}
},
"type": "object"
},
"TracingPhaseBeginV1": {
"properties": {
"importance": {
"$ref": "#/components/schemas/TracingPhaseImportanceV1",
"description": "relative importance of this phase"
},
"name": {
"description": "phase name",
"type": "string"
},
"when": {
"description": "timestamp in microseconds of when the phase began",
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"TracingPhaseEndV1": {
"properties": {
"name": {
"description": "phase name",
"type": "string"
},
"when": {
"description": "timestamp in microseconds of when the phase ended",
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"TracingPhaseImportanceV1": {
"enum": [
"trivial",
"minor",
"major"
],
"type": "string"
},
"TutorialMetadata": {
"properties": {
"displayRewards": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"queueId": {
"type": "string"
},
"stepNumber": {
"format": "int32",
"type": "integer"
},
"useChosenChampion": {
"type": "boolean"
},
"useQuickSearchMatchmaking": {
"type": "boolean"
}
},
"type": "object"
},
"VerboseLootOddsDTO": {
"properties": {
"chanceToContain": {
"items": {
"$ref": "#/components/schemas/LootOddsDTO"
},
"type": "array"
},
"checksOwnership": {
"type": "boolean"
},
"guaranteedToContain": {
"items": {
"$ref": "#/components/schemas/LootOddsDTO"
},
"type": "array"
},
"hasPityRules": {
"type": "boolean"
},
"lastUpdated": {
"type": "string"
},
"recipeName": {
"type": "string"
}
},
"type": "object"
},
"VoiceChatAudioPropertiesResource": {
"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"
},
"VoiceChatCallStatsResource": {
"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"
},
"VoiceChatCaptureDevicePermissionStatus": {
"enum": [
"promptForPermission",
"permissionDenied",
"permissionGranted"
],
"type": "string"
},
"VoiceChatCodecSettingsResource": {
"properties": {
"codecBandwidth": {
"format": "int32",
"type": "integer"
},
"codecBitrate": {
"format": "int32",
"type": "integer"
},
"codecComplexity": {
"format": "int32",
"type": "integer"
},
"codecVbrMode": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"VoiceChatConfigReadinessEnum": {
"enum": [
"NotReady",
"Ready",
"Disabled"
],
"type": "string"
},
"VoiceChatConfigResource": {
"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"
},
"VoiceChatConfigStatus": {
"properties": {
"readiness": {
"$ref": "#/components/schemas/VoiceChatConfigReadinessEnum"
}
},
"type": "object"
},
"VoiceChatConfigType": {
"enum": [
"public",
"player"
],
"type": "string"
},
"VoiceChatDeviceResource": {
"properties": {
"handle": {
"type": "string"
},
"is_current_device": {
"type": "boolean"
},
"is_default": {
"type": "boolean"
},
"is_effective_device": {
"type": "boolean"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"VoiceChatParticipantResource": {
"properties": {
"energy": {
"format": "int32",
"type": "integer"
},
"id": {
"type": "string"
},
"isMuted": {
"type": "boolean"
},
"isSpeaking": {
"type": "boolean"
},
"name": {
"type": "string"
},
"speakingTimestamp": {
"format": "int32",
"type": "integer"
},
"uri": {
"type": "string"
},
"volume": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"VoiceChatPushToTalkResource": {
"properties": {
"pttEnabled": {
"type": "boolean"
},
"pttKeyBinding": {
"type": "string"
}
},
"type": "object"
},
"VoiceChatRsoAuthorizationResource": {
"properties": {
"currentAccountId": {
"format": "int64",
"type": "integer"
},
"currentPlatformId": {
"type": "string"
},
"subject": {
"type": "string"
}
},
"type": "object"
},
"VoiceChatSessionResource": {
"properties": {
"id": {
"type": "string"
},
"isMuted": {
"type": "boolean"
},
"isTransmitEnabled": {
"type": "boolean"
},
"participants": {
"items": {
"$ref": "#/components/schemas/VoiceChatParticipantResource"
},
"type": "array"
},
"status": {
"$ref": "#/components/schemas/VoiceChatSessionStatus"
},
"volume": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"VoiceChatSessionStatus": {
"enum": [
"active",
"onHold"
],
"type": "string"
},
"VoiceChatSettingsResource": {
"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"
},
"VoiceChatStateResource": {
"properties": {
"connected": {
"type": "boolean"
}
},
"type": "object"
},
"VoiceChatStateType": {
"enum": [
"disconnected",
"connecting",
"connected",
"disconnecting",
"initialized",
"shuttingdown"
],
"type": "string"
},
"VoiceChatUpdateCodecSettingsResource": {
"properties": {
"codecBandwidth": {
"format": "int32",
"type": "integer"
},
"codecBitrate": {
"format": "int32",
"type": "integer"
},
"codecComplexity": {
"format": "int32",
"type": "integer"
},
"codecVbrMode": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"VoiceChatUpdateParticipantResource": {
"properties": {
"isMuted": {
"type": "boolean"
},
"volume": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"VoiceChatUpdateSettingsResource": {
"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"
},
"VoiceChatVoiceErrorCounterResource": {
"properties": {
"count": {
"format": "int64",
"type": "integer"
},
"error": {
"$ref": "#/components/schemas/VoiceChatVoiceErrorResource"
},
"timeOfLastError": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"VoiceChatVoiceErrorResource": {
"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"
},
"basicOperatingSystemInfo": {
"description": "User Experience Settings Operating System Information",
"properties": {
"edition": {
"type": "string"
},
"platform": {
"type": "string"
},
"versionMajor": {
"type": "string"
},
"versionMinor": {
"type": "string"
}
},
"type": "object"
},
"basicSystemInfo": {
"description": "User Experience Settings System Information",
"properties": {
"operatingSystem": {
"$ref": "#/components/schemas/basicOperatingSystemInfo"
},
"physicalMemory": {
"format": "int64",
"type": "integer"
},
"physicalProcessorCores": {
"format": "int32",
"type": "integer"
},
"processorSpeed": {
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"cookie": {
"properties": {
"domain": {
"type": "string"
},
"expires": {
"format": "int64",
"type": "integer"
},
"httponly": {
"type": "boolean"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"secure": {
"type": "boolean"
},
"url": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
}
}
},
"info": {
"title": "",
"version": "1.0.0"
},
"openapi": "3.0.0",
"paths": {
"/AsyncDelete": {
"post": {
"operationId": "AsyncDelete",
"parameters": [
{
"description": "ID of the asynchronous operation to remove",
"format": "int32",
"in": "query",
"name": "asyncToken",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Cancels the asynchronous operation or removes its completion status.",
"tags": [
"builtin"
]
}
},
"/AsyncResult": {
"post": {
"operationId": "AsyncResult",
"parameters": [
{
"description": "ID of the asynchronous operation to check",
"format": "int32",
"in": "query",
"name": "asyncToken",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Retrieves the result of a completed asynchronous operation.",
"tags": [
"builtin"
]
}
},
"/AsyncStatus": {
"post": {
"operationId": "AsyncStatus",
"parameters": [
{
"description": "ID of the asynchronous operation to check",
"format": "int32",
"in": "query",
"name": "asyncToken",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Retrieves details on the current state of an asynchronous operation.",
"tags": [
"builtin"
]
}
},
"/Cancel": {
"post": {
"operationId": "Cancel",
"parameters": [
{
"description": "Operation to cancel",
"format": "int32",
"in": "query",
"name": "asyncToken",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Attempts to cancel an asynchronous operation",
"tags": [
"builtin"
]
}
},
"/Exit": {
"post": {
"operationId": "Exit",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Closes the connection.",
"tags": [
"builtin"
]
}
},
"/Help": {
"post": {
"description": "With no arguments, returns a list of all available functions and types along with a short description. If a function or type is specified, returns detailed information about it.",
"operationId": "Help",
"parameters": [
{
"description": "Name of the function or type to describe",
"in": "query",
"name": "target",
"required": false,
"type": "string"
},
{
"description": "Format for returned information",
"enum": [
"Full",
"Epytext",
"Brief",
"Console"
],
"in": "query",
"name": "format",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Returns information on available functions and types",
"tags": [
"builtin"
]
}
},
"/LoggingGetEntries": {
"post": {
"operationId": "LoggingGetEntries",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LogEvent"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"summary": "Gets all buffered log entries since the last call.",
"tags": []
}
},
"/LoggingMetrics": {
"post": {
"operationId": "LoggingMetrics",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Returns all metrics",
"tags": []
}
},
"/LoggingMetricsMetadata": {
"post": {
"operationId": "LoggingMetricsMetadata",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Returns metadata for all metrics",
"tags": []
}
},
"/LoggingStart": {
"post": {
"operationId": "LoggingStart",
"parameters": [
{
"description": "Specifies whether logs will be buffered for LoggingGetEntries to work",
"in": "query",
"name": "buffered",
"required": false,
"type": "boolean"
},
{
"description": "Minimum severity level to fire a log event",
"enum": [
"Okay",
"Warning",
"Error",
"Always"
],
"in": "query",
"name": "severity",
"required": false,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Initializes the logging system.",
"tags": []
}
},
"/LoggingStop": {
"post": {
"operationId": "LoggingStop",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Finalizes the logging system.",
"tags": []
}
},
"/MemoryPools": {
"post": {
"operationId": "MemoryPools",
"parameters": [
{
"description": "Name of the context to find (optional)",
"in": "query",
"name": "contextName",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Returns current pool usage",
"tags": []
}
},
"/Subscribe": {
"post": {
"operationId": "Subscribe",
"parameters": [
{
"description": "Name of the event to subscribe to",
"in": "query",
"name": "eventName",
"required": true,
"type": "string"
},
{
"description": "Desired format to receive events in. If unspecified, events will be sent in the active result format at the time.",
"enum": [
"JSON",
"YAML",
"MsgPack"
],
"in": "query",
"name": "format",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Subscribes to a given event",
"tags": [
"builtin"
]
}
},
"/Unsubscribe": {
"post": {
"operationId": "Unsubscribe",
"parameters": [
{
"description": "Name of the event to unsubscribe from",
"in": "query",
"name": "eventName",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Unsubscribes from a given event",
"tags": [
"builtin"
]
}
},
"/WebSocketFormat": {
"post": {
"description": "With no arguments, returns the current output format being used. If a format is specified, switches the console output to that format.",
"operationId": "WebSocketFormat",
"parameters": [
{
"description": "Output format to switch to",
"enum": [
"JSON",
"YAML",
"MsgPack"
],
"in": "query",
"name": "format",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Controls the console output format",
"tags": [
"builtin"
]
}
},
"/anti-addiction/v1/policies/{policyType}/anti-addiction-state": {
"get": {
"operationId": "GetAntiAddictionV1PoliciesByPolicyTypeAntiAddictionState",
"parameters": [
{
"enum": [
"antiAddictionWarning",
"antiAddictionShutdown",
"antiAddictionHeartbeat"
],
"in": "path",
"name": "policyType",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolAntiAddictionAntiAddictionState"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-anti-addiction"
]
}
},
"/async/v1/result/{asyncToken}": {
"get": {
"operationId": "HttpAsyncResult",
"parameters": [
{
"description": "ID of the asynchronous operation to check",
"format": "int32",
"in": "path",
"name": "asyncToken",
"required": true,
"type": "integer"
},
{
"description": "ID of the asynchronous operation to check",
"format": "int32",
"in": "path",
"name": "asyncToken",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Retrieves the result of a completed asynchronous operation.",
"tags": [
"builtin"
]
}
},
"/async/v1/status/{asyncToken}": {
"delete": {
"operationId": "HttpAsyncDelete",
"parameters": [
{
"description": "ID of the asynchronous operation to remove",
"format": "int32",
"in": "path",
"name": "asyncToken",
"required": true,
"type": "integer"
},
{
"description": "ID of the asynchronous operation to remove",
"format": "int32",
"in": "path",
"name": "asyncToken",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Cancels the asynchronous operation or removes its completion status.",
"tags": [
"builtin"
]
},
"get": {
"operationId": "HttpAsyncStatus",
"parameters": [
{
"description": "ID of the asynchronous operation to check",
"format": "int32",
"in": "path",
"name": "asyncToken",
"required": true,
"type": "integer"
},
{
"description": "ID of the asynchronous operation to check",
"format": "int32",
"in": "path",
"name": "asyncToken",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Retrieves details on the current state of an asynchronous operation.",
"tags": [
"builtin"
]
}
},
"/client-config/v1/config": {
"get": {
"operationId": "GetClientConfigV1Config",
"parameters": [
{
"enum": [
"public",
"player"
],
"in": "query",
"name": "type",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "app",
"required": false,
"type": "string"
},
{
"in": "query",
"name": "version",
"required": false,
"type": "string"
},
{
"in": "query",
"name": "patchline",
"required": false,
"type": "string"
},
{
"in": "query",
"name": "region",
"required": false,
"type": "string"
},
{
"in": "query",
"name": "namespace",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin client-config"
]
}
},
"/client-config/v1/config/{name}": {
"get": {
"operationId": "GetClientConfigV1ConfigByName",
"parameters": [
{
"in": "path",
"name": "name",
"required": true,
"type": "string"
},
{
"enum": [
"public",
"player"
],
"in": "query",
"name": "type",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "app",
"required": false,
"type": "string"
},
{
"in": "query",
"name": "version",
"required": false,
"type": "string"
},
{
"in": "query",
"name": "patchline",
"required": false,
"type": "string"
},
{
"in": "query",
"name": "region",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin client-config"
]
}
},
"/client-config/v1/entitlements-token": {
"put": {
"operationId": "PutClientConfigV1EntitlementsToken",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ClientConfigEntitlementsUpdate"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin client-config"
]
}
},
"/client-config/v1/refresh-config-status": {
"put": {
"operationId": "PutClientConfigV1RefreshConfigStatus",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin client-config"
]
}
},
"/client-config/v1/status/{type}": {
"get": {
"operationId": "GetClientConfigV1StatusByType",
"parameters": [
{
"enum": [
"public",
"player"
],
"in": "path",
"name": "type",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ClientConfigConfigStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin client-config"
]
}
},
"/client-config/v2/config/{name}": {
"get": {
"operationId": "GetClientConfigV2ConfigByName",
"parameters": [
{
"in": "path",
"name": "name",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin client-config"
]
}
},
"/client-config/v2/namespace-changes": {
"put": {
"operationId": "PutClientConfigV2NamespaceChanges",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ClientConfigConfigNamespaceUpdate"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin client-config"
]
}
},
"/client-config/v2/namespace/{namespace}": {
"get": {
"operationId": "GetClientConfigV2NamespaceByNamespace",
"parameters": [
{
"in": "path",
"name": "namespace",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin client-config"
]
}
},
"/client-config/v2/namespace/{namespace}/player": {
"get": {
"operationId": "GetClientConfigV2NamespaceByNamespacePlayer",
"parameters": [
{
"in": "path",
"name": "namespace",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin client-config"
]
}
},
"/client-config/v2/namespace/{namespace}/public": {
"get": {
"operationId": "GetClientConfigV2NamespaceByNamespacePublic",
"parameters": [
{
"in": "path",
"name": "namespace",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin client-config"
]
}
},
"/cookie-jar/v1/cookies": {
"get": {
"operationId": "GetCookieJarV1Cookies",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/cookie"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"summary": "Get all cookies.",
"tags": []
},
"post": {
"operationId": "PostCookieJarV1Cookies",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/cookie"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Set a cookie.",
"tags": []
}
},
"/crash-reporting/v1/crash-status": {
"get": {
"operationId": "GetCrashReportingV1CrashStatus",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"summary": "Returns whether or not the game or client have crashed",
"tags": []
}
},
"/data-store/v1/install-dir": {
"get": {
"operationId": "GetDataStoreV1InstallDir",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"summary": "Gets the current install directory (used internally.)",
"tags": []
}
},
"/data-store/v1/install-settings/{path}": {
"get": {
"operationId": "GetDataStoreV1InstallSettingsByPath",
"parameters": [
{
"description": "The path to the settings key",
"in": "path",
"name": "path",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Get the data for the specified key from the install settings.",
"tags": []
},
"post": {
"operationId": "PostDataStoreV1InstallSettingsByPath",
"parameters": [
{
"description": "The path to the settings key",
"in": "path",
"name": "path",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Set the data for the specified key from the install settings.",
"tags": []
}
},
"/data-store/v1/system-settings/{path}": {
"get": {
"operationId": "GetDataStoreV1SystemSettingsByPath",
"parameters": [
{
"description": "The path to the settings key",
"in": "path",
"name": "path",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Get the setting for the specified key.",
"tags": []
}
},
"/entitlements/v1/token": {
"get": {
"operationId": "GetEntitlementsV1Token",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/EntitlementsToken"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin entitlements"
]
}
},
"/lol-account-verification/v1/authenticate": {
"post": {
"operationId": "PostLolAccountVerificationV1Authenticate",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolAccountVerificationAuthenticateRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolAccountVerificationAuthenticateResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-account-verification"
]
}
},
"/lol-account-verification/v1/device": {
"get": {
"operationId": "GetLolAccountVerificationV1Device",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolAccountVerificationDeviceResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-account-verification"
]
}
},
"/lol-account-verification/v1/invalidate": {
"post": {
"operationId": "PostLolAccountVerificationV1Invalidate",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolAccountVerificationInvalidateResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-account-verification"
]
}
},
"/lol-account-verification/v1/is-verified": {
"get": {
"operationId": "GetLolAccountVerificationV1IsVerified",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolAccountVerificationIsVerifiedResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-account-verification"
]
}
},
"/lol-account-verification/v1/send-token": {
"post": {
"operationId": "PostLolAccountVerificationV1SendToken",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolAccountVerificationSendTokenRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolAccountVerificationSendTokenResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-account-verification"
]
}
},
"/lol-account-verification/v1/verify": {
"post": {
"operationId": "PostLolAccountVerificationV1Verify",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolAccountVerificationVerifyRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolAccountVerificationVerifyResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-account-verification"
]
}
},
"/lol-active-boosts/v1/active-boosts": {
"get": {
"operationId": "GetLolActiveBoostsV1ActiveBoosts",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolActiveBoostsActiveBoosts"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-active-boosts"
]
}
},
"/lol-anti-addiction/v1/anti-addiction-token": {
"get": {
"operationId": "GetLolAntiAddictionV1AntiAddictionToken",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolAntiAddictionAntiAddictionToken"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-anti-addiction"
]
}
},
"/lol-banners/v1/current-summoner/flags": {
"get": {
"operationId": "GetLolBannersV1CurrentSummonerFlags",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolBannersBannerFlag"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-banners"
]
}
},
"/lol-banners/v1/current-summoner/flags/equipped": {
"get": {
"operationId": "GetLolBannersV1CurrentSummonerFlagsEquipped",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolBannersBannerFlag"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-banners"
]
},
"put": {
"operationId": "PutLolBannersV1CurrentSummonerFlagsEquipped",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolBannersBannerFlag"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolBannersBannerFlag"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-banners"
]
}
},
"/lol-banners/v1/current-summoner/frames/equipped": {
"get": {
"operationId": "GetLolBannersV1CurrentSummonerFramesEquipped",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolBannersBannerFrame"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-banners"
]
}
},
"/lol-banners/v1/players/{puuid}/flags/equipped": {
"get": {
"operationId": "GetLolBannersV1PlayersByPuuidFlagsEquipped",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolBannersBannerFlag"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-banners"
]
}
},
"/lol-career-stats/v1/champion-averages/season/{season}/{championId}/{position}/{tier}/{queue}": {
"get": {
"operationId": "GetLolCareerStatsV1ChampionAveragesSeasonBySeasonByChampionIdByPositionByTierByQueue",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "season",
"required": true,
"type": "integer"
},
{
"format": "int32",
"in": "path",
"name": "championId",
"required": true,
"type": "integer"
},
{
"enum": [
"ALL",
"UNKNOWN",
"TOP",
"JUNGLE",
"MID",
"BOTTOM",
"SUPPORT"
],
"in": "path",
"name": "position",
"required": true,
"type": "string"
},
{
"enum": [
"ALL",
"UNRANKED",
"IRON",
"BRONZE",
"SILVER",
"GOLD",
"PLATINUM",
"DIAMOND",
"MASTER",
"GRANDMASTER",
"CHALLENGER"
],
"in": "path",
"name": "tier",
"required": true,
"type": "string"
},
{
"enum": [
"draft5",
"rank5flex",
"rank5solo",
"blind5",
"aram",
"blind3",
"rank3flex",
"other"
],
"in": "path",
"name": "queue",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolCareerStatsChampionQueueStatsResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-career-stats"
]
}
},
"/lol-career-stats/v1/champion-averages/{championId}/{position}/{tier}/{queue}": {
"get": {
"operationId": "GetLolCareerStatsV1ChampionAveragesByChampionIdByPositionByTierByQueue",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "championId",
"required": true,
"type": "integer"
},
{
"enum": [
"ALL",
"UNKNOWN",
"TOP",
"JUNGLE",
"MID",
"BOTTOM",
"SUPPORT"
],
"in": "path",
"name": "position",
"required": true,
"type": "string"
},
{
"enum": [
"ALL",
"UNRANKED",
"IRON",
"BRONZE",
"SILVER",
"GOLD",
"PLATINUM",
"DIAMOND",
"MASTER",
"GRANDMASTER",
"CHALLENGER"
],
"in": "path",
"name": "tier",
"required": true,
"type": "string"
},
{
"enum": [
"draft5",
"rank5flex",
"rank5solo",
"blind5",
"aram",
"blind3",
"rank3flex",
"other"
],
"in": "path",
"name": "queue",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolCareerStatsChampionQueueStatsResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-career-stats"
]
}
},
"/lol-career-stats/v1/champion-experts/season/{season}/{championId}/{position}": {
"get": {
"operationId": "GetLolCareerStatsV1ChampionExpertsSeasonBySeasonByChampionIdByPosition",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "season",
"required": true,
"type": "integer"
},
{
"format": "int32",
"in": "path",
"name": "championId",
"required": true,
"type": "integer"
},
{
"enum": [
"ALL",
"UNKNOWN",
"TOP",
"JUNGLE",
"MID",
"BOTTOM",
"SUPPORT"
],
"in": "path",
"name": "position",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolCareerStatsExpertPlayer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-career-stats"
]
}
},
"/lol-career-stats/v1/champion-experts/{championId}/{position}": {
"get": {
"operationId": "GetLolCareerStatsV1ChampionExpertsByChampionIdByPosition",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "championId",
"required": true,
"type": "integer"
},
{
"enum": [
"ALL",
"UNKNOWN",
"TOP",
"JUNGLE",
"MID",
"BOTTOM",
"SUPPORT"
],
"in": "path",
"name": "position",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolCareerStatsExpertPlayer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-career-stats"
]
}
},
"/lol-career-stats/v1/champion-stats-percentiles": {
"post": {
"operationId": "PostLolCareerStatsV1ChampionStatsPercentiles",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolCareerStatsStatsQueryRequest"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolCareerStatsStatisticsPercentilesResponse"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-career-stats"
]
}
},
"/lol-career-stats/v1/position-averages/season/{season}/{position}/{tier}/{queue}": {
"get": {
"operationId": "GetLolCareerStatsV1PositionAveragesSeasonBySeasonByPositionByTierByQueue",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "season",
"required": true,
"type": "integer"
},
{
"enum": [
"ALL",
"UNKNOWN",
"TOP",
"JUNGLE",
"MID",
"BOTTOM",
"SUPPORT"
],
"in": "path",
"name": "position",
"required": true,
"type": "string"
},
{
"enum": [
"ALL",
"UNRANKED",
"IRON",
"BRONZE",
"SILVER",
"GOLD",
"PLATINUM",
"DIAMOND",
"MASTER",
"GRANDMASTER",
"CHALLENGER"
],
"in": "path",
"name": "tier",
"required": true,
"type": "string"
},
{
"enum": [
"draft5",
"rank5flex",
"rank5solo",
"blind5",
"aram",
"blind3",
"rank3flex",
"other"
],
"in": "path",
"name": "queue",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolCareerStatsChampionQueueStatsResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-career-stats"
]
}
},
"/lol-career-stats/v1/position-averages/{position}/{tier}/{queue}": {
"get": {
"operationId": "GetLolCareerStatsV1PositionAveragesByPositionByTierByQueue",
"parameters": [
{
"enum": [
"ALL",
"UNKNOWN",
"TOP",
"JUNGLE",
"MID",
"BOTTOM",
"SUPPORT"
],
"in": "path",
"name": "position",
"required": true,
"type": "string"
},
{
"enum": [
"ALL",
"UNRANKED",
"IRON",
"BRONZE",
"SILVER",
"GOLD",
"PLATINUM",
"DIAMOND",
"MASTER",
"GRANDMASTER",
"CHALLENGER"
],
"in": "path",
"name": "tier",
"required": true,
"type": "string"
},
{
"enum": [
"draft5",
"rank5flex",
"rank5solo",
"blind5",
"aram",
"blind3",
"rank3flex",
"other"
],
"in": "path",
"name": "queue",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolCareerStatsChampionQueueStatsResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-career-stats"
]
}
},
"/lol-career-stats/v1/position-experts/season/{season}/{position}": {
"get": {
"operationId": "GetLolCareerStatsV1PositionExpertsSeasonBySeasonByPosition",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "season",
"required": true,
"type": "integer"
},
{
"enum": [
"ALL",
"UNKNOWN",
"TOP",
"JUNGLE",
"MID",
"BOTTOM",
"SUPPORT"
],
"in": "path",
"name": "position",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolCareerStatsExpertPlayer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-career-stats"
]
}
},
"/lol-career-stats/v1/position-experts/{position}": {
"get": {
"operationId": "GetLolCareerStatsV1PositionExpertsByPosition",
"parameters": [
{
"enum": [
"ALL",
"UNKNOWN",
"TOP",
"JUNGLE",
"MID",
"BOTTOM",
"SUPPORT"
],
"in": "path",
"name": "position",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolCareerStatsExpertPlayer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-career-stats"
]
}
},
"/lol-career-stats/v1/position-stats-percentiles": {
"post": {
"operationId": "PostLolCareerStatsV1PositionStatsPercentiles",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolCareerStatsPositionStatsQueryRequest"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolCareerStatsStatisticsPercentilesResponse"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-career-stats"
]
}
},
"/lol-career-stats/v1/summoner-games/{puuid}": {
"get": {
"operationId": "GetLolCareerStatsV1SummonerGamesByPuuid",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-career-stats"
]
}
},
"/lol-career-stats/v1/summoner-games/{puuid}/season/{season}": {
"get": {
"operationId": "GetLolCareerStatsV1SummonerGamesByPuuidSeasonBySeason",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
},
{
"format": "int32",
"in": "path",
"name": "season",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-career-stats"
]
}
},
"/lol-career-stats/v1/summoner-stats/{puuid}/{season}/{queue}/{position}": {
"get": {
"operationId": "GetLolCareerStatsV1SummonerStatsByPuuidBySeasonByQueueByPosition",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
},
{
"format": "int32",
"in": "path",
"name": "season",
"required": true,
"type": "integer"
},
{
"enum": [
"draft5",
"rank5flex",
"rank5solo",
"blind5",
"aram",
"blind3",
"rank3flex",
"other"
],
"in": "path",
"name": "queue",
"required": true,
"type": "string"
},
{
"enum": [
"ALL",
"UNKNOWN",
"TOP",
"JUNGLE",
"MID",
"BOTTOM",
"SUPPORT"
],
"in": "path",
"name": "position",
"required": true,
"type": "string"
},
{
"format": "int32",
"in": "query",
"name": "championId",
"required": false,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-career-stats"
]
}
},
"/lol-catalog/v1/item-details": {
"get": {
"operationId": "GetLolCatalogV1ItemDetails",
"parameters": [
{
"in": "query",
"name": "inventoryType",
"required": true,
"type": "string"
},
{
"format": "int64",
"in": "query",
"name": "itemId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolCatalogCatalogPluginItemWithDetails"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-catalog"
]
}
},
"/lol-catalog/v1/items": {
"get": {
"operationId": "GetLolCatalogV1Items",
"parameters": [
{
"in": "query",
"name": "inventoryType",
"required": true,
"type": "string"
},
{
"in": "query",
"items": {
"format": "int64",
"type": "integer"
},
"name": "itemIds",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolCatalogItemChoiceDetails"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-catalog"
]
}
},
"/lol-catalog/v1/items/{inventoryType}": {
"get": {
"operationId": "GetLolCatalogV1ItemsByInventoryType",
"parameters": [
{
"in": "path",
"name": "inventoryType",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolCatalogCatalogPluginItem"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-catalog"
]
}
},
"/lol-challenges/v1/available-queue-ids": {
"get": {
"operationId": "GetLolChallengesV1AvailableQueueIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-challenges"
]
}
},
"/lol-challenges/v1/challenges/{product}/local-player": {
"get": {
"operationId": "GetLolChallengesV1ChallengesByProductLocalPlayer",
"parameters": [
{
"in": "path",
"name": "product",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChallengesUIChallenge"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-challenges"
]
}
},
"/lol-challenges/v1/level-points": {
"get": {
"operationId": "GetLolChallengesV1LevelPoints",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"format": "int64",
"type": "integer"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-challenges"
]
}
},
"/lol-challenges/v1/my-updated-challenges/{gameId}": {
"get": {
"operationId": "GetLolChallengesV1MyUpdatedChallengesByGameId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "gameId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChallengesUIChallenge"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-challenges"
]
}
},
"/lol-challenges/v1/processGame/{product}/{gameId}": {
"post": {
"operationId": "PostLolChallengesV1ProcessGameByProductByGameId",
"parameters": [
{
"in": "path",
"name": "product",
"required": true,
"type": "string"
},
{
"format": "int64",
"in": "path",
"name": "gameId",
"required": true,
"type": "integer"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-challenges"
]
}
},
"/lol-challenges/v1/suggested-challenges/{product}/local-player": {
"get": {
"operationId": "GetLolChallengesV1SuggestedChallengesByProductLocalPlayer",
"parameters": [
{
"in": "path",
"name": "product",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChallengesUIChallenge"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-challenges"
]
}
},
"/lol-challenges/v1/summary-player-data/{product}/local-player": {
"get": {
"operationId": "GetLolChallengesV1SummaryPlayerDataByProductLocalPlayer",
"parameters": [
{
"in": "path",
"name": "product",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChallengesUIPlayerSummary"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-challenges"
]
}
},
"/lol-challenges/v1/summary-player-data/{product}/player/{puuid}": {
"get": {
"operationId": "GetLolChallengesV1SummaryPlayerDataByProductPlayerByPuuid",
"parameters": [
{
"in": "path",
"name": "product",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChallengesUIPlayerSummary"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-challenges"
]
}
},
"/lol-challenges/v1/summary-players-data/{product}/players": {
"get": {
"operationId": "GetLolChallengesV1SummaryPlayersDataByProductPlayers",
"parameters": [
{
"in": "path",
"name": "product",
"required": true,
"type": "string"
},
{
"in": "query",
"items": {
"type": "string"
},
"name": "puuids",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"$ref": "#/components/schemas/LolChallengesUIPlayerSummary"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-challenges"
]
}
},
"/lol-challenges/v1/titles/local-player": {
"get": {
"operationId": "GetLolChallengesV1TitlesLocalPlayer",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChallengesUITitle"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-challenges"
]
}
},
"/lol-challenges/v1/update-player-preferences/{product}": {
"post": {
"operationId": "PostLolChallengesV1UpdatePlayerPreferencesByProduct",
"parameters": [
{
"in": "path",
"name": "product",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChallengesChallengesPlayerPreferences"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-challenges"
]
}
},
"/lol-challenges/v1/updated-challenge/{gameId}/{puuid}": {
"get": {
"operationId": "GetLolChallengesV1UpdatedChallengeByGameIdByPuuid",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "gameId",
"required": true,
"type": "integer"
},
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChallengesUIChallenge"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-challenges"
]
}
},
"/lol-champ-select-legacy/v1/bannable-champion-ids": {
"get": {
"operationId": "GetLolChampSelectLegacyV1BannableChampionIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/battle-training/launch": {
"post": {
"operationId": "PostLolChampSelectLegacyV1BattleTrainingLaunch",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/current-champion": {
"get": {
"operationId": "GetLolChampSelectLegacyV1CurrentChampion",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/disabled-champion-ids": {
"get": {
"operationId": "GetLolChampSelectLegacyV1DisabledChampionIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/implementation-active": {
"get": {
"operationId": "GetLolChampSelectLegacyV1ImplementationActive",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/pickable-champion-ids": {
"get": {
"operationId": "GetLolChampSelectLegacyV1PickableChampionIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/pickable-skin-ids": {
"get": {
"operationId": "GetLolChampSelectLegacyV1PickableSkinIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/session": {
"get": {
"operationId": "GetLolChampSelectLegacyV1Session",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampSelectSession"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/session/actions/{id}": {
"patch": {
"operationId": "PatchLolChampSelectLegacyV1SessionActionsById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampSelectAction"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/session/actions/{id}/complete": {
"post": {
"operationId": "PostLolChampSelectLegacyV1SessionActionsByIdComplete",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/session/my-selection": {
"patch": {
"operationId": "PatchLolChampSelectLegacyV1SessionMySelection",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampSelectMySelection"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/session/my-selection/reroll": {
"post": {
"operationId": "PostLolChampSelectLegacyV1SessionMySelectionReroll",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/session/timer": {
"get": {
"operationId": "GetLolChampSelectLegacyV1SessionTimer",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampSelectTimer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/session/trades": {
"get": {
"operationId": "GetLolChampSelectLegacyV1SessionTrades",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampSelectTradeContract"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/session/trades/{id}": {
"get": {
"operationId": "GetLolChampSelectLegacyV1SessionTradesById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampSelectTradeContract"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/session/trades/{id}/accept": {
"post": {
"operationId": "PostLolChampSelectLegacyV1SessionTradesByIdAccept",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/session/trades/{id}/cancel": {
"post": {
"operationId": "PostLolChampSelectLegacyV1SessionTradesByIdCancel",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/session/trades/{id}/decline": {
"post": {
"operationId": "PostLolChampSelectLegacyV1SessionTradesByIdDecline",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/session/trades/{id}/request": {
"post": {
"operationId": "PostLolChampSelectLegacyV1SessionTradesByIdRequest",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectLegacyChampSelectTradeContract"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select-legacy/v1/team-boost": {
"get": {
"operationId": "GetLolChampSelectLegacyV1TeamBoost",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectLegacyTeamBoost"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select-legacy"
]
}
},
"/lol-champ-select/v1/all-grid-champions": {
"get": {
"operationId": "GetLolChampSelectV1AllGridChampions",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChampSelectChampGridChampion"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/bannable-champion-ids": {
"get": {
"operationId": "GetLolChampSelectV1BannableChampionIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/battle-training/launch": {
"post": {
"operationId": "PostLolChampSelectV1BattleTrainingLaunch",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/current-champion": {
"get": {
"operationId": "GetLolChampSelectV1CurrentChampion",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/disabled-champion-ids": {
"get": {
"operationId": "GetLolChampSelectV1DisabledChampionIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/grid-champions/{championId}": {
"get": {
"operationId": "GetLolChampSelectV1GridChampionsByChampionId",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "championId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectChampGridChampion"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/muted-players": {
"get": {
"operationId": "GetLolChampSelectV1MutedPlayers",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChampSelectMutedPlayerInfo"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/ongoing-trade": {
"get": {
"operationId": "GetLolChampSelectV1OngoingTrade",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectChampSelectTradeNotification"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/ongoing-trade/{id}/clear": {
"post": {
"operationId": "PostLolChampSelectV1OngoingTradeByIdClear",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/pickable-champion-ids": {
"get": {
"operationId": "GetLolChampSelectV1PickableChampionIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/pickable-skin-ids": {
"get": {
"operationId": "GetLolChampSelectV1PickableSkinIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/pin-drop-notification": {
"get": {
"operationId": "GetLolChampSelectV1PinDropNotification",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectChampSelectPinDropNotification"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/retrieve-latest-game-dto": {
"post": {
"operationId": "PostLolChampSelectV1RetrieveLatestGameDto",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session": {
"get": {
"operationId": "GetLolChampSelectV1Session",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectChampSelectSession"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session/actions/{id}": {
"patch": {
"operationId": "PatchLolChampSelectV1SessionActionsById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectChampSelectAction"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session/actions/{id}/complete": {
"post": {
"operationId": "PostLolChampSelectV1SessionActionsByIdComplete",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session/bench/swap/{championId}": {
"post": {
"operationId": "PostLolChampSelectV1SessionBenchSwapByChampionId",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "championId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session/my-selection": {
"patch": {
"operationId": "PatchLolChampSelectV1SessionMySelection",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectChampSelectMySelection"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session/my-selection/reroll": {
"post": {
"operationId": "PostLolChampSelectV1SessionMySelectionReroll",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session/simple-inventory": {
"post": {
"operationId": "PostLolChampSelectV1SessionSimpleInventory",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session/timer": {
"get": {
"operationId": "GetLolChampSelectV1SessionTimer",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectChampSelectTimer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session/trades": {
"get": {
"operationId": "GetLolChampSelectV1SessionTrades",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChampSelectChampSelectTradeContract"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session/trades/{id}": {
"get": {
"operationId": "GetLolChampSelectV1SessionTradesById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectChampSelectTradeContract"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session/trades/{id}/accept": {
"post": {
"operationId": "PostLolChampSelectV1SessionTradesByIdAccept",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session/trades/{id}/cancel": {
"post": {
"operationId": "PostLolChampSelectV1SessionTradesByIdCancel",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session/trades/{id}/decline": {
"post": {
"operationId": "PostLolChampSelectV1SessionTradesByIdDecline",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/session/trades/{id}/request": {
"post": {
"operationId": "PostLolChampSelectV1SessionTradesByIdRequest",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectChampSelectTradeContract"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/sfx-notifications": {
"get": {
"operationId": "GetLolChampSelectV1SfxNotifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChampSelectSfxNotification"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/skin-carousel-skins": {
"get": {
"operationId": "GetLolChampSelectV1SkinCarouselSkins",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChampSelectSkinSelectorSkin"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/skin-selector-info": {
"get": {
"operationId": "GetLolChampSelectV1SkinSelectorInfo",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectSkinSelectorInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/summoners/{slotId}": {
"get": {
"operationId": "GetLolChampSelectV1SummonersBySlotId",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "slotId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectChampSelectSummoner"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/team-boost": {
"get": {
"operationId": "GetLolChampSelectV1TeamBoost",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectTeamBoost"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/team-boost/purchase": {
"post": {
"operationId": "PostLolChampSelectV1TeamBoostPurchase",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/toggle-favorite/{championId}/{position}": {
"post": {
"operationId": "PostLolChampSelectV1ToggleFavoriteByChampionIdByPosition",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "championId",
"required": true,
"type": "integer"
},
{
"in": "path",
"name": "position",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champ-select/v1/toggle-player-muted": {
"post": {
"operationId": "PostLolChampSelectV1TogglePlayerMuted",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampSelectMutedPlayerInfo"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champ-select"
]
}
},
"/lol-champions/v1/inventories/{summonerId}/champions": {
"get": {
"operationId": "GetLolChampionsV1InventoriesBySummonerIdChampions",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampion"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champions"
]
}
},
"/lol-champions/v1/inventories/{summonerId}/champions-minimal": {
"get": {
"operationId": "GetLolChampionsV1InventoriesBySummonerIdChampionsMinimal",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionMinimal"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champions"
]
}
},
"/lol-champions/v1/inventories/{summonerId}/champions-playable-count": {
"get": {
"operationId": "GetLolChampionsV1InventoriesBySummonerIdChampionsPlayableCount",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionPlayableCounts"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champions"
]
}
},
"/lol-champions/v1/inventories/{summonerId}/champions/{championId}": {
"get": {
"operationId": "GetLolChampionsV1InventoriesBySummonerIdChampionsByChampionId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
},
{
"format": "int32",
"in": "path",
"name": "championId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampion"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champions"
]
}
},
"/lol-champions/v1/inventories/{summonerId}/champions/{championId}/skins": {
"get": {
"operationId": "GetLolChampionsV1InventoriesBySummonerIdChampionsByChampionIdSkins",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
},
{
"format": "int32",
"in": "path",
"name": "championId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionSkin"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champions"
]
}
},
"/lol-champions/v1/inventories/{summonerId}/champions/{championId}/skins/{championSkinId}": {
"get": {
"operationId": "GetLolChampionsV1InventoriesBySummonerIdChampionsByChampionIdSkinsByChampionSkinId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
},
{
"format": "int32",
"in": "path",
"name": "championId",
"required": true,
"type": "integer"
},
{
"format": "int32",
"in": "path",
"name": "championSkinId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionSkin"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champions"
]
}
},
"/lol-champions/v1/inventories/{summonerId}/champions/{championId}/skins/{skinId}/chromas": {
"get": {
"operationId": "GetLolChampionsV1InventoriesBySummonerIdChampionsByChampionIdSkinsBySkinIdChromas",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
},
{
"format": "int32",
"in": "path",
"name": "championId",
"required": true,
"type": "integer"
},
{
"format": "int32",
"in": "path",
"name": "skinId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionChroma"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champions"
]
}
},
"/lol-champions/v1/inventories/{summonerId}/skins-minimal": {
"get": {
"operationId": "GetLolChampionsV1InventoriesBySummonerIdSkinsMinimal",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionSkinMinimal"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champions"
]
}
},
"/lol-champions/v1/owned-champions-minimal": {
"get": {
"operationId": "GetLolChampionsV1OwnedChampionsMinimal",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChampionsCollectionsChampionMinimal"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-champions"
]
}
},
"/lol-chat/v1/blocked-players": {
"get": {
"operationId": "GetLolChatV1BlockedPlayers",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChatBlockedPlayerResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"post": {
"operationId": "PostLolChatV1BlockedPlayers",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatBlockedPlayerResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/blocked-players/{id}": {
"delete": {
"operationId": "DeleteLolChatV1BlockedPlayersById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"get": {
"operationId": "GetLolChatV1BlockedPlayersById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatBlockedPlayerResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/config": {
"get": {
"operationId": "GetLolChatV1Config",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatChatServiceDynamicClientConfig"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/conversations": {
"get": {
"operationId": "GetLolChatV1Conversations",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChatConversationResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"post": {
"operationId": "PostLolChatV1Conversations",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatConversationResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatConversationResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/conversations/active": {
"delete": {
"operationId": "DeleteLolChatV1ConversationsActive",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"get": {
"operationId": "GetLolChatV1ConversationsActive",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatActiveConversationResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"put": {
"operationId": "PutLolChatV1ConversationsActive",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatActiveConversationResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/conversations/notify": {
"get": {
"operationId": "GetLolChatV1ConversationsNotify",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/conversations/{id}": {
"delete": {
"operationId": "DeleteLolChatV1ConversationsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"get": {
"operationId": "GetLolChatV1ConversationsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatConversationResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"put": {
"operationId": "PutLolChatV1ConversationsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatConversationResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatConversationResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/conversations/{id}/closed": {
"post": {
"operationId": "PostLolChatV1ConversationsByIdClosed",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"put": {
"operationId": "PutLolChatV1ConversationsByIdClosed",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/conversations/{id}/messages": {
"delete": {
"operationId": "DeleteLolChatV1ConversationsByIdMessages",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"get": {
"operationId": "GetLolChatV1ConversationsByIdMessages",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChatConversationMessageResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"post": {
"operationId": "PostLolChatV1ConversationsByIdMessages",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatConversationMessageResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatConversationMessageResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/conversations/{id}/participants": {
"get": {
"operationId": "GetLolChatV1ConversationsByIdParticipants",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChatUserResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"post": {
"operationId": "PostLolChatV1ConversationsByIdParticipants",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatUserResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/conversations/{id}/participants/{pid}": {
"get": {
"operationId": "GetLolChatV1ConversationsByIdParticipantsByPid",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "pid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatUserResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/errors": {
"get": {
"operationId": "GetLolChatV1Errors",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChatErrorResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/errors/{id}": {
"delete": {
"operationId": "DeleteLolChatV1ErrorsById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/friend-counts": {
"get": {
"operationId": "GetLolChatV1FriendCounts",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatFriendCountsResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/friend-exists/{summonerId}": {
"get": {
"operationId": "GetLolChatV1FriendExistsBySummonerId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/friend-groups": {
"get": {
"operationId": "GetLolChatV1FriendGroups",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChatGroupResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"post": {
"operationId": "PostLolChatV1FriendGroups",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatGroupResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/friend-groups/order": {
"put": {
"operationId": "PutLolChatV1FriendGroupsOrder",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatFriendGroupOrder"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/friend-groups/{id}": {
"delete": {
"operationId": "DeleteLolChatV1FriendGroupsById",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"get": {
"operationId": "GetLolChatV1FriendGroupsById",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatGroupResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"put": {
"operationId": "PutLolChatV1FriendGroupsById",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatGroupResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/friend-groups/{id}/friends": {
"get": {
"operationId": "GetLolChatV1FriendGroupsByIdFriends",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChatFriendResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/friend-requests": {
"get": {
"operationId": "GetLolChatV1FriendRequests",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChatFriendRequestResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"post": {
"operationId": "PostLolChatV1FriendRequests",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatFriendRequestResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/friend-requests/{id}": {
"delete": {
"operationId": "DeleteLolChatV1FriendRequestsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"put": {
"operationId": "PutLolChatV1FriendRequestsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatFriendRequestResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/friends": {
"get": {
"operationId": "GetLolChatV1Friends",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolChatFriendResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/friends/{id}": {
"delete": {
"operationId": "DeleteLolChatV1FriendsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"get": {
"operationId": "GetLolChatV1FriendsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatFriendResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"put": {
"operationId": "PutLolChatV1FriendsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatFriendResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/me": {
"get": {
"operationId": "GetLolChatV1Me",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatUserResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"put": {
"operationId": "PutLolChatV1Me",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatUserResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatUserResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/resources": {
"get": {
"operationId": "GetLolChatV1Resources",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatProductMetadataMap"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/session": {
"delete": {
"operationId": "DeleteLolChatV1Session",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"get": {
"operationId": "GetLolChatV1Session",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatSessionResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/session/plain": {
"post": {
"operationId": "PostLolChatV1SessionPlain",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatAuthResourcePlain"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatSessionResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/session/rso": {
"post": {
"operationId": "PostLolChatV1SessionRso",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatAuthResourceRsoAccessToken"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolChatSessionResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/settings": {
"get": {
"operationId": "GetLolChatV1Settings",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"put": {
"operationId": "PutLolChatV1Settings",
"parameters": [
{
"in": "query",
"name": "doAsync",
"required": false,
"type": "boolean"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-chat/v1/settings/{key}": {
"delete": {
"operationId": "DeleteLolChatV1SettingsByKey",
"parameters": [
{
"in": "path",
"name": "key",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "doAsync",
"required": false,
"type": "boolean"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"get": {
"operationId": "GetLolChatV1SettingsByKey",
"parameters": [
{
"in": "path",
"name": "key",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
},
"put": {
"operationId": "PutLolChatV1SettingsByKey",
"parameters": [
{
"in": "path",
"name": "key",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "doAsync",
"required": false,
"type": "boolean"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-chat"
]
}
},
"/lol-clash/v1/all-tournaments": {
"get": {
"operationId": "GetLolClashV1AllTournaments",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/TournamentDTO"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/bracket/{bracketId}": {
"get": {
"operationId": "GetLolClashV1BracketByBracketId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "bracketId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashBracket"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/checkin-allowed": {
"get": {
"operationId": "GetLolClashV1CheckinAllowed",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/currentTournamentIds": {
"get": {
"operationId": "GetLolClashV1CurrentTournamentIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/disabled-config": {
"get": {
"operationId": "GetLolClashV1DisabledConfig",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashClashDisabledConfig"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/enabled": {
"get": {
"operationId": "GetLolClashV1Enabled",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/eog-player-update": {
"get": {
"operationId": "GetLolClashV1EogPlayerUpdate",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashEogPlayerUpdateDTO"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/eog-player-update/acknowledge": {
"post": {
"operationId": "PostLolClashV1EogPlayerUpdateAcknowledge",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/event/{uuid}": {
"get": {
"operationId": "GetLolClashV1EventByUuid",
"parameters": [
{
"in": "path",
"name": "uuid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ClashEventData"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/events": {
"post": {
"operationId": "PostLolClashV1Events",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"$ref": "#/components/schemas/ClashEventData"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/game-end": {
"get": {
"operationId": "GetLolClashV1GameEnd",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashTournamentGameEnd"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/game-end/acknowledge": {
"post": {
"operationId": "PostLolClashV1GameEndAcknowledge",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/historyandwinners": {
"get": {
"operationId": "GetLolClashV1Historyandwinners",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashTournamentHistoryAndWinners"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/iconconfig": {
"get": {
"operationId": "GetLolClashV1Iconconfig",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/invited-roster-ids": {
"get": {
"operationId": "GetLolClashV1InvitedRosterIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/lft/player": {
"post": {
"operationId": "PostLolClashV1LftPlayer",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashLftState"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/lft/player/find": {
"post": {
"operationId": "PostLolClashV1LftPlayerFind",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashFindPlayers"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PlayerFinderDTO"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/lft/team": {
"post": {
"operationId": "PostLolClashV1LftTeam",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashTeamOpenState"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/lft/team/fetch-requests": {
"post": {
"operationId": "PostLolClashV1LftTeamFetchRequests",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/lft/team/find": {
"post": {
"operationId": "PostLolClashV1LftTeamFind",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashFindTeams"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/OpenedTeamDTO"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/lft/team/requests": {
"get": {
"operationId": "GetLolClashV1LftTeamRequests",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PendingOpenedTeamDTO"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/lft/team/{rosterId}/request": {
"post": {
"operationId": "PostLolClashV1LftTeamByRosterIdRequest",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/notifications": {
"get": {
"operationId": "GetLolClashV1Notifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashPlayerNotificationData"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/notifications/acknowledge": {
"post": {
"operationId": "PostLolClashV1NotificationsAcknowledge",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/ping": {
"get": {
"operationId": "GetLolClashV1Ping",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/player": {
"get": {
"operationId": "GetLolClashV1Player",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashPlayerData"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/player/chat-rosters": {
"get": {
"operationId": "GetLolClashV1PlayerChatRosters",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolClashPlayerChatRoster"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/player/history": {
"get": {
"operationId": "GetLolClashV1PlayerHistory",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolClashRosterStats"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/playmode-restricted": {
"get": {
"operationId": "GetLolClashV1PlaymodeRestricted",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/ready": {
"get": {
"operationId": "GetLolClashV1Ready",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/refresh": {
"post": {
"operationId": "PostLolClashV1Refresh",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/rewards": {
"get": {
"operationId": "GetLolClashV1Rewards",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashPlayerRewards"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}": {
"get": {
"operationId": "GetLolClashV1RosterByRosterId",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashRoster"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/accept": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdAccept",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/cancel-withdraw": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdCancelWithdraw",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/change-all-details": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdChangeAllDetails",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashRosterDetails"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/change-icon": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdChangeIcon",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashChangeIconRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/change-name": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdChangeName",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashChangeNameRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/change-short-name": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdChangeShortName",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashChangeNameRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/decline": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdDecline",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/disband": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdDisband",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/invite": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdInvite",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolClashClientFailedInvite"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/kick": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdKick",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashKickRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/leave": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdLeave",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/lockin": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdLockin",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/set-position": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdSetPosition",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashSetPositionRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/set-ticket": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdSetTicket",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashSetTicketRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/stats": {
"get": {
"operationId": "GetLolClashV1RosterByRosterIdStats",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "rosterId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashRosterStats"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/substitute/accept": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdSubstituteAccept",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/substitute/decline": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdSubstituteDecline",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/substitute/invite": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdSubstituteInvite",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashInviteSubRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolClashClientFailedInvite"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/substitute/reclaim": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdSubstituteReclaim",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/substitute/{summonerId}/revoke": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdSubstituteBySummonerIdRevoke",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
},
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/suggest": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdSuggest",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/suggest/{summonerId}/accept": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdSuggestBySummonerIdAccept",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
},
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/suggest/{summonerId}/decline": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdSuggestBySummonerIdDecline",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
},
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/suggest/{summonerId}/revoke": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdSuggestBySummonerIdRevoke",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
},
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/ticket-offer/{summonerId}/accept": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdTicketOfferBySummonerIdAccept",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
},
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/ticket-offer/{summonerId}/decline": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdTicketOfferBySummonerIdDecline",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
},
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/ticket-offer/{summonerId}/offer": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdTicketOfferBySummonerIdOffer",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
},
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashOfferTicketRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/ticket-offer/{summonerId}/revoke": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdTicketOfferBySummonerIdRevoke",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
},
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/transfer-captain": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdTransferCaptain",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/unlockin": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdUnlockin",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/unwithdraw": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdUnwithdraw",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/update-logos": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdUpdateLogos",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/roster/{rosterId}/withdraw": {
"post": {
"operationId": "PostLolClashV1RosterByRosterIdWithdraw",
"parameters": [
{
"in": "path",
"name": "rosterId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/scouting/champions": {
"get": {
"operationId": "GetLolClashV1ScoutingChampions",
"parameters": [
{
"in": "query",
"items": {
"format": "int64",
"type": "integer"
},
"name": "summonerIds",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolClashScoutingChampions"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/scouting/matchhistory": {
"get": {
"operationId": "GetLolClashV1ScoutingMatchhistory",
"parameters": [
{
"in": "query",
"items": {
"format": "int64",
"type": "integer"
},
"name": "summonerIds",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/season-rewards/{seasonId}": {
"get": {
"operationId": "GetLolClashV1SeasonRewardsBySeasonId",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "seasonId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ClashSeasonRewardResult"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/simple-state-flags": {
"get": {
"operationId": "GetLolClashV1SimpleStateFlags",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolClashSimpleStateFlag"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/simple-state-flags/{id}/acknowledge": {
"post": {
"operationId": "PostLolClashV1SimpleStateFlagsByIdAcknowledge",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/thirdparty/team-data": {
"get": {
"operationId": "GetLolClashV1ThirdpartyTeamData",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashThirdPartyApiRoster"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/time": {
"get": {
"operationId": "GetLolClashV1Time",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/tournament-state-info": {
"get": {
"operationId": "GetLolClashV1TournamentStateInfo",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolClashTournamentStateInfo"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/tournament-summary": {
"get": {
"operationId": "GetLolClashV1TournamentSummary",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolClashTournamentSummary"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/tournament/cancelled": {
"get": {
"operationId": "GetLolClashV1TournamentCancelled",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/tournament/get-all-player-tiers": {
"get": {
"operationId": "GetLolClashV1TournamentGetAllPlayerTiers",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PlayerTierDTO"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/tournament/{tournamentId}": {
"get": {
"operationId": "GetLolClashV1TournamentByTournamentId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "tournamentId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashTournament"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/tournament/{tournamentId}/create-roster": {
"post": {
"operationId": "PostLolClashV1TournamentByTournamentIdCreateRoster",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "tournamentId",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashRosterDetails"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/tournament/{tournamentId}/get-player-tiers": {
"get": {
"operationId": "GetLolClashV1TournamentByTournamentIdGetPlayerTiers",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "tournamentId",
"required": true,
"type": "integer"
},
{
"in": "query",
"items": {
"format": "int64",
"type": "integer"
},
"name": "summonerIds",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PlayerTierDTO"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/tournament/{tournamentId}/player": {
"get": {
"operationId": "GetLolClashV1TournamentByTournamentIdPlayer",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "tournamentId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashPlayerTournamentData"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/tournament/{tournamentId}/player-honor-restricted": {
"get": {
"operationId": "GetLolClashV1TournamentByTournamentIdPlayerHonorRestricted",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "tournamentId",
"required": false,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/tournament/{tournamentId}/stateInfo": {
"get": {
"operationId": "GetLolClashV1TournamentByTournamentIdStateInfo",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "tournamentId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashTournamentStateInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/tournament/{tournamentId}/winners": {
"get": {
"operationId": "GetLolClashV1TournamentByTournamentIdWinners",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "tournamentId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashTournamentWinnerHistory"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/update-logos": {
"post": {
"operationId": "PostLolClashV1UpdateLogos",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/visible": {
"get": {
"operationId": "GetLolClashV1Visible",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/voice": {
"delete": {
"operationId": "DeleteLolClashV1Voice",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
},
"post": {
"operationId": "PostLolClashV1Voice",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/voice-delay/{delaySeconds}": {
"delete": {
"operationId": "DeleteLolClashV1VoiceDelayByDelaySeconds",
"parameters": [
{
"format": "double",
"in": "path",
"name": "delaySeconds",
"required": true,
"type": "number"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
},
"post": {
"operationId": "PostLolClashV1VoiceDelayByDelaySeconds",
"parameters": [
{
"format": "double",
"in": "path",
"name": "delaySeconds",
"required": true,
"type": "number"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v1/voice-enabled": {
"get": {
"operationId": "GetLolClashV1VoiceEnabled",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-clash/v2/playmode-restricted": {
"get": {
"operationId": "GetLolClashV2PlaymodeRestricted",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolClashPlaymodeRestrictedInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-clash"
]
}
},
"/lol-client-config/v3/client-config/{name}": {
"get": {
"operationId": "GetLolClientConfigV3ClientConfigByName",
"parameters": [
{
"in": "path",
"name": "name",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-client-config"
]
}
},
"/lol-collections/v1/inventories/chest-eligibility": {
"get": {
"operationId": "GetLolCollectionsV1InventoriesChestEligibility",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolCollectionsCollectionsChestEligibility"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-collections"
]
}
},
"/lol-collections/v1/inventories/local-player/champion-mastery-score": {
"get": {
"operationId": "GetLolCollectionsV1InventoriesLocalPlayerChampionMasteryScore",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-collections"
]
}
},
"/lol-collections/v1/inventories/scouting": {
"get": {
"operationId": "GetLolCollectionsV1InventoriesScouting",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/RankedScoutingDTO"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-collections"
]
}
},
"/lol-collections/v1/inventories/{summonerId}/backdrop": {
"get": {
"operationId": "GetLolCollectionsV1InventoriesBySummonerIdBackdrop",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolCollectionsCollectionsSummonerBackdrop"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-collections"
]
}
},
"/lol-collections/v1/inventories/{summonerId}/champion-mastery": {
"get": {
"operationId": "GetLolCollectionsV1InventoriesBySummonerIdChampionMastery",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolCollectionsCollectionsChampionMastery"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-collections"
]
}
},
"/lol-collections/v1/inventories/{summonerId}/champion-mastery/top": {
"get": {
"operationId": "GetLolCollectionsV1InventoriesBySummonerIdChampionMasteryTop",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
},
{
"format": "int64",
"in": "query",
"name": "limit",
"required": true,
"type": "integer"
},
{
"in": "query",
"name": "sortRule",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolCollectionsCollectionsTopChampionMasteries"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-collections"
]
}
},
"/lol-collections/v1/inventories/{summonerId}/spells": {
"get": {
"operationId": "GetLolCollectionsV1InventoriesBySummonerIdSpells",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolCollectionsCollectionsSummonerSpells"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-collections"
]
}
},
"/lol-collections/v1/inventories/{summonerId}/verification": {
"put": {
"operationId": "PutLolCollectionsV1InventoriesBySummonerIdVerification",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-collections"
]
}
},
"/lol-collections/v1/inventories/{summonerId}/ward-skins": {
"get": {
"operationId": "GetLolCollectionsV1InventoriesBySummonerIdWardSkins",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolCollectionsCollectionsWardSkin"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-collections"
]
}
},
"/lol-collections/v1/inventories/{summonerId}/ward-skins/{wardSkinId}": {
"get": {
"operationId": "GetLolCollectionsV1InventoriesBySummonerIdWardSkinsByWardSkinId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
},
{
"format": "int64",
"in": "path",
"name": "wardSkinId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolCollectionsCollectionsWardSkin"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-collections"
]
}
},
"/lol-content-targeting/v1/filters": {
"get": {
"operationId": "GetLolContentTargetingV1Filters",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolContentTargetingContentTargetingFilterResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-content-targeting"
]
}
},
"/lol-content-targeting/v1/locale": {
"get": {
"operationId": "GetLolContentTargetingV1Locale",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolContentTargetingContentTargetingLocaleResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-content-targeting"
]
}
},
"/lol-content-targeting/v1/protected_filters": {
"get": {
"operationId": "GetLolContentTargetingV1ProtectedFilters",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolContentTargetingContentTargetingFilterResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-content-targeting"
]
}
},
"/lol-content-targeting/v1/tft_experiment_bucket": {
"put": {
"operationId": "PutLolContentTargetingV1TftExperimentBucket",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "integer"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-content-targeting"
]
}
},
"/lol-cosmetics/v1/inventories/{setName}/companions": {
"get": {
"operationId": "GetLolCosmeticsV1InventoriesBySetNameCompanions",
"parameters": [
{
"in": "path",
"name": "setName",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolCosmeticsCompanionsGroupedViewModel"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-cosmetics"
]
}
},
"/lol-cosmetics/v1/inventories/{setName}/damage-skins": {
"get": {
"operationId": "GetLolCosmeticsV1InventoriesBySetNameDamageSkins",
"parameters": [
{
"in": "path",
"name": "setName",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolCosmeticsTFTDamageSkinGroupedViewModel"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-cosmetics"
]
}
},
"/lol-cosmetics/v1/inventories/{setName}/map-skins": {
"get": {
"operationId": "GetLolCosmeticsV1InventoriesBySetNameMapSkins",
"parameters": [
{
"in": "path",
"name": "setName",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolCosmeticsTFTMapSkinGroupedViewModel"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-cosmetics"
]
}
},
"/lol-cosmetics/v1/recent/{type}": {
"patch": {
"operationId": "PatchLolCosmeticsV1RecentByType",
"parameters": [
{
"in": "path",
"name": "type",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-cosmetics"
]
}
},
"/lol-cosmetics/v1/selection/companion": {
"delete": {
"operationId": "DeleteLolCosmeticsV1SelectionCompanion",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-cosmetics"
]
},
"put": {
"operationId": "PutLolCosmeticsV1SelectionCompanion",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-cosmetics"
]
}
},
"/lol-cosmetics/v1/selection/tft-damage-skin": {
"delete": {
"operationId": "DeleteLolCosmeticsV1SelectionTftDamageSkin",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-cosmetics"
]
},
"put": {
"operationId": "PutLolCosmeticsV1SelectionTftDamageSkin",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-cosmetics"
]
}
},
"/lol-cosmetics/v1/selection/tft-map-skin": {
"delete": {
"operationId": "DeleteLolCosmeticsV1SelectionTftMapSkin",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-cosmetics"
]
},
"put": {
"operationId": "PutLolCosmeticsV1SelectionTftMapSkin",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-cosmetics"
]
}
},
"/lol-email-verification/v1/confirm-email": {
"post": {
"operationId": "PostLolEmailVerificationV1ConfirmEmail",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-email-verification"
]
}
},
"/lol-email-verification/v1/email": {
"get": {
"operationId": "GetLolEmailVerificationV1Email",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolEmailVerificationEmailVerificationSession"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-email-verification"
]
},
"put": {
"operationId": "PutLolEmailVerificationV1Email",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolEmailVerificationEmailUpdate"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-email-verification"
]
}
},
"/lol-end-of-game/v1/champion-mastery-updates": {
"get": {
"operationId": "GetLolEndOfGameV1ChampionMasteryUpdates",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolEndOfGameChampionMasteryUpdate"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-end-of-game"
]
}
},
"/lol-end-of-game/v1/eog-stats-block": {
"get": {
"operationId": "GetLolEndOfGameV1EogStatsBlock",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolEndOfGameEndOfGameStats"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-end-of-game"
]
}
},
"/lol-end-of-game/v1/gameclient-eog-stats-block": {
"get": {
"operationId": "GetLolEndOfGameV1GameclientEogStatsBlock",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolEndOfGameGameClientEndOfGameStats"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-end-of-game"
]
},
"post": {
"operationId": "PostLolEndOfGameV1GameclientEogStatsBlock",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolEndOfGameGameClientEndOfGameStats"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-end-of-game"
]
}
},
"/lol-end-of-game/v1/reported-players": {
"get": {
"operationId": "GetLolEndOfGameV1ReportedPlayers",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-end-of-game"
]
}
},
"/lol-end-of-game/v1/state/dismiss-stats": {
"post": {
"operationId": "PostLolEndOfGameV1StateDismissStats",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-end-of-game"
]
}
},
"/lol-end-of-game/v1/tft-eog-stats": {
"get": {
"operationId": "GetLolEndOfGameV1TftEogStats",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolEndOfGameTFTEndOfGameViewModel"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-end-of-game"
]
}
},
"/lol-end-of-game/v2/player-complaints": {
"post": {
"operationId": "PostLolEndOfGameV2PlayerComplaints",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolEndOfGameEndOfGamePlayerComplaintV2"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolEndOfGameEndOfGamePlayerComplaintV2"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-end-of-game"
]
}
},
"/lol-esport-stream-notifications/v1/live-streams": {
"get": {
"operationId": "GetLolEsportStreamNotificationsV1LiveStreams",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolEsportStreamNotificationsESportsLiveStreams"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-esport-stream-notifications"
]
}
},
"/lol-esport-stream-notifications/v1/send-stats": {
"post": {
"operationId": "PostLolEsportStreamNotificationsV1SendStats",
"parameters": [
{
"in": "path",
"name": "eventType",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "matchId",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-esport-stream-notifications"
]
}
},
"/lol-esport-stream-notifications/v1/stream-url": {
"get": {
"operationId": "GetLolEsportStreamNotificationsV1StreamUrl",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-esport-stream-notifications"
]
}
},
"/lol-game-client-chat/v1/buddies": {
"get": {
"operationId": "GetLolGameClientChatV1Buddies",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-client-chat"
]
}
},
"/lol-game-client-chat/v1/ignored-summoners": {
"get": {
"operationId": "GetLolGameClientChatV1IgnoredSummoners",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-client-chat"
]
}
},
"/lol-game-client-chat/v1/instant-messages": {
"post": {
"operationId": "PostLolGameClientChatV1InstantMessages",
"parameters": [
{
"in": "query",
"name": "summonerName",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "message",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-game-client-chat"
]
}
},
"/lol-game-client-chat/v1/muted-summoners": {
"get": {
"operationId": "GetLolGameClientChatV1MutedSummoners",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-client-chat"
]
}
},
"/lol-game-client-chat/v1/party-messages": {
"post": {
"operationId": "PostLolGameClientChatV1PartyMessages",
"parameters": [
{
"in": "query",
"name": "message",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-game-client-chat"
]
}
},
"/lol-game-queues/v1/custom": {
"get": {
"operationId": "GetLolGameQueuesV1Custom",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameQueuesQueueCustomGame"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-queues"
]
}
},
"/lol-game-queues/v1/custom-non-default": {
"get": {
"operationId": "GetLolGameQueuesV1CustomNonDefault",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameQueuesQueueCustomGame"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-queues"
]
}
},
"/lol-game-queues/v1/game-type-config/{gameTypeConfigId}": {
"get": {
"operationId": "GetLolGameQueuesV1GameTypeConfigByGameTypeConfigId",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "gameTypeConfigId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameQueuesQueueGameTypeConfig"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-queues"
]
}
},
"/lol-game-queues/v1/game-type-config/{gameTypeConfigId}/map/{mapId}": {
"get": {
"operationId": "GetLolGameQueuesV1GameTypeConfigByGameTypeConfigIdMapByMapId",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "gameTypeConfigId",
"required": true,
"type": "integer"
},
{
"format": "int32",
"in": "path",
"name": "mapId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameQueuesQueueGameTypeConfig"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-queues"
]
}
},
"/lol-game-queues/v1/queues": {
"get": {
"operationId": "GetLolGameQueuesV1Queues",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolGameQueuesQueue"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-queues"
]
}
},
"/lol-game-queues/v1/queues/type/{queueType}": {
"get": {
"operationId": "GetLolGameQueuesV1QueuesTypeByQueueType",
"parameters": [
{
"in": "path",
"name": "queueType",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameQueuesQueue"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-queues"
]
}
},
"/lol-game-queues/v1/queues/{id}": {
"get": {
"operationId": "GetLolGameQueuesV1QueuesById",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameQueuesQueue"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-queues"
]
}
},
"/lol-game-settings/v1/didreset": {
"get": {
"operationId": "GetLolGameSettingsV1Didreset",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-settings"
]
}
},
"/lol-game-settings/v1/game-settings": {
"get": {
"operationId": "GetLolGameSettingsV1GameSettings",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-settings"
]
},
"patch": {
"operationId": "PatchLolGameSettingsV1GameSettings",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-settings"
]
}
},
"/lol-game-settings/v1/game-settings-schema": {
"get": {
"operationId": "GetLolGameSettingsV1GameSettingsSchema",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-settings"
]
}
},
"/lol-game-settings/v1/input-settings": {
"get": {
"operationId": "GetLolGameSettingsV1InputSettings",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-settings"
]
},
"patch": {
"operationId": "PatchLolGameSettingsV1InputSettings",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-settings"
]
}
},
"/lol-game-settings/v1/input-settings-schema": {
"get": {
"operationId": "GetLolGameSettingsV1InputSettingsSchema",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-settings"
]
}
},
"/lol-game-settings/v1/ready": {
"get": {
"operationId": "GetLolGameSettingsV1Ready",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-settings"
]
}
},
"/lol-game-settings/v1/reload-post-game": {
"post": {
"operationId": "PostLolGameSettingsV1ReloadPostGame",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-game-settings"
]
}
},
"/lol-game-settings/v1/save": {
"post": {
"operationId": "PostLolGameSettingsV1Save",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-game-settings"
]
}
},
"/lol-gameflow/v1/ack-failed-to-launch": {
"post": {
"operationId": "PostLolGameflowV1AckFailedToLaunch",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/active-patcher-lock": {
"get": {
"operationId": "GetLolGameflowV1ActivePatcherLock",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/availability": {
"get": {
"operationId": "GetLolGameflowV1Availability",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameflowGameflowAvailability"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/basic-tutorial": {
"get": {
"operationId": "GetLolGameflowV1BasicTutorial",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/basic-tutorial/start": {
"post": {
"operationId": "PostLolGameflowV1BasicTutorialStart",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/battle-training": {
"get": {
"operationId": "GetLolGameflowV1BattleTraining",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/battle-training/start": {
"post": {
"operationId": "PostLolGameflowV1BattleTrainingStart",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/battle-training/stop": {
"post": {
"operationId": "PostLolGameflowV1BattleTrainingStop",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/client-received-message": {
"post": {
"operationId": "PostLolGameflowV1ClientReceivedMessage",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/early-exit": {
"post": {
"operationId": "PostLolGameflowV1EarlyExit",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/early-exit-notifications/eog": {
"delete": {
"operationId": "DeleteLolGameflowV1EarlyExitNotificationsEog",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
},
"get": {
"operationId": "GetLolGameflowV1EarlyExitNotificationsEog",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/early-exit-notifications/eog/{key}": {
"delete": {
"operationId": "DeleteLolGameflowV1EarlyExitNotificationsEogByKey",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "key",
"required": true,
"type": "integer"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/early-exit-notifications/missions": {
"delete": {
"operationId": "DeleteLolGameflowV1EarlyExitNotificationsMissions",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
},
"get": {
"operationId": "GetLolGameflowV1EarlyExitNotificationsMissions",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/early-exit-notifications/missions/{key}": {
"delete": {
"operationId": "DeleteLolGameflowV1EarlyExitNotificationsMissionsByKey",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "key",
"required": true,
"type": "integer"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/extra-game-client-args": {
"get": {
"operationId": "GetLolGameflowV1ExtraGameClientArgs",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
},
"post": {
"operationId": "PostLolGameflowV1ExtraGameClientArgs",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/gameflow-metadata/player-status": {
"get": {
"operationId": "GetLolGameflowV1GameflowMetadataPlayerStatus",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameflowPlayerStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
},
"post": {
"operationId": "PostLolGameflowV1GameflowMetadataPlayerStatus",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameflowPlayerStatus"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/gameflow-metadata/registration-status": {
"get": {
"operationId": "GetLolGameflowV1GameflowMetadataRegistrationStatus",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameflowRegistrationStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
},
"post": {
"operationId": "PostLolGameflowV1GameflowMetadataRegistrationStatus",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameflowRegistrationStatus"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/gameflow-phase": {
"get": {
"operationId": "GetLolGameflowV1GameflowPhase",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameflowGameflowPhase"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/pre-end-game-transition": {
"post": {
"operationId": "PostLolGameflowV1PreEndGameTransition",
"parameters": [
{
"in": "query",
"name": "enabled",
"required": true,
"type": "boolean"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/reconnect": {
"post": {
"operationId": "PostLolGameflowV1Reconnect",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/session": {
"get": {
"operationId": "GetLolGameflowV1Session",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameflowGameflowSession"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/session/dodge": {
"post": {
"operationId": "PostLolGameflowV1SessionDodge",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameflowGameflowGameDodge"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/session/event": {
"post": {
"operationId": "PostLolGameflowV1SessionEvent",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/session/game-configuration": {
"post": {
"operationId": "PostLolGameflowV1SessionGameConfiguration",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameflowQueue"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/session/per-position-summoner-spells/disallowed": {
"get": {
"operationId": "GetLolGameflowV1SessionPerPositionSummonerSpellsDisallowed",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"$ref": "#/components/schemas/LolGameflowGameModeSpellList"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/session/per-position-summoner-spells/disallowed/as-string": {
"get": {
"operationId": "GetLolGameflowV1SessionPerPositionSummonerSpellsDisallowedAsString",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/session/per-position-summoner-spells/required": {
"get": {
"operationId": "GetLolGameflowV1SessionPerPositionSummonerSpellsRequired",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"$ref": "#/components/schemas/LolGameflowGameModeSpellList"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/session/per-position-summoner-spells/required/as-string": {
"get": {
"operationId": "GetLolGameflowV1SessionPerPositionSummonerSpellsRequiredAsString",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/session/request-enter-gameflow": {
"post": {
"operationId": "PostLolGameflowV1SessionRequestEnterGameflow",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/session/request-lobby": {
"post": {
"operationId": "PostLolGameflowV1SessionRequestLobby",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/session/request-tournament-checkin": {
"post": {
"operationId": "PostLolGameflowV1SessionRequestTournamentCheckin",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/session/tournament-ended": {
"post": {
"operationId": "PostLolGameflowV1SessionTournamentEnded",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/spectate": {
"get": {
"operationId": "GetLolGameflowV1Spectate",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/spectate/delayed-launch": {
"get": {
"operationId": "GetLolGameflowV1SpectateDelayedLaunch",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/spectate/launch": {
"post": {
"operationId": "PostLolGameflowV1SpectateLaunch",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/spectate/quit": {
"post": {
"operationId": "PostLolGameflowV1SpectateQuit",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/tick": {
"post": {
"operationId": "PostLolGameflowV1Tick",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/watch": {
"get": {
"operationId": "GetLolGameflowV1Watch",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameflowGameflowWatchPhase"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v1/watch/launch": {
"post": {
"operationId": "PostLolGameflowV1WatchLaunch",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-gameflow/v2/spectate/launch": {
"post": {
"operationId": "PostLolGameflowV2SpectateLaunch",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGameflowSpectateGameInfoResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-gameflow"
]
}
},
"/lol-geoinfo/v1/getlocation": {
"get": {
"operationId": "GetLolGeoinfoV1Getlocation",
"parameters": [
{
"in": "query",
"name": "ip_address",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGeoinfoGeoInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-geoinfo"
]
}
},
"/lol-geoinfo/v1/whereami": {
"get": {
"operationId": "GetLolGeoinfoV1Whereami",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolGeoinfoGeoInfoResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-geoinfo"
]
}
},
"/lol-highlights/v1/config": {
"get": {
"operationId": "GetLolHighlightsV1Config",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHighlightsHighlightsConfig"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-highlights"
]
}
},
"/lol-highlights/v1/file-browser/{highlightId}": {
"post": {
"operationId": "PostLolHighlightsV1FileBrowserByHighlightId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "highlightId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-highlights"
]
}
},
"/lol-highlights/v1/highlights": {
"get": {
"operationId": "GetLolHighlightsV1Highlights",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolHighlightsHighlight"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-highlights"
]
},
"post": {
"operationId": "PostLolHighlightsV1Highlights",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolHighlightsHighlight"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-highlights"
]
}
},
"/lol-highlights/v1/highlights-folder-path": {
"get": {
"operationId": "GetLolHighlightsV1HighlightsFolderPath",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-highlights"
]
}
},
"/lol-highlights/v1/highlights-folder-path/default": {
"get": {
"operationId": "GetLolHighlightsV1HighlightsFolderPathDefault",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-highlights"
]
}
},
"/lol-highlights/v1/highlights/{id}": {
"delete": {
"operationId": "DeleteLolHighlightsV1HighlightsById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHighlightsHighlight"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-highlights"
]
},
"get": {
"operationId": "GetLolHighlightsV1HighlightsById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHighlightsHighlight"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-highlights"
]
},
"put": {
"operationId": "PutLolHighlightsV1HighlightsById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHighlightsHighlight"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHighlightsHighlight"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-highlights"
]
}
},
"/lol-honor-v2/v1/ballot": {
"get": {
"operationId": "GetLolHonorV2V1Ballot",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHonorV2Ballot"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/config": {
"get": {
"operationId": "GetLolHonorV2V1Config",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHonorV2HonorConfig"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/honor-player": {
"post": {
"operationId": "PostLolHonorV2V1HonorPlayer",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHonorV2ApiHonorPlayerServerRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/late-recognition": {
"get": {
"operationId": "GetLolHonorV2V1LateRecognition",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolHonorV2Honor"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/late-recognition/ack": {
"post": {
"operationId": "PostLolHonorV2V1LateRecognitionAck",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/latest-eligible-game": {
"get": {
"operationId": "GetLolHonorV2V1LatestEligibleGame",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/level-change": {
"get": {
"operationId": "GetLolHonorV2V1LevelChange",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHonorV2VendedHonorChange"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/level-change/ack": {
"post": {
"operationId": "PostLolHonorV2V1LevelChangeAck",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/mutual-honor": {
"get": {
"operationId": "GetLolHonorV2V1MutualHonor",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHonorV2MutualHonor"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/mutual-honor/ack": {
"post": {
"operationId": "PostLolHonorV2V1MutualHonorAck",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/profile": {
"get": {
"operationId": "GetLolHonorV2V1Profile",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHonorV2ProfileInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/recognition": {
"get": {
"operationId": "GetLolHonorV2V1Recognition",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolHonorV2Honor"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/reward-granted": {
"get": {
"operationId": "GetLolHonorV2V1RewardGranted",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHonorV2VendedReward"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/reward-granted/ack": {
"post": {
"operationId": "PostLolHonorV2V1RewardGrantedAck",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/team-choices": {
"get": {
"operationId": "GetLolHonorV2V1TeamChoices",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-honor-v2/v1/vote-completion": {
"get": {
"operationId": "GetLolHonorV2V1VoteCompletion",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHonorV2VoteCompletion"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-honor-v2"
]
}
},
"/lol-hovercard/v1/friend-info-by-summoner/{summonerId}": {
"get": {
"operationId": "GetLolHovercardV1FriendInfoBySummonerBySummonerId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHovercardHovercardUserInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-hovercard"
]
}
},
"/lol-hovercard/v1/friend-info/{puuid}": {
"get": {
"operationId": "GetLolHovercardV1FriendInfoByPuuid",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolHovercardHovercardUserInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-hovercard"
]
}
},
"/lol-inventory/v1/champSelectInventory": {
"get": {
"operationId": "GetLolInventoryV1ChampSelectInventory",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/initial-configuration-complete": {
"get": {
"operationId": "GetLolInventoryV1InitialConfigurationComplete",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/inventory": {
"get": {
"operationId": "GetLolInventoryV1Inventory",
"parameters": [
{
"in": "query",
"items": {
"type": "string"
},
"name": "inventoryTypes",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolInventoryInventoryItemWithPayload"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/inventory/emotes": {
"get": {
"operationId": "GetLolInventoryV1InventoryEmotes",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolInventoryInventoryItemWithPayload"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/notification/acknowledge": {
"post": {
"operationId": "PostLolInventoryV1NotificationAcknowledge",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/notifications/{inventoryType}": {
"get": {
"operationId": "GetLolInventoryV1NotificationsByInventoryType",
"parameters": [
{
"in": "path",
"name": "inventoryType",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolInventoryInventoryNotification"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/players/{puuid}/inventory": {
"get": {
"operationId": "GetLolInventoryV1PlayersByPuuidInventory",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
},
{
"in": "query",
"items": {
"type": "string"
},
"name": "inventoryTypes",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolInventoryInventoryItemWithPayload"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/signedInventory": {
"get": {
"operationId": "GetLolInventoryV1SignedInventory",
"parameters": [
{
"in": "query",
"items": {
"type": "string"
},
"name": "inventoryTypes",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/signedInventory/simple": {
"get": {
"operationId": "GetLolInventoryV1SignedInventorySimple",
"parameters": [
{
"in": "query",
"items": {
"type": "string"
},
"name": "inventoryTypes",
"required": true,
"type": "array"
},
{
"additionalProperties": {
"type": "string"
},
"in": "query",
"name": "queryParams",
"required": false,
"type": "object"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/signedInventory/tournamentlogos": {
"get": {
"operationId": "GetLolInventoryV1SignedInventoryTournamentlogos",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/signedInventoryCache": {
"get": {
"operationId": "GetLolInventoryV1SignedInventoryCache",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"$ref": "#/components/schemas/LolInventoryInventoryCacheEntry"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/signedWallet": {
"get": {
"operationId": "GetLolInventoryV1SignedWallet",
"parameters": [
{
"in": "query",
"items": {
"type": "string"
},
"name": "currencyTypes",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/signedWallet/{currencyType}": {
"get": {
"operationId": "GetLolInventoryV1SignedWalletByCurrencyType",
"parameters": [
{
"in": "path",
"name": "currencyType",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/wallet": {
"get": {
"operationId": "GetLolInventoryV1Wallet",
"parameters": [
{
"in": "query",
"items": {
"type": "string"
},
"name": "currencyTypes",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v1/wallet/{currencyType}": {
"get": {
"operationId": "GetLolInventoryV1WalletByCurrencyType",
"parameters": [
{
"in": "path",
"name": "currencyType",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-inventory/v2/inventory/{inventoryType}": {
"get": {
"operationId": "GetLolInventoryV2InventoryByInventoryType",
"parameters": [
{
"in": "path",
"name": "inventoryType",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolInventoryInventoryItemWithPayload"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-inventory"
]
}
},
"/lol-item-sets/v1/item-sets/{summonerId}/sets": {
"get": {
"operationId": "GetLolItemSetsV1ItemSetsBySummonerIdSets",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolItemSetsItemSets"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-item-sets"
]
},
"post": {
"operationId": "PostLolItemSetsV1ItemSetsBySummonerIdSets",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolItemSetsItemSet"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-item-sets"
]
},
"put": {
"operationId": "PutLolItemSetsV1ItemSetsBySummonerIdSets",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolItemSetsItemSets"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-item-sets"
]
}
},
"/lol-item-sets/v1/item-sets/{summonerId}/validate": {
"post": {
"operationId": "PostLolItemSetsV1ItemSetsBySummonerIdValidate",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolItemSetsValidateItemSetNameInput"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolItemSetsValidateItemSetNameResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-item-sets"
]
}
},
"/lol-kickout/v1/notification": {
"get": {
"operationId": "GetLolKickoutV1Notification",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolKickoutKickoutMessage"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-kickout"
]
}
},
"/lol-kr-playtime-reminder/v1/message": {
"get": {
"operationId": "GetLolKrPlaytimeReminderV1Message",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-kr-playtime-reminder"
]
}
},
"/lol-kr-playtime-reminder/v1/playtime": {
"get": {
"operationId": "GetLolKrPlaytimeReminderV1Playtime",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolKrPlaytimeReminderPlaytimeReminder"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-kr-playtime-reminder"
]
}
},
"/lol-kr-shutdown-law/v1/custom-status": {
"get": {
"operationId": "GetLolKrShutdownLawV1CustomStatus",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolKrShutdownLawQueueShutdownStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-kr-shutdown-law"
]
}
},
"/lol-kr-shutdown-law/v1/disabled-queues": {
"get": {
"operationId": "GetLolKrShutdownLawV1DisabledQueues",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-kr-shutdown-law"
]
}
},
"/lol-kr-shutdown-law/v1/notification": {
"get": {
"operationId": "GetLolKrShutdownLawV1Notification",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolKrShutdownLawShutdownLawNotification"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-kr-shutdown-law"
]
}
},
"/lol-kr-shutdown-law/v1/queue-status/{queue_id}": {
"get": {
"operationId": "GetLolKrShutdownLawV1QueueStatusByQueueId",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "queue_id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolKrShutdownLawQueueShutdownStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-kr-shutdown-law"
]
}
},
"/lol-kr-shutdown-law/v1/rating-screen": {
"get": {
"operationId": "GetLolKrShutdownLawV1RatingScreen",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolKrShutdownLawRatingScreenInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-kr-shutdown-law"
]
}
},
"/lol-kr-shutdown-law/v1/rating-screen/acknowledge": {
"post": {
"operationId": "PostLolKrShutdownLawV1RatingScreenAcknowledge",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-kr-shutdown-law"
]
}
},
"/lol-kr-shutdown-law/v1/status": {
"get": {
"operationId": "GetLolKrShutdownLawV1Status",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolKrShutdownLawAllQueueShutdownStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-kr-shutdown-law"
]
}
},
"/lol-league-session/v1/league-session-token": {
"get": {
"operationId": "GetLolLeagueSessionV1LeagueSessionToken",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-league-session"
]
}
},
"/lol-leaver-buster/v1/notifications": {
"get": {
"operationId": "GetLolLeaverBusterV1Notifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLeaverBusterLeaverBusterNotificationResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-leaver-buster"
]
}
},
"/lol-leaver-buster/v1/notifications/{id}": {
"delete": {
"operationId": "DeleteLolLeaverBusterV1NotificationsById",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-leaver-buster"
]
},
"get": {
"operationId": "GetLolLeaverBusterV1NotificationsById",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLeaverBusterLeaverBusterNotificationResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-leaver-buster"
]
}
},
"/lol-license-agreement/v1/agreements": {
"get": {
"operationId": "GetLolLicenseAgreementV1Agreements",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLicenseAgreementLicenseAgreement"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-license-agreement"
]
}
},
"/lol-license-agreement/v1/agreements/{id}/accept": {
"post": {
"operationId": "PostLolLicenseAgreementV1AgreementsByIdAccept",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-license-agreement"
]
}
},
"/lol-license-agreement/v1/agreements/{id}/decline": {
"post": {
"operationId": "PostLolLicenseAgreementV1AgreementsByIdDecline",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-license-agreement"
]
}
},
"/lol-license-agreement/v1/all-agreements": {
"get": {
"operationId": "GetLolLicenseAgreementV1AllAgreements",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLicenseAgreementLicenseAgreement"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-license-agreement"
]
}
},
"/lol-license-agreement/v1/serve-location": {
"get": {
"operationId": "GetLolLicenseAgreementV1ServeLocation",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLicenseAgreementLicenseServeLocation"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-license-agreement"
]
}
},
"/lol-loadouts/v1/loadouts-ready": {
"get": {
"operationId": "GetLolLoadoutsV1LoadoutsReady",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loadouts"
]
}
},
"/lol-loadouts/v4/loadouts": {
"post": {
"operationId": "PostLolLoadoutsV4Loadouts",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoadoutsCreateLoadoutDTO"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoadoutsScopedLoadout"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loadouts"
]
}
},
"/lol-loadouts/v4/loadouts/scope/account": {
"get": {
"operationId": "GetLolLoadoutsV4LoadoutsScopeAccount",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLoadoutsScopedLoadout"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loadouts"
]
}
},
"/lol-loadouts/v4/loadouts/scope/{scope}/{scopeItemId}": {
"get": {
"operationId": "GetLolLoadoutsV4LoadoutsScopeByScopeByScopeItemId",
"parameters": [
{
"in": "path",
"name": "scope",
"required": true,
"type": "string"
},
{
"format": "int32",
"in": "path",
"name": "scopeItemId",
"required": false,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLoadoutsScopedLoadout"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loadouts"
]
}
},
"/lol-loadouts/v4/loadouts/{id}": {
"delete": {
"operationId": "DeleteLolLoadoutsV4LoadoutsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-loadouts"
]
},
"patch": {
"operationId": "PatchLolLoadoutsV4LoadoutsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoadoutsUpdateLoadoutDTO"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoadoutsScopedLoadout"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loadouts"
]
},
"put": {
"operationId": "PutLolLoadoutsV4LoadoutsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoadoutsUpdateLoadoutDTO"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoadoutsScopedLoadout"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loadouts"
]
}
},
"/lol-loadouts/v4/loadouts/{loadoutId}": {
"get": {
"operationId": "GetLolLoadoutsV4LoadoutsByLoadoutId",
"parameters": [
{
"in": "path",
"name": "loadoutId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoadoutsScopedLoadout"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loadouts"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/bannable-champion-ids": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1BannableChampionIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/current-champion": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1CurrentChampion",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/disabled-champion-ids": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1DisabledChampionIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/has-auto-assigned-smite": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1HasAutoAssignedSmite",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/implementation-active": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1ImplementationActive",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/match-token": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1MatchToken",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/pickable-champion-ids": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1PickableChampionIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/pickable-skin-ids": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1PickableSkinIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/preferences": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1Preferences",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampionSelectPreferences"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/retrieve-latest-game-dto": {
"post": {
"operationId": "PostLolLobbyTeamBuilderChampSelectV1RetrieveLatestGameDto",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/sending-loadouts-gcos-enabled": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1SendingLoadoutsGcosEnabled",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/session": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1Session",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampSelectSession"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/session/actions/{id}": {
"patch": {
"operationId": "PatchLolLobbyTeamBuilderChampSelectV1SessionActionsById",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampSelectAction"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/session/actions/{id}/complete": {
"post": {
"operationId": "PostLolLobbyTeamBuilderChampSelectV1SessionActionsByIdComplete",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/session/bench/swap/{championId}": {
"post": {
"operationId": "PostLolLobbyTeamBuilderChampSelectV1SessionBenchSwapByChampionId",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "championId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/session/my-selection": {
"patch": {
"operationId": "PatchLolLobbyTeamBuilderChampSelectV1SessionMySelection",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampSelectMySelection"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/session/my-selection/reroll": {
"post": {
"operationId": "PostLolLobbyTeamBuilderChampSelectV1SessionMySelectionReroll",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/session/timer": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1SessionTimer",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampSelectTimer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/session/trades": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1SessionTrades",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampSelectTradeContract"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/session/trades/{id}": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1SessionTradesById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampSelectTradeContract"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/session/trades/{id}/accept": {
"post": {
"operationId": "PostLolLobbyTeamBuilderChampSelectV1SessionTradesByIdAccept",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/session/trades/{id}/cancel": {
"post": {
"operationId": "PostLolLobbyTeamBuilderChampSelectV1SessionTradesByIdCancel",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/session/trades/{id}/decline": {
"post": {
"operationId": "PostLolLobbyTeamBuilderChampSelectV1SessionTradesByIdDecline",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/session/trades/{id}/request": {
"post": {
"operationId": "PostLolLobbyTeamBuilderChampSelectV1SessionTradesByIdRequest",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderChampSelectTradeContract"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/simple-inventory": {
"post": {
"operationId": "PostLolLobbyTeamBuilderChampSelectV1SimpleInventory",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/team-boost": {
"get": {
"operationId": "GetLolLobbyTeamBuilderChampSelectV1TeamBoost",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderTeamBoost"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/champ-select/v1/team-boost/purchase": {
"post": {
"operationId": "PostLolLobbyTeamBuilderChampSelectV1TeamBoostPurchase",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/v1/matchmaking": {
"get": {
"operationId": "GetLolLobbyTeamBuilderV1Matchmaking",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyTeamBuilderMatchmakingSearchResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/v1/ready-check/accept": {
"post": {
"operationId": "PostLolLobbyTeamBuilderV1ReadyCheckAccept",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby-team-builder/v1/ready-check/decline": {
"post": {
"operationId": "PostLolLobbyTeamBuilderV1ReadyCheckDecline",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby-team-builder"
]
}
},
"/lol-lobby/v1/autofill-displayed": {
"get": {
"operationId": "GetLolLobbyV1AutofillDisplayed",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
},
"put": {
"operationId": "PutLolLobbyV1AutofillDisplayed",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/clash": {
"delete": {
"operationId": "DeleteLolLobbyV1Clash",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
},
"post": {
"operationId": "PostLolLobbyV1Clash",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/custom-games": {
"get": {
"operationId": "GetLolLobbyV1CustomGames",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyCustomGame"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/custom-games/refresh": {
"post": {
"operationId": "PostLolLobbyV1CustomGamesRefresh",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/custom-games/{id}": {
"get": {
"operationId": "GetLolLobbyV1CustomGamesById",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyCustomGame"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/custom-games/{id}/join": {
"post": {
"operationId": "PostLolLobbyV1CustomGamesByIdJoin",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyCustomJoinParameters"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/lobby/availability": {
"get": {
"operationId": "GetLolLobbyV1LobbyAvailability",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyQueueAvailability"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/lobby/countdown": {
"get": {
"operationId": "GetLolLobbyV1LobbyCountdown",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/lobby/custom/bots": {
"post": {
"operationId": "PostLolLobbyV1LobbyCustomBots",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyBotParams"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/lobby/custom/bots/{summonerInternalName}": {
"delete": {
"operationId": "DeleteLolLobbyV1LobbyCustomBotsBySummonerInternalName",
"parameters": [
{
"in": "path",
"name": "summonerInternalName",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
},
"post": {
"operationId": "PostLolLobbyV1LobbyCustomBotsBySummonerInternalName",
"parameters": [
{
"in": "path",
"name": "summonerInternalName",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyBotParams"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/lobby/custom/cancel-champ-select": {
"post": {
"operationId": "PostLolLobbyV1LobbyCustomCancelChampSelect",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/lobby/custom/start-champ-select": {
"post": {
"operationId": "PostLolLobbyV1LobbyCustomStartChampSelect",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyCustomChampSelectStartResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/lobby/custom/switch-teams": {
"post": {
"operationId": "PostLolLobbyV1LobbyCustomSwitchTeams",
"parameters": [
{
"in": "query",
"name": "team",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/lobby/invitations": {
"get": {
"operationId": "GetLolLobbyV1LobbyInvitations",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyInvitation"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
},
"post": {
"operationId": "PostLolLobbyV1LobbyInvitations",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyInvitation"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyInvitation"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/lobby/invitations/{id}": {
"get": {
"operationId": "GetLolLobbyV1LobbyInvitationsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyInvitation"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/lobby/members/localMember/position-preferences": {
"put": {
"operationId": "PutLolLobbyV1LobbyMembersLocalMemberPositionPreferences",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyPositionPreferences"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/parties/active": {
"put": {
"operationId": "PutLolLobbyV1PartiesActive",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/parties/gamemode": {
"get": {
"operationId": "GetLolLobbyV1PartiesGamemode",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyGameModeDto"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/parties/metadata": {
"put": {
"operationId": "PutLolLobbyV1PartiesMetadata",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyPartyMemberMetadataDto"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/parties/player": {
"get": {
"operationId": "GetLolLobbyV1PartiesPlayer",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyPlayerDto"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/parties/queue": {
"put": {
"operationId": "PutLolLobbyV1PartiesQueue",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/parties/ready": {
"put": {
"operationId": "PutLolLobbyV1PartiesReady",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/parties/{partyId}/members/{puuid}/role": {
"put": {
"operationId": "PutLolLobbyV1PartiesByPartyIdMembersByPuuidRole",
"parameters": [
{
"in": "path",
"name": "partyId",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/party-rewards": {
"get": {
"operationId": "GetLolLobbyV1PartyRewards",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyPartyRewards"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v1/tournaments/{id}/join": {
"post": {
"operationId": "PostLolLobbyV1TournamentsByIdJoin",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/comms/members": {
"get": {
"operationId": "GetLolLobbyV2CommsMembers",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyPremadePartyDto"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/comms/token": {
"get": {
"operationId": "GetLolLobbyV2CommsToken",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/eligibility/game-select-eligibility-hash": {
"get": {
"operationId": "GetLolLobbyV2EligibilityGameSelectEligibilityHash",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/eligibility/initial-configuration-complete": {
"get": {
"operationId": "GetLolLobbyV2EligibilityInitialConfigurationComplete",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/eligibility/party": {
"post": {
"operationId": "PostLolLobbyV2EligibilityParty",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyEligibility"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/eligibility/self": {
"post": {
"operationId": "PostLolLobbyV2EligibilitySelf",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyEligibility"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/eog-invitations": {
"post": {
"operationId": "PostLolLobbyV2EogInvitations",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyInvitationDto"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyInvitationDto"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby": {
"delete": {
"operationId": "DeleteLolLobbyV2Lobby",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
},
"get": {
"operationId": "GetLolLobbyV2Lobby",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyDto"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
},
"post": {
"operationId": "PostLolLobbyV2Lobby",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyChangeGameDto"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyDto"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby/custom/available-bots": {
"get": {
"operationId": "GetLolLobbyV2LobbyCustomAvailableBots",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyBotChampion"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby/custom/bots-enabled": {
"get": {
"operationId": "GetLolLobbyV2LobbyCustomBotsEnabled",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby/invitations": {
"get": {
"operationId": "GetLolLobbyV2LobbyInvitations",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyInvitationDto"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
},
"post": {
"operationId": "PostLolLobbyV2LobbyInvitations",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyInvitationDto"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyInvitationDto"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby/matchmaking/search": {
"delete": {
"operationId": "DeleteLolLobbyV2LobbyMatchmakingSearch",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
},
"post": {
"operationId": "PostLolLobbyV2LobbyMatchmakingSearch",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby/matchmaking/search-state": {
"get": {
"operationId": "GetLolLobbyV2LobbyMatchmakingSearchState",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyMatchmakingSearchResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby/members": {
"get": {
"operationId": "GetLolLobbyV2LobbyMembers",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyParticipantDto"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby/members/localMember/position-preferences": {
"put": {
"operationId": "PutLolLobbyV2LobbyMembersLocalMemberPositionPreferences",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyPositionPreferences"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby/members/{summonerId}/grant-invite": {
"post": {
"operationId": "PostLolLobbyV2LobbyMembersBySummonerIdGrantInvite",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby/members/{summonerId}/kick": {
"post": {
"operationId": "PostLolLobbyV2LobbyMembersBySummonerIdKick",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby/members/{summonerId}/promote": {
"post": {
"operationId": "PostLolLobbyV2LobbyMembersBySummonerIdPromote",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby/members/{summonerId}/revoke-invite": {
"post": {
"operationId": "PostLolLobbyV2LobbyMembersBySummonerIdRevokeInvite",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby/partyType": {
"put": {
"operationId": "PutLolLobbyV2LobbyPartyType",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/lobby/team/{team}": {
"post": {
"operationId": "PostLolLobbyV2LobbyTeamByTeam",
"parameters": [
{
"in": "path",
"name": "team",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/matchmaking/quick-search": {
"post": {
"operationId": "PostLolLobbyV2MatchmakingQuickSearch",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyChangeGameDto"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/notifications": {
"get": {
"operationId": "GetLolLobbyV2Notifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyLobbyNotification"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
},
"post": {
"operationId": "PostLolLobbyV2Notifications",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyLobbyNotification"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/notifications/{notificationId}": {
"delete": {
"operationId": "DeleteLolLobbyV2NotificationsByNotificationId",
"parameters": [
{
"in": "path",
"name": "notificationId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/parties/overrides/EnabledForTeamBuilderQueues": {
"post": {
"operationId": "PostLolLobbyV2PartiesOverridesEnabledForTeamBuilderQueues",
"parameters": [
{
"in": "query",
"name": "enabledForTeambuilderQueues",
"required": true,
"type": "boolean"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/party-active": {
"get": {
"operationId": "GetLolLobbyV2PartyActive",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/party/eog-status": {
"get": {
"operationId": "GetLolLobbyV2PartyEogStatus",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyPartyStatusDto"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/party/{partyId}/join": {
"post": {
"operationId": "PostLolLobbyV2PartyByPartyIdJoin",
"parameters": [
{
"in": "path",
"name": "partyId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLobbyCustomJoinOptionsDto"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/play-again": {
"post": {
"operationId": "PostLolLobbyV2PlayAgain",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/play-again-decline": {
"post": {
"operationId": "PostLolLobbyV2PlayAgainDecline",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/received-invitations": {
"get": {
"operationId": "GetLolLobbyV2ReceivedInvitations",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLobbyReceivedInvitationDto"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/received-invitations/{invitationId}/accept": {
"post": {
"operationId": "PostLolLobbyV2ReceivedInvitationsByInvitationIdAccept",
"parameters": [
{
"in": "path",
"name": "invitationId",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/received-invitations/{invitationId}/decline": {
"post": {
"operationId": "PostLolLobbyV2ReceivedInvitationsByInvitationIdDecline",
"parameters": [
{
"in": "path",
"name": "invitationId",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-lobby/v2/registration-status": {
"get": {
"operationId": "GetLolLobbyV2RegistrationStatus",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-lobby"
]
}
},
"/lol-login/v1/account-state": {
"get": {
"operationId": "GetLolLoginV1AccountState",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoginAccountStateResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
},
"post": {
"operationId": "PostLolLoginV1AccountState",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/change-summoner-name": {
"post": {
"operationId": "PostLolLoginV1ChangeSummonerName",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/delete-rso-on-close": {
"post": {
"operationId": "PostLolLoginV1DeleteRsoOnClose",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/leagueSessionStatus": {
"post": {
"operationId": "PostLolLoginV1LeagueSessionStatus",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoginLeagueSessionStatus"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/login-connection-state": {
"get": {
"operationId": "GetLolLoginV1LoginConnectionState",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoginLoginConnectionState"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/login-data-packet": {
"get": {
"operationId": "GetLolLoginV1LoginDataPacket",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/login-in-game-creds": {
"get": {
"operationId": "GetLolLoginV1LoginInGameCreds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/login-platform-credentials": {
"get": {
"operationId": "GetLolLoginV1LoginPlatformCredentials",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoginPlatformGeneratedCredentials"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/login-queue-state": {
"get": {
"operationId": "GetLolLoginV1LoginQueueState",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoginLoginQueue"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/service-proxy-async-requests/{serviceName}/{methodName}": {
"delete": {
"operationId": "DeleteLolLoginV1ServiceProxyAsyncRequestsByServiceNameByMethodName",
"parameters": [
{
"in": "path",
"name": "serviceName",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "methodName",
"required": true,
"type": "string"
},
{
"format": "int32",
"in": "query",
"name": "pluginId",
"required": true,
"type": "integer"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
},
"post": {
"operationId": "PostLolLoginV1ServiceProxyAsyncRequestsByServiceNameByMethodName",
"parameters": [
{
"in": "path",
"name": "serviceName",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "methodName",
"required": true,
"type": "string"
},
{
"format": "int32",
"in": "query",
"name": "pluginId",
"required": true,
"type": "integer"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/service-proxy-uuid-requests": {
"post": {
"operationId": "PostLolLoginV1ServiceProxyUuidRequests",
"parameters": [
{
"in": "query",
"name": "serviceName",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "methodName",
"required": true,
"type": "string"
},
{
"format": "int32",
"in": "query",
"name": "pluginId",
"required": true,
"type": "integer"
},
{
"format": "int64",
"in": "query",
"name": "timeoutMillis",
"required": true,
"type": "integer"
},
{
"in": "query",
"name": "payload",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/session": {
"delete": {
"operationId": "DeleteLolLoginV1Session",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
},
"get": {
"operationId": "GetLolLoginV1Session",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoginLoginSession"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
},
"post": {
"operationId": "PostLolLoginV1Session",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoginUsernameAndPassword"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoginLoginSession"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/session/invoke": {
"post": {
"operationId": "PostLolLoginV1SessionInvoke",
"parameters": [
{
"in": "query",
"name": "destination",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "method",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/x-www-form-urlencoded": {}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoginLcdsResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/shutdown-locks/{lockName}": {
"delete": {
"operationId": "DeleteLolLoginV1ShutdownLocksByLockName",
"parameters": [
{
"in": "path",
"name": "lockName",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
},
"put": {
"operationId": "PutLolLoginV1ShutdownLocksByLockName",
"parameters": [
{
"in": "path",
"name": "lockName",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/summoner-session": {
"post": {
"operationId": "PostLolLoginV1SummonerSession",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoginSummonerSessionResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/summoner-session-failed": {
"post": {
"operationId": "PostLolLoginV1SummonerSessionFailed",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v1/wallet": {
"get": {
"operationId": "GetLolLoginV1Wallet",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoginLoginSessionWallet"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-login/v2/league-session-init-token": {
"get": {
"operationId": "GetLolLoginV2LeagueSessionInitToken",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoginLeagueSessionTokenEnvelope"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-login"
]
}
},
"/lol-loot/v1/currency-configuration": {
"get": {
"operationId": "GetLolLootV1CurrencyConfiguration",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/enabled": {
"get": {
"operationId": "GetLolLootV1Enabled",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/loot-grants": {
"get": {
"operationId": "GetLolLootV1LootGrants",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLootLootGrantNotification"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/loot-grants/{id}": {
"delete": {
"operationId": "DeleteLolLootV1LootGrantsById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/loot-items": {
"get": {
"operationId": "GetLolLootV1LootItems",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLootLootItem"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/loot-odds/{recipeName}": {
"get": {
"operationId": "GetLolLootV1LootOddsByRecipeName",
"parameters": [
{
"in": "path",
"name": "recipeName",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLootVerboseLootOddsResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/milestones": {
"get": {
"operationId": "GetLolLootV1Milestones",
"parameters": [
{
"in": "query",
"name": "minimizeResponse",
"required": true,
"type": "boolean"
},
{
"in": "query",
"name": "includeInactive",
"required": false,
"type": "boolean"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLootLootMilestones"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/milestones/counters": {
"get": {
"operationId": "GetLolLootV1MilestonesCounters",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLootLootMilestonesCounter"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/milestones/items": {
"get": {
"operationId": "GetLolLootV1MilestonesItems",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/milestones/{lootMilestonesId}": {
"get": {
"operationId": "GetLolLootV1MilestonesByLootMilestonesId",
"parameters": [
{
"in": "path",
"name": "lootMilestonesId",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "includeInactive",
"required": false,
"type": "boolean"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLootLootMilestones"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/milestones/{lootMilestonesId}/claim": {
"post": {
"operationId": "PostLolLootV1MilestonesByLootMilestonesIdClaim",
"parameters": [
{
"in": "path",
"name": "lootMilestonesId",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/milestones/{lootMilestonesId}/claimProgress": {
"get": {
"operationId": "GetLolLootV1MilestonesByLootMilestonesIdClaimProgress",
"parameters": [
{
"in": "path",
"name": "lootMilestonesId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLootLootMilestonesClaimResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/milestones/{lootMilestonesId}/counter": {
"get": {
"operationId": "GetLolLootV1MilestonesByLootMilestonesIdCounter",
"parameters": [
{
"in": "path",
"name": "lootMilestonesId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLootLootMilestonesCounter"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/new-player-check-done": {
"get": {
"operationId": "GetLolLootV1NewPlayerCheckDone",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/new-player-check-done/{newValue}": {
"post": {
"operationId": "PostLolLootV1NewPlayerCheckDoneByNewValue",
"parameters": [
{
"in": "path",
"name": "newValue",
"required": true,
"type": "boolean"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/player-display-categories": {
"get": {
"operationId": "GetLolLootV1PlayerDisplayCategories",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/player-loot": {
"get": {
"operationId": "GetLolLootV1PlayerLoot",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLootPlayerLoot"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/player-loot-map": {
"get": {
"operationId": "GetLolLootV1PlayerLootMap",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"$ref": "#/components/schemas/LolLootPlayerLoot"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/player-loot-notifications": {
"get": {
"operationId": "GetLolLootV1PlayerLootNotifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLootPlayerLootNotification"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/player-loot-notifications/{id}/acknowledge": {
"post": {
"operationId": "PostLolLootV1PlayerLootNotificationsByIdAcknowledge",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/player-loot/{lootId}": {
"get": {
"operationId": "GetLolLootV1PlayerLootByLootId",
"parameters": [
{
"in": "path",
"name": "lootId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLootPlayerLoot"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/player-loot/{lootId}/context-menu": {
"get": {
"operationId": "GetLolLootV1PlayerLootByLootIdContextMenu",
"parameters": [
{
"in": "path",
"name": "lootId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLootContextMenu"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
},
"post": {
"operationId": "PostLolLootV1PlayerLootByLootIdContextMenu",
"parameters": [
{
"in": "path",
"name": "lootId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLootContextMenu"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/player-loot/{lootId}/new-notification": {
"delete": {
"operationId": "DeleteLolLootV1PlayerLootByLootIdNewNotification",
"parameters": [
{
"in": "path",
"name": "lootId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/player-loot/{lootName}/redeem": {
"post": {
"operationId": "PostLolLootV1PlayerLootByLootNameRedeem",
"parameters": [
{
"in": "path",
"name": "lootName",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLootPlayerLootUpdate"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/ready": {
"get": {
"operationId": "GetLolLootV1Ready",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/recipes/configuration": {
"get": {
"operationId": "GetLolLootV1RecipesConfiguration",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/recipes/initial-item/{lootId}": {
"get": {
"operationId": "GetLolLootV1RecipesInitialItemByLootId",
"parameters": [
{
"in": "path",
"name": "lootId",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "includeInactive",
"required": false,
"type": "boolean"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLootRecipeWithMilestones"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
},
"post": {
"operationId": "PostLolLootV1RecipesInitialItemByLootId",
"parameters": [
{
"in": "path",
"name": "lootId",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "includeInactive",
"required": false,
"type": "boolean"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolLootRecipeWithMilestones"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/recipes/{recipeName}/craft": {
"post": {
"operationId": "PostLolLootV1RecipesByRecipeNameCraft",
"parameters": [
{
"in": "path",
"name": "recipeName",
"required": true,
"type": "string"
},
{
"format": "int32",
"in": "query",
"name": "repeat",
"required": false,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLootPlayerLootUpdate"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v1/refresh": {
"post": {
"operationId": "PostLolLootV1Refresh",
"parameters": [
{
"in": "query",
"name": "force",
"required": true,
"type": "boolean"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loot/v2/player-loot-map": {
"get": {
"operationId": "GetLolLootV2PlayerLootMap",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLootPlayerLootMap"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loot"
]
}
},
"/lol-loyalty/v1/inventory-request-notification": {
"get": {
"operationId": "GetLolLoyaltyV1InventoryRequestNotification",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoyaltyLoyaltyStatusNotification"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loyalty"
]
}
},
"/lol-loyalty/v1/status-notification": {
"get": {
"operationId": "GetLolLoyaltyV1StatusNotification",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoyaltyLoyaltyStatusNotification"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-loyalty"
]
}
},
"/lol-loyalty/v1/updateTftInventory": {
"post": {
"operationId": "PostLolLoyaltyV1UpdateTftInventory",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolLoyaltyLoyaltyRewards"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-loyalty"
]
}
},
"/lol-maps/v1/map": {
"post": {
"operationId": "PostLolMapsV1Map",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMapsMaps"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-maps"
]
}
},
"/lol-maps/v1/map/{id}": {
"get": {
"operationId": "GetLolMapsV1MapById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMapsMaps"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-maps"
]
}
},
"/lol-maps/v1/maps": {
"get": {
"operationId": "GetLolMapsV1Maps",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolMapsMaps"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-maps"
]
}
},
"/lol-maps/v2/map/{id}/{gameMode}": {
"get": {
"operationId": "GetLolMapsV2MapByIdByGameMode",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
},
{
"in": "path",
"name": "gameMode",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMapsMaps"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-maps"
]
}
},
"/lol-maps/v2/map/{id}/{gameMode}/{gameMutator}": {
"get": {
"operationId": "GetLolMapsV2MapByIdByGameModeByGameMutator",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
},
{
"in": "path",
"name": "gameMode",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "gameMutator",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMapsMaps"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-maps"
]
}
},
"/lol-maps/v2/maps": {
"get": {
"operationId": "GetLolMapsV2Maps",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolMapsMaps"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-maps"
]
}
},
"/lol-match-history/v1/acs-endpoint-override": {
"post": {
"operationId": "PostLolMatchHistoryV1AcsEndpointOverride",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMatchHistoryAcsEndPoint"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-match-history"
]
}
},
"/lol-match-history/v1/delta": {
"get": {
"operationId": "GetLolMatchHistoryV1Delta",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMatchHistoryMatchHistoryPlayerDelta"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-match-history"
]
}
},
"/lol-match-history/v1/game-timelines/{gameId}": {
"get": {
"operationId": "GetLolMatchHistoryV1GameTimelinesByGameId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "gameId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMatchHistoryMatchHistoryTimelineFrames"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-match-history"
]
}
},
"/lol-match-history/v1/games/{gameId}": {
"get": {
"operationId": "GetLolMatchHistoryV1GamesByGameId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "gameId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMatchHistoryMatchHistoryGame"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-match-history"
]
}
},
"/lol-match-history/v1/products/lol/current-summoner/matches": {
"get": {
"operationId": "GetLolMatchHistoryV1ProductsLolCurrentSummonerMatches",
"parameters": [
{
"format": "int32",
"in": "query",
"name": "begIndex",
"required": false,
"type": "integer"
},
{
"format": "int32",
"in": "query",
"name": "endIndex",
"required": false,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMatchHistoryMatchHistoryList"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-match-history"
]
}
},
"/lol-match-history/v1/products/lol/{puuid}/matches": {
"get": {
"operationId": "GetLolMatchHistoryV1ProductsLolByPuuidMatches",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
},
{
"format": "int32",
"in": "query",
"name": "begIndex",
"required": false,
"type": "integer"
},
{
"format": "int32",
"in": "query",
"name": "endIndex",
"required": false,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMatchHistoryMatchHistoryList"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-match-history"
]
}
},
"/lol-match-history/v1/products/tft/{puuid}/matches": {
"get": {
"operationId": "GetLolMatchHistoryV1ProductsTftByPuuidMatches",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
},
{
"format": "int32",
"in": "query",
"name": "begin",
"required": false,
"type": "integer"
},
{
"format": "int32",
"in": "query",
"name": "count",
"required": false,
"type": "integer"
},
{
"in": "query",
"name": "tag",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMatchHistoryGAMHSMatchHistoryList"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-match-history"
]
}
},
"/lol-match-history/v1/recently-played-summoners": {
"get": {
"operationId": "GetLolMatchHistoryV1RecentlyPlayedSummoners",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolMatchHistoryRecentlyPlayedSummoner"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-match-history"
]
}
},
"/lol-match-history/v1/web-url": {
"get": {
"operationId": "GetLolMatchHistoryV1WebUrl",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-match-history"
]
}
},
"/lol-match-history/v3/matchlist/account/{accountId}": {
"get": {
"operationId": "GetLolMatchHistoryV3MatchlistAccountByAccountId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "accountId",
"required": true,
"type": "integer"
},
{
"format": "int32",
"in": "query",
"name": "begIndex",
"required": false,
"type": "integer"
},
{
"format": "int32",
"in": "query",
"name": "endIndex",
"required": false,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMatchHistoryMatchHistoryList"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-match-history"
]
}
},
"/lol-matchmaking/v1/ready-check": {
"get": {
"operationId": "GetLolMatchmakingV1ReadyCheck",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMatchmakingMatchmakingReadyCheckResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-matchmaking"
]
}
},
"/lol-matchmaking/v1/ready-check/accept": {
"post": {
"operationId": "PostLolMatchmakingV1ReadyCheckAccept",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-matchmaking"
]
}
},
"/lol-matchmaking/v1/ready-check/decline": {
"post": {
"operationId": "PostLolMatchmakingV1ReadyCheckDecline",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-matchmaking"
]
}
},
"/lol-matchmaking/v1/search": {
"delete": {
"operationId": "DeleteLolMatchmakingV1Search",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-matchmaking"
]
},
"get": {
"operationId": "GetLolMatchmakingV1Search",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMatchmakingMatchmakingSearchResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-matchmaking"
]
},
"post": {
"operationId": "PostLolMatchmakingV1Search",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-matchmaking"
]
},
"put": {
"operationId": "PutLolMatchmakingV1Search",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMatchmakingMatchmakingSearchResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-matchmaking"
]
}
},
"/lol-matchmaking/v1/search/errors": {
"get": {
"operationId": "GetLolMatchmakingV1SearchErrors",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolMatchmakingMatchmakingSearchErrorResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-matchmaking"
]
}
},
"/lol-matchmaking/v1/search/errors/{id}": {
"get": {
"operationId": "GetLolMatchmakingV1SearchErrorsById",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMatchmakingMatchmakingSearchErrorResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-matchmaking"
]
}
},
"/lol-missions/v1/data": {
"get": {
"operationId": "GetLolMissionsV1Data",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlayerMissionEligibilityData"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-missions"
]
}
},
"/lol-missions/v1/force": {
"post": {
"operationId": "PostLolMissionsV1Force",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-missions"
]
}
},
"/lol-missions/v1/missions": {
"get": {
"operationId": "GetLolMissionsV1Missions",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PlayerMissionDTO"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-missions"
]
}
},
"/lol-missions/v1/player": {
"put": {
"operationId": "PutLolMissionsV1Player",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/IdsDTO"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-missions"
]
}
},
"/lol-missions/v1/player/{missionId}": {
"put": {
"operationId": "PutLolMissionsV1PlayerByMissionId",
"parameters": [
{
"in": "path",
"name": "missionId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMissionsRewardGroupsSelection"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-missions"
]
}
},
"/lol-missions/v1/series": {
"get": {
"operationId": "GetLolMissionsV1Series",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/SeriesDTO"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-missions"
]
}
},
"/lol-missions/v2/player/opt": {
"put": {
"operationId": "PutLolMissionsV2PlayerOpt",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMissionsSeriesOpt"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-missions"
]
}
},
"/lol-npe-rewards/v1/challenges/opt": {
"post": {
"operationId": "PostLolNpeRewardsV1ChallengesOpt",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-npe-rewards"
]
}
},
"/lol-npe-rewards/v1/challenges/progress": {
"get": {
"operationId": "GetLolNpeRewardsV1ChallengesProgress",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolNpeRewardsChallengesProgress"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-npe-rewards"
]
}
},
"/lol-npe-rewards/v1/level-rewards": {
"get": {
"operationId": "GetLolNpeRewardsV1LevelRewards",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolNpeRewardsRewardSeries"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-npe-rewards"
]
}
},
"/lol-npe-rewards/v1/level-rewards/state": {
"get": {
"operationId": "GetLolNpeRewardsV1LevelRewardsState",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolNpeRewardsRewardSeriesState"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-npe-rewards"
]
}
},
"/lol-npe-rewards/v1/login-rewards": {
"get": {
"operationId": "GetLolNpeRewardsV1LoginRewards",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolNpeRewardsRewardSeries"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-npe-rewards"
]
}
},
"/lol-npe-rewards/v1/login-rewards/state": {
"get": {
"operationId": "GetLolNpeRewardsV1LoginRewardsState",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolNpeRewardsRewardSeriesState"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-npe-rewards"
]
}
},
"/lol-npe-tutorial-path/v1/rewards/champ": {
"get": {
"operationId": "GetLolNpeTutorialPathV1RewardsChamp",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolNpeTutorialPathCollectionsChampion"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-npe-tutorial-path"
]
}
},
"/lol-npe-tutorial-path/v1/settings": {
"get": {
"operationId": "GetLolNpeTutorialPathV1Settings",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolNpeTutorialPathAccountSettingsTutorial"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-npe-tutorial-path"
]
},
"put": {
"operationId": "PutLolNpeTutorialPathV1Settings",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolNpeTutorialPathAccountSettingsTutorial"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-npe-tutorial-path"
]
}
},
"/lol-npe-tutorial-path/v1/tutorials": {
"get": {
"operationId": "GetLolNpeTutorialPathV1Tutorials",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolNpeTutorialPathTutorial"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-npe-tutorial-path"
]
}
},
"/lol-npe-tutorial-path/v1/tutorials/init": {
"patch": {
"operationId": "PatchLolNpeTutorialPathV1TutorialsInit",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-npe-tutorial-path"
]
}
},
"/lol-npe-tutorial-path/v1/tutorials/{tutorialId}/view": {
"put": {
"operationId": "PutLolNpeTutorialPathV1TutorialsByTutorialIdView",
"parameters": [
{
"in": "path",
"name": "tutorialId",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-npe-tutorial-path"
]
}
},
"/lol-patch/v1/checking-enabled": {
"get": {
"operationId": "GetLolPatchV1CheckingEnabled",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/environment": {
"get": {
"operationId": "GetLolPatchV1Environment",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPatchChunkingPatcherEnvironment"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/game-patch-url": {
"put": {
"operationId": "PutLolPatchV1GamePatchUrl",
"parameters": [
{
"in": "query",
"name": "url",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/game-version": {
"get": {
"operationId": "GetLolPatchV1GameVersion",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/notifications": {
"get": {
"operationId": "GetLolPatchV1Notifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolPatchNotification"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/notifications/{id}": {
"delete": {
"operationId": "DeleteLolPatchV1NotificationsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/products/league_of_legends/detect-corruption-request": {
"post": {
"operationId": "PostLolPatchV1ProductsLeagueOfLegendsDetectCorruptionRequest",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/products/league_of_legends/install-location": {
"get": {
"operationId": "GetLolPatchV1ProductsLeagueOfLegendsInstallLocation",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPatchInstallPaths"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/products/league_of_legends/partial-repair-request": {
"post": {
"operationId": "PostLolPatchV1ProductsLeagueOfLegendsPartialRepairRequest",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/products/league_of_legends/start-checking-request": {
"post": {
"operationId": "PostLolPatchV1ProductsLeagueOfLegendsStartCheckingRequest",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/products/league_of_legends/start-patching-request": {
"post": {
"operationId": "PostLolPatchV1ProductsLeagueOfLegendsStartPatchingRequest",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/products/league_of_legends/state": {
"get": {
"operationId": "GetLolPatchV1ProductsLeagueOfLegendsState",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPatchProductState"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/products/league_of_legends/stop-checking-request": {
"post": {
"operationId": "PostLolPatchV1ProductsLeagueOfLegendsStopCheckingRequest",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/products/league_of_legends/stop-patching-request": {
"post": {
"operationId": "PostLolPatchV1ProductsLeagueOfLegendsStopPatchingRequest",
"parameters": [
{
"in": "query",
"name": "restart",
"required": true,
"type": "boolean"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/products/league_of_legends/supported-game-releases": {
"get": {
"operationId": "GetLolPatchV1ProductsLeagueOfLegendsSupportedGameReleases",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPatchSupportedGameReleases"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/self-update-restart": {
"put": {
"operationId": "PutLolPatchV1SelfUpdateRestart",
"parameters": [
{
"in": "query",
"name": "forceRestartOnSelfUpdate",
"required": true,
"type": "boolean"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/status": {
"get": {
"operationId": "GetLolPatchV1Status",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPatchStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-patch/v1/ux": {
"put": {
"operationId": "PutLolPatchV1Ux",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPatchUxResource"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-patch"
]
}
},
"/lol-perks/v1/currentpage": {
"get": {
"operationId": "GetLolPerksV1Currentpage",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPerksPerkPageResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
},
"put": {
"operationId": "PutLolPerksV1Currentpage",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/customizationlimits": {
"get": {
"operationId": "GetLolPerksV1Customizationlimits",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPerksCustomizationLimits"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/inventory": {
"get": {
"operationId": "GetLolPerksV1Inventory",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPerksPlayerInventory"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/pages": {
"delete": {
"operationId": "DeleteLolPerksV1Pages",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
},
"get": {
"operationId": "GetLolPerksV1Pages",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolPerksPerkPageResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
},
"post": {
"operationId": "PostLolPerksV1Pages",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPerksPerkPageResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPerksPerkPageResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/pages/validate": {
"put": {
"operationId": "PutLolPerksV1PagesValidate",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPerksValidatePageNameData"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPerksValidatePageNameResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/pages/{id}": {
"delete": {
"operationId": "DeleteLolPerksV1PagesById",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
},
"get": {
"operationId": "GetLolPerksV1PagesById",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPerksPerkPageResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
},
"put": {
"operationId": "PutLolPerksV1PagesById",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPerksPerkPageResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/pages/{id}/auto-modified-selections": {
"delete": {
"operationId": "DeleteLolPerksV1PagesByIdAutoModifiedSelections",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/perks": {
"get": {
"operationId": "GetLolPerksV1Perks",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolPerksPerkUIPerk"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/perks/ack-gameplay-updated": {
"put": {
"operationId": "PutLolPerksV1PerksAckGameplayUpdated",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/perks/disabled": {
"get": {
"operationId": "GetLolPerksV1PerksDisabled",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/perks/gameplay-updated": {
"get": {
"operationId": "GetLolPerksV1PerksGameplayUpdated",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/schema-version": {
"get": {
"operationId": "GetLolPerksV1SchemaVersion",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/servicesettings": {
"get": {
"operationId": "GetLolPerksV1Servicesettings",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPerksServiceSettings"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/settings": {
"get": {
"operationId": "GetLolPerksV1Settings",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPerksUISettings"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
},
"put": {
"operationId": "PutLolPerksV1Settings",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPerksUISettings"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/show-auto-modified-pages-notification": {
"get": {
"operationId": "GetLolPerksV1ShowAutoModifiedPagesNotification",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
},
"post": {
"operationId": "PostLolPerksV1ShowAutoModifiedPagesNotification",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/styles": {
"get": {
"operationId": "GetLolPerksV1Styles",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolPerksPerkUIStyle"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-perks/v1/update-page-order": {
"post": {
"operationId": "PostLolPerksV1UpdatePageOrder",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPerksUpdatePageOrderRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-perks"
]
}
},
"/lol-personalized-offers/v1/offers": {
"get": {
"operationId": "GetLolPersonalizedOffersV1Offers",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolPersonalizedOffersUIOffer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-personalized-offers"
]
}
},
"/lol-personalized-offers/v1/offers/{id}/purchase": {
"post": {
"operationId": "PostLolPersonalizedOffersV1OffersByIdPurchase",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPersonalizedOffersPurchaseResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-personalized-offers"
]
}
},
"/lol-personalized-offers/v1/offers/{id}/reveal": {
"post": {
"operationId": "PostLolPersonalizedOffersV1OffersByIdReveal",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolPersonalizedOffersUIOffer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-personalized-offers"
]
}
},
"/lol-personalized-offers/v1/ready": {
"get": {
"operationId": "GetLolPersonalizedOffersV1Ready",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-personalized-offers"
]
}
},
"/lol-personalized-offers/v1/status": {
"get": {
"operationId": "GetLolPersonalizedOffersV1Status",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPersonalizedOffersUIStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-personalized-offers"
]
}
},
"/lol-personalized-offers/v1/themed": {
"get": {
"operationId": "GetLolPersonalizedOffersV1Themed",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-personalized-offers"
]
}
},
"/lol-pft/v2/events": {
"post": {
"operationId": "PostLolPftV2Events",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPftPFTEvent"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-pft"
]
}
},
"/lol-pft/v2/survey": {
"get": {
"operationId": "GetLolPftV2Survey",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPftPFTSurvey"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-pft"
]
},
"post": {
"operationId": "PostLolPftV2Survey",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPftPFTSurvey"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-pft"
]
}
},
"/lol-platform-config/v1/initial-configuration-complete": {
"get": {
"operationId": "GetLolPlatformConfigV1InitialConfigurationComplete",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-platform-config"
]
}
},
"/lol-platform-config/v1/namespaces": {
"get": {
"operationId": "GetLolPlatformConfigV1Namespaces",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-platform-config"
]
}
},
"/lol-platform-config/v1/namespaces/{ns}": {
"get": {
"operationId": "GetLolPlatformConfigV1NamespacesByNs",
"parameters": [
{
"in": "path",
"name": "ns",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-platform-config"
]
}
},
"/lol-platform-config/v1/namespaces/{ns}/{key}": {
"get": {
"operationId": "GetLolPlatformConfigV1NamespacesByNsByKey",
"parameters": [
{
"in": "path",
"name": "ns",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "key",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-platform-config"
]
}
},
"/lol-player-behavior/v1/ban": {
"get": {
"operationId": "GetLolPlayerBehaviorV1Ban",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerBehaviorBanNotification"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-behavior"
]
}
},
"/lol-player-behavior/v1/chat-restriction": {
"get": {
"operationId": "GetLolPlayerBehaviorV1ChatRestriction",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerBehaviorRestrictionNotification"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-behavior"
]
}
},
"/lol-player-behavior/v1/code-of-conduct-notification": {
"delete": {
"operationId": "DeleteLolPlayerBehaviorV1CodeOfConductNotification",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-behavior"
]
},
"get": {
"operationId": "GetLolPlayerBehaviorV1CodeOfConductNotification",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerBehaviorCodeOfConductNotification"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-behavior"
]
}
},
"/lol-player-behavior/v1/config": {
"get": {
"operationId": "GetLolPlayerBehaviorV1Config",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerBehaviorPlayerBehaviorConfig"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-behavior"
]
}
},
"/lol-player-behavior/v1/ranked-restriction": {
"get": {
"operationId": "GetLolPlayerBehaviorV1RankedRestriction",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerBehaviorRestrictionNotification"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-behavior"
]
}
},
"/lol-player-behavior/v1/reform-card": {
"get": {
"operationId": "GetLolPlayerBehaviorV1ReformCard",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerBehaviorReformCard"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-behavior"
]
}
},
"/lol-player-behavior/v1/reporter-feedback": {
"get": {
"operationId": "GetLolPlayerBehaviorV1ReporterFeedback",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolPlayerBehaviorReporterFeedback"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-behavior"
]
}
},
"/lol-player-behavior/v1/reporter-feedback/{id}": {
"delete": {
"operationId": "DeleteLolPlayerBehaviorV1ReporterFeedbackById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerBehaviorReporterFeedback"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-behavior"
]
},
"get": {
"operationId": "GetLolPlayerBehaviorV1ReporterFeedbackById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerBehaviorReporterFeedback"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-behavior"
]
}
},
"/lol-player-behavior/v2/reform-card": {
"get": {
"operationId": "GetLolPlayerBehaviorV2ReformCard",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerBehaviorReformCardV2"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-behavior"
]
}
},
"/lol-player-level-up/v1/level-up": {
"get": {
"operationId": "GetLolPlayerLevelUpV1LevelUp",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerLevelUpPlayerLevelUpEvent"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-level-up"
]
}
},
"/lol-player-level-up/v1/level-up-notifications/{pluginName}": {
"get": {
"operationId": "GetLolPlayerLevelUpV1LevelUpNotificationsByPluginName",
"parameters": [
{
"in": "path",
"name": "pluginName",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerLevelUpPlayerLevelUpEventAck"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-level-up"
]
},
"post": {
"operationId": "PostLolPlayerLevelUpV1LevelUpNotificationsByPluginName",
"parameters": [
{
"in": "path",
"name": "pluginName",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerLevelUpPlayerLevelUpEventAck"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-player-level-up"
]
}
},
"/lol-player-messaging/v1/celebration/notification": {
"get": {
"operationId": "GetLolPlayerMessagingV1CelebrationNotification",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerMessagingDynamicCelebrationMessagingNotificationResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-messaging"
]
}
},
"/lol-player-messaging/v1/celebration/notification/{id}/acknowledge": {
"delete": {
"operationId": "DeleteLolPlayerMessagingV1CelebrationNotificationByIdAcknowledge",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-messaging"
]
}
},
"/lol-player-messaging/v1/notification": {
"get": {
"operationId": "GetLolPlayerMessagingV1Notification",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerMessagingPlayerMessagingNotificationResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-messaging"
]
}
},
"/lol-player-messaging/v1/notification/{id}/acknowledge": {
"delete": {
"operationId": "DeleteLolPlayerMessagingV1NotificationByIdAcknowledge",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-messaging"
]
}
},
"/lol-player-preferences/v1/hash": {
"post": {
"operationId": "PostLolPlayerPreferencesV1Hash",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-preferences"
]
}
},
"/lol-player-preferences/v1/player-preferences-endpoint-override": {
"post": {
"operationId": "PostLolPlayerPreferencesV1PlayerPreferencesEndpointOverride",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerPreferencesPlayerPreferencesEndpoint"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-preferences"
]
}
},
"/lol-player-preferences/v1/player-preferences-ready": {
"get": {
"operationId": "GetLolPlayerPreferencesV1PlayerPreferencesReady",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-preferences"
]
}
},
"/lol-player-preferences/v1/preference": {
"put": {
"operationId": "PutLolPlayerPreferencesV1Preference",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerPreferencesPlayerPreferences"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-preferences"
]
}
},
"/lol-player-preferences/v1/preference/{type}": {
"get": {
"operationId": "GetLolPlayerPreferencesV1PreferenceByType",
"parameters": [
{
"in": "path",
"name": "type",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "hash",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-preferences"
]
}
},
"/lol-player-report-sender/v1/champ-select-reports/puuid/{puuid}/category/{category}": {
"post": {
"operationId": "PostLolPlayerReportSenderV1ChampSelectReportsPuuidByPuuidCategoryByCategory",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "category",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-report-sender"
]
}
},
"/lol-player-report-sender/v1/end-of-game-reports": {
"post": {
"operationId": "PostLolPlayerReportSenderV1EndOfGameReports",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPlayerReportSenderEndOfGamePlayerReport"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-player-report-sender"
]
}
},
"/lol-pre-end-of-game/v1/complete/{sequenceEventName}": {
"post": {
"operationId": "PostLolPreEndOfGameV1CompleteBySequenceEventName",
"parameters": [
{
"in": "path",
"name": "sequenceEventName",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-pre-end-of-game"
]
}
},
"/lol-pre-end-of-game/v1/currentSequenceEvent": {
"get": {
"operationId": "GetLolPreEndOfGameV1CurrentSequenceEvent",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPreEndOfGameSequenceEvent"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-pre-end-of-game"
]
}
},
"/lol-pre-end-of-game/v1/registration/{sequenceEventName}": {
"delete": {
"operationId": "DeleteLolPreEndOfGameV1RegistrationBySequenceEventName",
"parameters": [
{
"in": "path",
"name": "sequenceEventName",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-pre-end-of-game"
]
}
},
"/lol-pre-end-of-game/v1/registration/{sequenceEventName}/{priority}": {
"post": {
"operationId": "PostLolPreEndOfGameV1RegistrationBySequenceEventNameByPriority",
"parameters": [
{
"in": "path",
"name": "sequenceEventName",
"required": true,
"type": "string"
},
{
"format": "int32",
"in": "path",
"name": "priority",
"required": true,
"type": "integer"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-pre-end-of-game"
]
}
},
"/lol-premade-voice/v1/availability": {
"get": {
"operationId": "GetLolPremadeVoiceV1Availability",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPremadeVoiceVoiceAvailability"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/capturedevices": {
"get": {
"operationId": "GetLolPremadeVoiceV1Capturedevices",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolPremadeVoiceDeviceResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
},
"put": {
"operationId": "PutLolPremadeVoiceV1Capturedevices",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/first-experience": {
"get": {
"operationId": "GetLolPremadeVoiceV1FirstExperience",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPremadeVoiceFirstExperience"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/first-experience/game": {
"post": {
"operationId": "PostLolPremadeVoiceV1FirstExperienceGame",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/first-experience/lcu": {
"post": {
"operationId": "PostLolPremadeVoiceV1FirstExperienceLcu",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/first-experience/reset": {
"post": {
"operationId": "PostLolPremadeVoiceV1FirstExperienceReset",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/gameClientUpdatedPTTKey": {
"post": {
"operationId": "PostLolPremadeVoiceV1GameClientUpdatedPTTKey",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/mic-test": {
"delete": {
"operationId": "DeleteLolPremadeVoiceV1MicTest",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
},
"get": {
"operationId": "GetLolPremadeVoiceV1MicTest",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPremadeVoiceAudioPropertiesResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
},
"post": {
"operationId": "PostLolPremadeVoiceV1MicTest",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/participant-records": {
"get": {
"operationId": "GetLolPremadeVoiceV1ParticipantRecords",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolPremadeVoicePremadeVoiceParticipantDto"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/participants": {
"get": {
"operationId": "GetLolPremadeVoiceV1Participants",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolPremadeVoicePremadeVoiceParticipantDto"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/participants/{puuid}/mute": {
"put": {
"operationId": "PutLolPremadeVoiceV1ParticipantsByPuuidMute",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/participants/{puuid}/volume": {
"put": {
"operationId": "PutLolPremadeVoiceV1ParticipantsByPuuidVolume",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/push-to-talk/check-available": {
"post": {
"operationId": "PostLolPremadeVoiceV1PushToTalkCheckAvailable",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/self/activationSensitivity": {
"put": {
"operationId": "PutLolPremadeVoiceV1SelfActivationSensitivity",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/self/inputMode": {
"put": {
"operationId": "PutLolPremadeVoiceV1SelfInputMode",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPremadeVoiceInputMode"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/self/micLevel": {
"put": {
"operationId": "PutLolPremadeVoiceV1SelfMicLevel",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/self/mute": {
"put": {
"operationId": "PutLolPremadeVoiceV1SelfMute",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/session": {
"delete": {
"operationId": "DeleteLolPremadeVoiceV1Session",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
},
"post": {
"operationId": "PostLolPremadeVoiceV1Session",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/settings": {
"get": {
"operationId": "GetLolPremadeVoiceV1Settings",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPremadeVoiceSettingsResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-premade-voice/v1/settings/reset": {
"post": {
"operationId": "PostLolPremadeVoiceV1SettingsReset",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-premade-voice"
]
}
},
"/lol-publishing-content/v1/ready": {
"get": {
"operationId": "GetLolPublishingContentV1Ready",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-publishing-content"
]
}
},
"/lol-publishing-content/v1/tft-hub-cards": {
"get": {
"operationId": "GetLolPublishingContentV1TftHubCards",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-publishing-content"
]
}
},
"/lol-purchase-widget/v1/configuration": {
"get": {
"operationId": "GetLolPurchaseWidgetV1Configuration",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPurchaseWidgetPurchaseWidgetConfig"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-purchase-widget"
]
}
},
"/lol-purchase-widget/v1/order-notifications": {
"get": {
"operationId": "GetLolPurchaseWidgetV1OrderNotifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolPurchaseWidgetOrderNotificationResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-purchase-widget"
]
}
},
"/lol-purchase-widget/v1/purchasable-item": {
"get": {
"operationId": "GetLolPurchaseWidgetV1PurchasableItem",
"parameters": [
{
"in": "query",
"name": "inventoryType",
"required": true,
"type": "string"
},
{
"format": "int64",
"in": "query",
"name": "itemId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPurchaseWidgetPurchasableItem"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-purchase-widget"
]
}
},
"/lol-purchase-widget/v1/purchasable-items/{inventoryType}": {
"post": {
"operationId": "PostLolPurchaseWidgetV1PurchasableItemsByInventoryType",
"parameters": [
{
"in": "path",
"name": "inventoryType",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPurchaseWidgetItemChoices"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-purchase-widget"
]
}
},
"/lol-purchase-widget/v2/purchaseItems": {
"post": {
"operationId": "PostLolPurchaseWidgetV2PurchaseItems",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPurchaseWidgetPurchaseRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-purchase-widget"
]
}
},
"/lol-purchase-widget/v3/base-skin-line-data/{offerId}": {
"get": {
"operationId": "GetLolPurchaseWidgetV3BaseSkinLineDataByOfferId",
"parameters": [
{
"in": "path",
"name": "offerId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPurchaseWidgetBaseSkinLineDto"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-purchase-widget"
]
}
},
"/lol-purchase-widget/v3/purchase-offer-order-statuses": {
"get": {
"operationId": "GetLolPurchaseWidgetV3PurchaseOfferOrderStatuses",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPurchaseWidgetPurchaseOfferOrderStatuses"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-purchase-widget"
]
}
},
"/lol-purchase-widget/v3/purchaseOffer": {
"post": {
"operationId": "PostLolPurchaseWidgetV3PurchaseOffer",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPurchaseWidgetPurchaseOfferRequestV3"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPurchaseWidgetPurchaseOfferResponseV3"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-purchase-widget"
]
}
},
"/lol-purchase-widget/v3/validateOffer": {
"post": {
"operationId": "PostLolPurchaseWidgetV3ValidateOffer",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPurchaseWidgetValidateOfferRequestV3"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolPurchaseWidgetValidateOfferResponseV3"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-purchase-widget"
]
}
},
"/lol-ranked/v1/apex-leagues/{queueType}/{tier}": {
"get": {
"operationId": "GetLolRankedV1ApexLeaguesByQueueTypeByTier",
"parameters": [
{
"enum": [
"NONE",
"RANKED_SOLO_5x5",
"RANKED_FLEX_SR",
"RANKED_FLEX_TT",
"RANKED_TFT",
"RANKED_TFT_TURBO",
"RANKED_TFT_PAIRS"
],
"in": "path",
"name": "queueType",
"required": true,
"type": "string"
},
{
"enum": [
"NONE",
"IRON",
"BRONZE",
"SILVER",
"GOLD",
"PLATINUM",
"DIAMOND",
"MASTER",
"GRANDMASTER",
"CHALLENGER"
],
"in": "path",
"name": "tier",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRankedLeagueLadderInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/challenger-ladders-enabled": {
"get": {
"operationId": "GetLolRankedV1ChallengerLaddersEnabled",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/current-lp-change-notification": {
"get": {
"operationId": "GetLolRankedV1CurrentLpChangeNotification",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRankedLcuLeagueNotification"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/current-ranked-stats": {
"get": {
"operationId": "GetLolRankedV1CurrentRankedStats",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRankedRankedStats"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/eos-notifications": {
"get": {
"operationId": "GetLolRankedV1EosNotifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolRankedEosNotificationResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/eos-notifications/{id}/acknowledge": {
"post": {
"operationId": "PostLolRankedV1EosNotificationsByIdAcknowledge",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/eos-rewards": {
"get": {
"operationId": "GetLolRankedV1EosRewards",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRankedEosRewardsConfig"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/league-ladders/{puuid}": {
"get": {
"operationId": "GetLolRankedV1LeagueLaddersByPuuid",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolRankedLeagueLadderInfo"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/notifications": {
"get": {
"operationId": "GetLolRankedV1Notifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolRankedLcuLeagueNotification"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/notifications/{id}/acknowledge": {
"post": {
"operationId": "PostLolRankedV1NotificationsByIdAcknowledge",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/ranked-stats": {
"get": {
"operationId": "GetLolRankedV1RankedStats",
"parameters": [
{
"in": "query",
"items": {
"type": "string"
},
"name": "puuids",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"$ref": "#/components/schemas/LolRankedRankedStats"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/ranked-stats/{puuid}": {
"get": {
"operationId": "GetLolRankedV1RankedStatsByPuuid",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRankedRankedStats"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/rated-ladder/{queueType}": {
"get": {
"operationId": "GetLolRankedV1RatedLadderByQueueType",
"parameters": [
{
"enum": [
"NONE",
"RANKED_SOLO_5x5",
"RANKED_FLEX_SR",
"RANKED_FLEX_TT",
"RANKED_TFT",
"RANKED_TFT_TURBO",
"RANKED_TFT_PAIRS"
],
"in": "path",
"name": "queueType",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRankedRatedLadderInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/signed-ranked-stats": {
"get": {
"operationId": "GetLolRankedV1SignedRankedStats",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRankedSignedRankedStatsDTO"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/social-leaderboard-ranked-queue-stats-for-puuids": {
"get": {
"operationId": "GetLolRankedV1SocialLeaderboardRankedQueueStatsForPuuids",
"parameters": [
{
"enum": [
"NONE",
"RANKED_SOLO_5x5",
"RANKED_FLEX_SR",
"RANKED_FLEX_TT",
"RANKED_TFT",
"RANKED_TFT_TURBO",
"RANKED_TFT_PAIRS"
],
"in": "query",
"name": "queueType",
"required": true,
"type": "string"
},
{
"in": "query",
"items": {
"type": "string"
},
"name": "puuids",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"$ref": "#/components/schemas/LolRankedSocialLeaderboardRankedQueueStats"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/splits-config": {
"get": {
"operationId": "GetLolRankedV1SplitsConfig",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRankedRewardsInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v1/top-rated-ladders-enabled": {
"get": {
"operationId": "GetLolRankedV1TopRatedLaddersEnabled",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-ranked/v2/tiers": {
"get": {
"operationId": "GetLolRankedV2Tiers",
"parameters": [
{
"in": "query",
"items": {
"format": "int64",
"type": "integer"
},
"name": "summonerIds",
"required": true,
"type": "array"
},
{
"in": "query",
"items": {
"$ref": "#/components/schemas/LolRankedLeagueQueueType"
},
"name": "queueTypes",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolRankedParticipantTiers"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-ranked"
]
}
},
"/lol-regalia/v2/config": {
"get": {
"operationId": "GetLolRegaliaV2Config",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRegaliaRegaliaFrontendConfig"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-regalia"
]
}
},
"/lol-regalia/v2/current-summoner/regalia": {
"get": {
"operationId": "GetLolRegaliaV2CurrentSummonerRegalia",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRegaliaRegaliaWithPreferences"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-regalia"
]
},
"put": {
"operationId": "PutLolRegaliaV2CurrentSummonerRegalia",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRegaliaRegaliaPreferences"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRegaliaRegaliaWithPreferences"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-regalia"
]
}
},
"/lol-regalia/v2/summoners/{summonerId}/queues/{queue}/positions/{position}/regalia": {
"get": {
"operationId": "GetLolRegaliaV2SummonersBySummonerIdQueuesByQueuePositionsByPositionRegalia",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
},
{
"in": "path",
"name": "queue",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "position",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRegaliaRegalia"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-regalia"
]
}
},
"/lol-regalia/v2/summoners/{summonerId}/queues/{queue}/regalia": {
"get": {
"operationId": "GetLolRegaliaV2SummonersBySummonerIdQueuesByQueueRegalia",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
},
{
"in": "path",
"name": "queue",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRegaliaRegalia"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-regalia"
]
}
},
"/lol-regalia/v2/summoners/{summonerId}/regalia": {
"get": {
"operationId": "GetLolRegaliaV2SummonersBySummonerIdRegalia",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
},
{
"in": "query",
"name": "hovercard",
"required": true,
"type": "boolean"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRegaliaRegalia"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-regalia"
]
}
},
"/lol-regalia/v2/summoners/{summonerId}/regalia/async": {
"get": {
"operationId": "GetLolRegaliaV2SummonersBySummonerIdRegaliaAsync",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRegaliaRegaliaAsync"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-regalia"
]
}
},
"/lol-replays/v1/configuration": {
"get": {
"operationId": "GetLolReplaysV1Configuration",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolReplaysReplaysConfiguration"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-replays"
]
}
},
"/lol-replays/v1/metadata/{gameId}": {
"get": {
"operationId": "GetLolReplaysV1MetadataByGameId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "gameId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolReplaysReplayMetadata"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-replays"
]
}
},
"/lol-replays/v1/metadata/{gameId}/create/gameVersion/{gameVersion}/gameType/{gameType}/queueId/{queueId}": {
"post": {
"operationId": "PostLolReplaysV1MetadataByGameIdCreateGameVersionByGameVersionGameTypeByGameTypeQueueIdByQueueId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "gameId",
"required": true,
"type": "integer"
},
{
"in": "path",
"name": "gameVersion",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "gameType",
"required": true,
"type": "string"
},
{
"format": "int32",
"in": "path",
"name": "queueId",
"required": true,
"type": "integer"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-replays"
]
}
},
"/lol-replays/v1/rofls/path": {
"get": {
"operationId": "GetLolReplaysV1RoflsPath",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-replays"
]
}
},
"/lol-replays/v1/rofls/path/default": {
"get": {
"operationId": "GetLolReplaysV1RoflsPathDefault",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-replays"
]
}
},
"/lol-replays/v1/rofls/scan": {
"post": {
"operationId": "PostLolReplaysV1RoflsScan",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-replays"
]
}
},
"/lol-replays/v1/rofls/{gameId}/download": {
"post": {
"operationId": "PostLolReplaysV1RoflsByGameIdDownload",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "gameId",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolReplaysReplayContextData"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-replays"
]
}
},
"/lol-replays/v1/rofls/{gameId}/download/graceful": {
"post": {
"operationId": "PostLolReplaysV1RoflsByGameIdDownloadGraceful",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "gameId",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolReplaysReplayContextData"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-replays"
]
}
},
"/lol-replays/v1/rofls/{gameId}/watch": {
"post": {
"operationId": "PostLolReplaysV1RoflsByGameIdWatch",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "gameId",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolReplaysReplayContextData"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-replays"
]
}
},
"/lol-replays/v2/metadata/{gameId}/create": {
"post": {
"operationId": "PostLolReplaysV2MetadataByGameIdCreate",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "gameId",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolReplaysReplayCreateMetadata"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-replays"
]
}
},
"/lol-rewards/v1/grants": {
"get": {
"operationId": "GetLolRewardsV1Grants",
"parameters": [
{
"enum": [
"PENDING_FULFILLMENT",
"PENDING_SELECTION",
"FULFILLED",
"FAILED"
],
"in": "query",
"name": "status",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolRewardsRewardGrant"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rewards"
]
}
},
"/lol-rewards/v1/grants/{grantId}/select": {
"post": {
"operationId": "PostLolRewardsV1GrantsByGrantIdSelect",
"parameters": [
{
"in": "path",
"name": "grantId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRewardsSelectionRequestDTO"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRewardsRewardGrant"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rewards"
]
}
},
"/lol-rewards/v1/grants/{grantId}/view": {
"patch": {
"operationId": "PatchLolRewardsV1GrantsByGrantIdView",
"parameters": [
{
"in": "path",
"name": "grantId",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-rewards"
]
}
},
"/lol-rewards/v1/groups": {
"get": {
"operationId": "GetLolRewardsV1Groups",
"parameters": [
{
"in": "query",
"items": {
"type": "string"
},
"name": "types",
"required": false,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolRewardsSvcRewardGroup"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rewards"
]
}
},
"/lol-rms/v1/champion-mastery-leaveup-update": {
"get": {
"operationId": "GetLolRmsV1ChampionMasteryLeaveupUpdate",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolRiotMessagingServiceChampionMasteryLevelUp"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-riot-messaging-service"
]
}
},
"/lol-rms/v1/champion-mastery-leaveup-update/{id}": {
"delete": {
"operationId": "DeleteLolRmsV1ChampionMasteryLeaveupUpdateById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-riot-messaging-service"
]
}
},
"/lol-rso-auth/configuration/v3/ready-state": {
"get": {
"operationId": "GetLolRsoAuthConfigurationV3ReadyState",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthRSOConfigReadyState"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
}
},
"/lol-rso-auth/v1/auth-hints/hint": {
"delete": {
"operationId": "DeleteLolRsoAuthV1AuthHintsHint",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
},
"get": {
"operationId": "GetLolRsoAuthV1AuthHintsHint",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthAuthHint"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
}
},
"/lol-rso-auth/v1/authorization": {
"delete": {
"operationId": "DeleteLolRsoAuthV1Authorization",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
},
"get": {
"operationId": "GetLolRsoAuthV1Authorization",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthAuthorization"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
}
},
"/lol-rso-auth/v1/authorization/access-token": {
"get": {
"operationId": "GetLolRsoAuthV1AuthorizationAccessToken",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthAccessToken"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
}
},
"/lol-rso-auth/v1/authorization/error": {
"get": {
"operationId": "GetLolRsoAuthV1AuthorizationError",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthAuthError"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
}
},
"/lol-rso-auth/v1/authorization/gas": {
"post": {
"operationId": "PostLolRsoAuthV1AuthorizationGas",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthRSOPlayerCredentials"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthAuthorization"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
}
},
"/lol-rso-auth/v1/authorization/id-token": {
"get": {
"operationId": "GetLolRsoAuthV1AuthorizationIdToken",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthIdToken"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
}
},
"/lol-rso-auth/v1/authorization/refresh": {
"post": {
"operationId": "PostLolRsoAuthV1AuthorizationRefresh",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthAuthorization"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
}
},
"/lol-rso-auth/v1/authorization/userinfo": {
"get": {
"operationId": "GetLolRsoAuthV1AuthorizationUserinfo",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthUserInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
},
"post": {
"operationId": "PostLolRsoAuthV1AuthorizationUserinfo",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthUserInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
}
},
"/lol-rso-auth/v1/device-id": {
"post": {
"operationId": "PostLolRsoAuthV1DeviceId",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthDeviceId"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
}
},
"/lol-rso-auth/v1/session": {
"delete": {
"operationId": "DeleteLolRsoAuthV1Session",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
}
},
"/lol-rso-auth/v1/status/{platformId}": {
"get": {
"operationId": "GetLolRsoAuthV1StatusByPlatformId",
"parameters": [
{
"in": "path",
"name": "platformId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthRegionStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
}
},
"/lol-rso-auth/v2/config": {
"delete": {
"operationId": "DeleteLolRsoAuthV2Config",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
},
"post": {
"operationId": "PostLolRsoAuthV2Config",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolRsoAuthPublicClientConfig"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-rso-auth"
]
}
},
"/lol-service-status/v1/lcu-status": {
"get": {
"operationId": "GetLolServiceStatusV1LcuStatus",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolServiceStatusServiceStatusResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-service-status"
]
}
},
"/lol-service-status/v1/ticker-messages": {
"get": {
"operationId": "GetLolServiceStatusV1TickerMessages",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolServiceStatusTickerMessage"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-service-status"
]
}
},
"/lol-settings/v1/account/didreset": {
"get": {
"operationId": "GetLolSettingsV1AccountDidreset",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
}
},
"/lol-settings/v1/account/save": {
"post": {
"operationId": "PostLolSettingsV1AccountSave",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
}
},
"/lol-settings/v1/account/{category}": {
"get": {
"operationId": "GetLolSettingsV1AccountByCategory",
"parameters": [
{
"in": "path",
"name": "category",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
},
"patch": {
"operationId": "PatchLolSettingsV1AccountByCategory",
"parameters": [
{
"in": "path",
"name": "category",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSettingsSettingCategory"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
},
"put": {
"operationId": "PutLolSettingsV1AccountByCategory",
"parameters": [
{
"in": "path",
"name": "category",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSettingsSettingCategory"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
}
},
"/lol-settings/v1/local/{category}": {
"get": {
"operationId": "GetLolSettingsV1LocalByCategory",
"parameters": [
{
"in": "path",
"name": "category",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
},
"patch": {
"operationId": "PatchLolSettingsV1LocalByCategory",
"parameters": [
{
"in": "path",
"name": "category",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSettingsSettingCategory"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
}
},
"/lol-settings/v2/account/{ppType}/{category}": {
"get": {
"operationId": "GetLolSettingsV2AccountByPpTypeByCategory",
"parameters": [
{
"in": "path",
"name": "ppType",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "category",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
},
"patch": {
"operationId": "PatchLolSettingsV2AccountByPpTypeByCategory",
"parameters": [
{
"in": "path",
"name": "ppType",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "category",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSettingsSettingCategory"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
},
"put": {
"operationId": "PutLolSettingsV2AccountByPpTypeByCategory",
"parameters": [
{
"in": "path",
"name": "ppType",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "category",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSettingsSettingCategory"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
}
},
"/lol-settings/v2/didreset/{ppType}": {
"get": {
"operationId": "GetLolSettingsV2DidresetByPpType",
"parameters": [
{
"in": "path",
"name": "ppType",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
}
},
"/lol-settings/v2/local/{category}": {
"get": {
"operationId": "GetLolSettingsV2LocalByCategory",
"parameters": [
{
"in": "path",
"name": "category",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
},
"patch": {
"operationId": "PatchLolSettingsV2LocalByCategory",
"parameters": [
{
"in": "path",
"name": "category",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSettingsSettingCategory"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
}
},
"/lol-settings/v2/ready": {
"get": {
"operationId": "GetLolSettingsV2Ready",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-settings"
]
}
},
"/lol-shutdown/v1/notification": {
"get": {
"operationId": "GetLolShutdownV1Notification",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolShutdownShutdownNotification"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-shutdown"
]
}
},
"/lol-simple-dialog-messages/v1/messages": {
"get": {
"operationId": "GetLolSimpleDialogMessagesV1Messages",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolSimpleDialogMessagesMessage"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-simple-dialog-messages"
]
},
"post": {
"operationId": "PostLolSimpleDialogMessagesV1Messages",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSimpleDialogMessagesLocalMessageRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-simple-dialog-messages"
]
}
},
"/lol-simple-dialog-messages/v1/messages/{messageId}": {
"delete": {
"operationId": "DeleteLolSimpleDialogMessagesV1MessagesByMessageId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "messageId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-simple-dialog-messages"
]
}
},
"/lol-social-leaderboard/v1/leaderboard-next-update-time": {
"get": {
"operationId": "GetLolSocialLeaderboardV1LeaderboardNextUpdateTime",
"parameters": [
{
"enum": [
"NONE",
"RANKED_SOLO_5x5",
"RANKED_FLEX_SR",
"RANKED_FLEX_TT",
"RANKED_TFT",
"RANKED_TFT_TURBO",
"RANKED_TFT_PAIRS"
],
"in": "query",
"name": "queueType",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-social-leaderboard"
]
}
},
"/lol-social-leaderboard/v1/social-leaderboard-data": {
"get": {
"operationId": "GetLolSocialLeaderboardV1SocialLeaderboardData",
"parameters": [
{
"enum": [
"NONE",
"RANKED_SOLO_5x5",
"RANKED_FLEX_SR",
"RANKED_FLEX_TT",
"RANKED_TFT",
"RANKED_TFT_TURBO",
"RANKED_TFT_PAIRS"
],
"in": "query",
"name": "queueType",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSocialLeaderboardSocialLeaderboardData"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-social-leaderboard"
]
}
},
"/lol-spectator/v1/buddy/spectate": {
"post": {
"operationId": "PostLolSpectatorV1BuddySpectate",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSpectatorSummonerOrTeamAvailabilty"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-spectator"
]
}
},
"/lol-spectator/v1/spectate": {
"get": {
"operationId": "GetLolSpectatorV1Spectate",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSpectatorSpectateGameInfo"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-spectator"
]
}
},
"/lol-spectator/v1/spectate/launch": {
"post": {
"operationId": "PostLolSpectatorV1SpectateLaunch",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSpectatorSpectateGameInfo"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-spectator"
]
}
},
"/lol-statstones/v1/eog-notifications": {
"delete": {
"operationId": "DeleteLolStatstonesV1EogNotifications",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-statstones"
]
},
"get": {
"operationId": "GetLolStatstonesV1EogNotifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-statstones"
]
}
},
"/lol-statstones/v1/eog-notifications/{key}": {
"delete": {
"operationId": "DeleteLolStatstonesV1EogNotificationsByKey",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "key",
"required": true,
"type": "integer"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-statstones"
]
}
},
"/lol-statstones/v1/featured-champion-statstones/{championItemId}": {
"get": {
"operationId": "GetLolStatstonesV1FeaturedChampionStatstonesByChampionItemId",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "championItemId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolStatstonesStatstone"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-statstones"
]
}
},
"/lol-statstones/v1/featured-champion-statstones/{championItemId}/{statstoneId}": {
"post": {
"operationId": "PostLolStatstonesV1FeaturedChampionStatstonesByChampionItemIdByStatstoneId",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "championItemId",
"required": true,
"type": "integer"
},
{
"in": "path",
"name": "statstoneId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolStatstonesStatstoneFeaturedRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-statstones"
]
}
},
"/lol-statstones/v1/profile-summary/{puuid}": {
"get": {
"operationId": "GetLolStatstonesV1ProfileSummaryByPuuid",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolStatstonesProfileStatstoneSummary"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-statstones"
]
}
},
"/lol-statstones/v1/statstone/{contentId}/owned": {
"get": {
"operationId": "GetLolStatstonesV1StatstoneByContentIdOwned",
"parameters": [
{
"in": "path",
"name": "contentId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-statstones"
]
}
},
"/lol-statstones/v1/statstones-enabled-queue-ids": {
"get": {
"operationId": "GetLolStatstonesV1StatstonesEnabledQueueIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-statstones"
]
}
},
"/lol-statstones/v1/vignette-notifications": {
"delete": {
"operationId": "DeleteLolStatstonesV1VignetteNotifications",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-statstones"
]
},
"get": {
"operationId": "GetLolStatstonesV1VignetteNotifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-statstones"
]
}
},
"/lol-statstones/v1/vignette-notifications/{key}": {
"delete": {
"operationId": "DeleteLolStatstonesV1VignetteNotificationsByKey",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "key",
"required": true,
"type": "integer"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-statstones"
]
}
},
"/lol-statstones/v2/player-statstones-self/{championItemId}": {
"get": {
"operationId": "GetLolStatstonesV2PlayerStatstonesSelfByChampionItemId",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "championItemId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolStatstonesStatstoneSet"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-statstones"
]
}
},
"/lol-statstones/v2/player-summary-self": {
"get": {
"operationId": "GetLolStatstonesV2PlayerSummarySelf",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolStatstonesChampionStatstoneSummary"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-statstones"
]
}
},
"/lol-store/v1/catalog": {
"get": {
"operationId": "GetLolStoreV1Catalog",
"parameters": [
{
"in": "query",
"items": {
"type": "string"
},
"name": "inventoryType",
"required": false,
"type": "array"
},
{
"in": "query",
"items": {
"format": "int32",
"type": "integer"
},
"name": "itemId",
"required": false,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolStoreCatalogItem"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/catalog/sales": {
"get": {
"operationId": "GetLolStoreV1CatalogSales",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolStoreItemSale"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/catalog/{inventoryType}": {
"get": {
"operationId": "GetLolStoreV1CatalogByInventoryType",
"parameters": [
{
"in": "path",
"name": "inventoryType",
"required": true,
"type": "string"
},
{
"in": "query",
"items": {
"format": "int32",
"type": "integer"
},
"name": "itemIds",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolStoreCatalogItem"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/catalogByInstanceIds": {
"get": {
"operationId": "GetLolStoreV1CatalogByInstanceIds",
"parameters": [
{
"in": "query",
"items": {
"type": "string"
},
"name": "instanceIds",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolStoreCatalogItem"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/getStoreUrl": {
"get": {
"operationId": "GetLolStoreV1GetStoreUrl",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/giftablefriends": {
"get": {
"operationId": "GetLolStoreV1Giftablefriends",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolStoreGiftingFriend"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/itemKeysFromInstanceIds": {
"get": {
"operationId": "GetLolStoreV1ItemKeysFromInstanceIds",
"parameters": [
{
"in": "query",
"items": {
"type": "string"
},
"name": "instanceIds",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"$ref": "#/components/schemas/LolStoreItemKey"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/itemKeysFromOfferIds": {
"get": {
"operationId": "GetLolStoreV1ItemKeysFromOfferIds",
"parameters": [
{
"in": "query",
"items": {
"type": "string"
},
"name": "offerIds",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"$ref": "#/components/schemas/LolStoreItemKey"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/lastPage": {
"get": {
"operationId": "GetLolStoreV1LastPage",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
},
"post": {
"operationId": "PostLolStoreV1LastPage",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/notifications/acknowledge": {
"post": {
"operationId": "PostLolStoreV1NotificationsAcknowledge",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/offers": {
"get": {
"operationId": "GetLolStoreV1Offers",
"parameters": [
{
"in": "query",
"items": {
"type": "string"
},
"name": "inventoryTypeUUIDs",
"required": false,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolStoreCapOffer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/order-notifications": {
"get": {
"operationId": "GetLolStoreV1OrderNotifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolStoreOrderNotificationResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/order-notifications/{id}": {
"get": {
"operationId": "GetLolStoreV1OrderNotificationsById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolStoreOrderNotificationResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/paymentDetails": {
"get": {
"operationId": "GetLolStoreV1PaymentDetails",
"parameters": [
{
"in": "query",
"name": "action",
"required": true,
"type": "string"
},
{
"format": "int64",
"in": "query",
"name": "giftRecipientAccountId",
"required": false,
"type": "integer"
},
{
"in": "query",
"name": "giftMessage",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/skins/{skinId}": {
"get": {
"operationId": "GetLolStoreV1SkinsBySkinId",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "skinId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolStoreCatalogItem"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/skins/{skinId}/purchase": {
"post": {
"operationId": "PostLolStoreV1SkinsBySkinIdPurchase",
"parameters": [
{
"format": "int32",
"in": "path",
"name": "skinId",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolStoreItemCost"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/status": {
"get": {
"operationId": "GetLolStoreV1Status",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolStoreStoreStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/store-ready": {
"get": {
"operationId": "GetLolStoreV1StoreReady",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/wallet": {
"get": {
"operationId": "GetLolStoreV1Wallet",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolStoreWallet"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-store/v1/{pageType}": {
"get": {
"operationId": "GetLolStoreV1ByPageType",
"parameters": [
{
"in": "path",
"name": "pageType",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-store"
]
}
},
"/lol-suggested-players/v1/reported-player": {
"post": {
"operationId": "PostLolSuggestedPlayersV1ReportedPlayer",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSuggestedPlayersSuggestedPlayersReportedPlayer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-suggested-players"
]
}
},
"/lol-suggested-players/v1/suggested-players": {
"get": {
"operationId": "GetLolSuggestedPlayersV1SuggestedPlayers",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolSuggestedPlayersSuggestedPlayersSuggestedPlayer"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-suggested-players"
]
}
},
"/lol-suggested-players/v1/suggested-players/{summonerId}": {
"delete": {
"operationId": "DeleteLolSuggestedPlayersV1SuggestedPlayersBySummonerId",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "summonerId",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-suggested-players"
]
}
},
"/lol-suggested-players/v1/victorious-comrade": {
"post": {
"operationId": "PostLolSuggestedPlayersV1VictoriousComrade",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSuggestedPlayersSuggestedPlayersVictoriousComrade"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin lol-suggested-players"
]
}
},
"/lol-summoner/v1/check-name-availability-new-summoners/{name}": {
"get": {
"operationId": "GetLolSummonerV1CheckNameAvailabilityNewSummonersByName",
"parameters": [
{
"in": "path",
"name": "name",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/check-name-availability/{name}": {
"get": {
"operationId": "GetLolSummonerV1CheckNameAvailabilityByName",
"parameters": [
{
"in": "path",
"name": "name",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/current-summoner": {
"get": {
"operationId": "GetLolSummonerV1CurrentSummoner",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerSummoner"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/current-summoner/account-and-summoner-ids": {
"get": {
"operationId": "GetLolSummonerV1CurrentSummonerAccountAndSummonerIds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerAccountIdAndSummonerId"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/current-summoner/autofill": {
"get": {
"operationId": "GetLolSummonerV1CurrentSummonerAutofill",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolSummonerAutoFillQueueDto"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/current-summoner/icon": {
"put": {
"operationId": "PutLolSummonerV1CurrentSummonerIcon",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerSummonerIcon"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerSummoner"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/current-summoner/jwt": {
"get": {
"operationId": "GetLolSummonerV1CurrentSummonerJwt",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/current-summoner/name": {
"post": {
"operationId": "PostLolSummonerV1CurrentSummonerName",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerSummoner"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/current-summoner/profile-privacy": {
"get": {
"operationId": "GetLolSummonerV1CurrentSummonerProfilePrivacy",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerProfilePrivacy"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
},
"put": {
"operationId": "PutLolSummonerV1CurrentSummonerProfilePrivacy",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerProfilePrivacySetting"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/current-summoner/rerollPoints": {
"get": {
"operationId": "GetLolSummonerV1CurrentSummonerRerollPoints",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerSummonerRerollPoints"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/current-summoner/summoner-profile": {
"get": {
"operationId": "GetLolSummonerV1CurrentSummonerSummonerProfile",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
},
"post": {
"operationId": "PostLolSummonerV1CurrentSummonerSummonerProfile",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerSummonerProfileUpdate"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/profile-privacy-enabled": {
"get": {
"operationId": "GetLolSummonerV1ProfilePrivacyEnabled",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerProfilePrivacyEnabledState"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/status": {
"get": {
"operationId": "GetLolSummonerV1Status",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/summoner-profile": {
"get": {
"operationId": "GetLolSummonerV1SummonerProfile",
"parameters": [
{
"in": "query",
"name": "puuid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/summoner-requests-ready": {
"get": {
"operationId": "GetLolSummonerV1SummonerRequestsReady",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/summoners": {
"get": {
"operationId": "GetLolSummonerV1Summoners",
"parameters": [
{
"in": "query",
"name": "name",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerSummoner"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
},
"post": {
"operationId": "PostLolSummonerV1Summoners",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerSummonerRequestedName"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerSummoner"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/summoners-by-puuid-cached/{puuid}": {
"get": {
"operationId": "GetLolSummonerV1SummonersByPuuidCachedByPuuid",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerSummoner"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v1/summoners/{id}": {
"get": {
"operationId": "GetLolSummonerV1SummonersById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerSummoner"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v2/summoner-icons": {
"get": {
"operationId": "GetLolSummonerV2SummonerIcons",
"parameters": [
{
"in": "query",
"items": {
"format": "int64",
"type": "integer"
},
"name": "ids",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolSummonerSummonerIdAndIcon"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v2/summoner-names": {
"get": {
"operationId": "GetLolSummonerV2SummonerNames",
"parameters": [
{
"in": "query",
"items": {
"format": "int64",
"type": "integer"
},
"name": "ids",
"required": true,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolSummonerSummonerIdAndName"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v2/summoners": {
"get": {
"operationId": "GetLolSummonerV2Summoners",
"parameters": [
{
"in": "query",
"items": {
"format": "int64",
"type": "integer"
},
"name": "ids",
"required": false,
"type": "array"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolSummonerSummoner"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v2/summoners/names": {
"post": {
"operationId": "PostLolSummonerV2SummonersNames",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolSummonerSummoner"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v2/summoners/puuid": {
"post": {
"operationId": "PostLolSummonerV2SummonersPuuid",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolSummonerSummoner"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-summoner/v2/summoners/puuid/{puuid}": {
"get": {
"operationId": "GetLolSummonerV2SummonersPuuidByPuuid",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolSummonerSummoner"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-summoner"
]
}
},
"/lol-tastes/v1/ready": {
"get": {
"operationId": "GetLolTastesV1Ready",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-tastes"
]
}
},
"/lol-tastes/v1/skins-model": {
"get": {
"operationId": "GetLolTastesV1SkinsModel",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolTastesDataModelResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-tastes"
]
}
},
"/lol-tft/v1/tft/hubFooterColors": {
"get": {
"operationId": "GetLolTftV1TftHubFooterColors",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolTftLolTftHubFooterColors"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-tft"
]
}
},
"/lol-tft/v1/tft/storePromos": {
"get": {
"operationId": "GetLolTftV1TftStorePromos",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolTftLolTftStorePromos"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-tft"
]
}
},
"/lol-tft/v2/tft/battlepass": {
"get": {
"operationId": "GetLolTftV2TftBattlepass",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolMissionsTftPaidBattlepass"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-missions"
]
}
},
"/lol-token-upsell/v1/all": {
"get": {
"operationId": "GetLolTokenUpsellV1All",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/LolWorldsTokenCardTokenUpsell"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-worlds-token-card"
]
}
},
"/lol-trophies/v1/current-summoner/trophies/profile": {
"get": {
"operationId": "GetLolTrophiesV1CurrentSummonerTrophiesProfile",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolTrophiesTrophyProfileData"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-trophies"
]
}
},
"/lol-trophies/v1/players/{puuid}/trophies/profile": {
"get": {
"operationId": "GetLolTrophiesV1PlayersByPuuidTrophiesProfile",
"parameters": [
{
"in": "path",
"name": "puuid",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LolTrophiesTrophyProfileData"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin lol-trophies"
]
}
},
"/memory/v1/fe-processes-ready": {
"get": {
"operationId": "GetMemoryV1FeProcessesReady",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"summary": "Returns whether or not the frontend processes are ready",
"tags": []
}
},
"/memory/v1/notify-fe-processes-ready": {
"post": {
"operationId": "PostMemoryV1NotifyFeProcessesReady",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Sends an event that the frontend processes are ready",
"tags": []
}
},
"/memory/v1/snapshot": {
"post": {
"operationId": "PostMemoryV1Snapshot",
"parameters": [
{
"in": "query",
"name": "context",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"items": {
"format": "int32",
"type": "integer"
},
"type": "array"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Sends current memory usage info to telemetry.",
"tags": []
}
},
"/patcher/v1/notifications": {
"get": {
"operationId": "GetPatcherV1Notifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PatcherNotification"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
},
"post": {
"operationId": "PostPatcherV1Notifications",
"parameters": [
{
"enum": [
"UnspecifiedError",
"ConnectionError",
"MissingFilesError",
"FailedToWriteError",
"WillRestoreClientBackupOnRestart",
"DidRestoreClientBackup",
"NotEnoughDiskSpace",
"BrokenPermissions"
],
"in": "query",
"name": "notificationId",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/notifications/{id}": {
"delete": {
"operationId": "DeletePatcherV1NotificationsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/p2p/status": {
"get": {
"operationId": "GetPatcherV1P2pStatus",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PatcherP2PStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
},
"patch": {
"operationId": "PatchPatcherV1P2pStatus",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PatcherP2PStatusUpdate"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/products": {
"get": {
"operationId": "GetPatcherV1Products",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/products/league_of_legends/full-repair-request": {
"post": {
"operationId": "PostPatcherV1ProductsLeagueOfLegendsFullRepairRequest",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/products/{product-id}": {
"delete": {
"operationId": "DeletePatcherV1ProductsByProductId",
"parameters": [
{
"in": "path",
"name": "product-id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/products/{product-id}/detect-corruption-request": {
"post": {
"operationId": "PostPatcherV1ProductsByProductIdDetectCorruptionRequest",
"parameters": [
{
"in": "path",
"name": "product-id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PatcherProductState"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/products/{product-id}/partial-repair-request": {
"post": {
"operationId": "PostPatcherV1ProductsByProductIdPartialRepairRequest",
"parameters": [
{
"in": "path",
"name": "product-id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/products/{product-id}/paths": {
"get": {
"operationId": "GetPatcherV1ProductsByProductIdPaths",
"parameters": [
{
"in": "path",
"name": "product-id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/products/{product-id}/signal-start-patching-delayed": {
"post": {
"operationId": "PostPatcherV1ProductsByProductIdSignalStartPatchingDelayed",
"parameters": [
{
"in": "path",
"name": "product-id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/products/{product-id}/start-checking-request": {
"post": {
"operationId": "PostPatcherV1ProductsByProductIdStartCheckingRequest",
"parameters": [
{
"in": "path",
"name": "product-id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/products/{product-id}/start-patching-request": {
"post": {
"operationId": "PostPatcherV1ProductsByProductIdStartPatchingRequest",
"parameters": [
{
"in": "path",
"name": "product-id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/products/{product-id}/state": {
"get": {
"operationId": "GetPatcherV1ProductsByProductIdState",
"parameters": [
{
"in": "path",
"name": "product-id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PatcherProductState"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/products/{product-id}/stop-checking-request": {
"post": {
"operationId": "PostPatcherV1ProductsByProductIdStopCheckingRequest",
"parameters": [
{
"in": "path",
"name": "product-id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/products/{product-id}/stop-patching-request": {
"post": {
"operationId": "PostPatcherV1ProductsByProductIdStopPatchingRequest",
"parameters": [
{
"in": "path",
"name": "product-id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/products/{product-id}/tags": {
"get": {
"operationId": "GetPatcherV1ProductsByProductIdTags",
"parameters": [
{
"in": "path",
"name": "product-id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/self-update-restart": {
"put": {
"operationId": "PutPatcherV1SelfUpdateRestart",
"parameters": [
{
"in": "query",
"name": "forceRestartOnSelfUpdate",
"required": true,
"type": "boolean"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/status": {
"get": {
"operationId": "GetPatcherV1Status",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PatcherStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/patcher/v1/ux": {
"put": {
"operationId": "PutPatcherV1Ux",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PatcherUxResource"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin patcher"
]
}
},
"/payments/v1/pmc-start-url": {
"post": {
"operationId": "PostPaymentsV1PmcStartUrl",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsFrontEndRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentsFrontEndResult"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin payments"
]
}
},
"/performance/v1/memory": {
"get": {
"operationId": "GetPerformanceV1Memory",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Returns process memory status",
"tags": []
}
},
"/performance/v1/process/{processId}": {
"post": {
"operationId": "PostPerformanceV1ProcessByProcessId",
"parameters": [
{
"description": "Id of the process to track performance information.",
"format": "int32",
"in": "path",
"name": "processId",
"required": true,
"type": "integer"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Registers the process and includes it with the performance information.",
"tags": [
"performance"
]
}
},
"/performance/v1/report": {
"get": {
"operationId": "GetPerformanceV1Report",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"summary": "Returns the various performance information for the cef processes",
"tags": [
"performance"
]
}
},
"/performance/v1/report/restart": {
"post": {
"operationId": "PostPerformanceV1ReportRestart",
"parameters": [
{
"description": "Time in seconds for each CPU timing sample.",
"format": "int32",
"in": "query",
"name": "sampleLength",
"required": false,
"type": "integer"
},
{
"description": "Number of samples to record.",
"format": "int32",
"in": "query",
"name": "sampleCount",
"required": false,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"summary": "Restarts the CPU timing information and returns the results from PerfReportProcesses",
"tags": [
"performance"
]
}
},
"/performance/v1/system-info": {
"get": {
"operationId": "GetPerformanceV1SystemInfo",
"parameters": [
{
"description": "Returns all available system information",
"format": "int32",
"in": "query",
"name": "full",
"required": false,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Returns hardware and software specs for the machine the client is running on.",
"tags": []
}
},
"/player-notifications/v1/config": {
"get": {
"operationId": "GetPlayerNotificationsV1Config",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlayerNotificationsPlayerNotificationConfigResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin player-notifications"
]
},
"put": {
"operationId": "PutPlayerNotificationsV1Config",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlayerNotificationsPlayerNotificationConfigResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlayerNotificationsPlayerNotificationConfigResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin player-notifications"
]
}
},
"/player-notifications/v1/notifications": {
"get": {
"operationId": "GetPlayerNotificationsV1Notifications",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PlayerNotificationsPlayerNotificationResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin player-notifications"
]
},
"post": {
"operationId": "PostPlayerNotificationsV1Notifications",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlayerNotificationsPlayerNotificationResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlayerNotificationsPlayerNotificationResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin player-notifications"
]
}
},
"/player-notifications/v1/notifications/{id}": {
"delete": {
"operationId": "DeletePlayerNotificationsV1NotificationsById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin player-notifications"
]
},
"get": {
"operationId": "GetPlayerNotificationsV1NotificationsById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlayerNotificationsPlayerNotificationResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin player-notifications"
]
},
"put": {
"operationId": "PutPlayerNotificationsV1NotificationsById",
"parameters": [
{
"format": "int64",
"in": "path",
"name": "id",
"required": true,
"type": "integer"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PlayerNotificationsPlayerNotificationResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin player-notifications"
]
}
},
"/plugin-manager/v1/external-plugins/availability": {
"get": {
"operationId": "GetPluginManagerV1ExternalPluginsAvailability",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ExternalPluginsResource"
}
}
},
"description": "Successful response"
}
},
"summary": "Get the status of the external plugin connection.",
"tags": [
"Plugins",
"Plugin Manager",
"Plugin Manager Diagnostics"
]
}
},
"/plugin-manager/v1/status": {
"get": {
"operationId": "GetPluginManagerV1Status",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PluginManagerResource"
}
}
},
"description": "Successful response"
}
},
"summary": "Get the status of the plugin manager.",
"tags": [
"Plugins",
"Plugin Manager",
"Plugin Manager Diagnostics"
]
}
},
"/plugin-manager/v2/descriptions": {
"get": {
"operationId": "GetPluginManagerV2Descriptions",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PluginDescriptionResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"summary": "Get all plugin descriptions.",
"tags": [
"Plugins",
"Plugin Manager",
"Plugin Manager Info"
]
}
},
"/plugin-manager/v2/descriptions/{plugin}": {
"get": {
"operationId": "GetPluginManagerV2DescriptionsByPlugin",
"parameters": [
{
"description": "Plugin name",
"in": "path",
"name": "plugin",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PluginDescriptionResource"
}
}
},
"description": "Successful response"
}
},
"summary": "Get a plugin description.",
"tags": [
"Plugins",
"Plugin Manager",
"Plugin Manager Info"
]
}
},
"/plugin-manager/v2/plugins": {
"get": {
"operationId": "GetPluginManagerV2Plugins",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PluginResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"summary": "Get diagnostic information for all plugins.",
"tags": [
"Plugins",
"Plugin Manager",
"Plugin Manager Diagnostics"
]
}
},
"/plugin-manager/v2/plugins/{plugin}": {
"get": {
"operationId": "GetPluginManagerV2PluginsByPlugin",
"parameters": [
{
"description": "Plugin name",
"in": "path",
"name": "plugin",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PluginResource"
}
}
},
"description": "Successful response"
}
},
"summary": "Get diagnostic information for a single plugin.",
"tags": [
"Plugins",
"Plugin Manager",
"Plugin Manager Diagnostics"
]
}
},
"/plugin-manager/v3/plugins-manifest": {
"get": {
"operationId": "GetPluginManagerV3PluginsManifest",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Get the plugin manifest.",
"tags": [
"Plugins",
"Plugin Manager",
"Plugin Manager Info"
]
}
},
"/process-control/v1/process": {
"get": {
"operationId": "GetProcessControlV1Process",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProcessControlProcess"
}
}
},
"description": "Successful response"
}
},
"summary": "Returns information about the process-control.",
"tags": []
}
},
"/process-control/v1/process/quit": {
"post": {
"operationId": "PostProcessControlV1ProcessQuit",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Quits the application.",
"tags": []
}
},
"/process-control/v1/process/restart": {
"post": {
"operationId": "PostProcessControlV1ProcessRestart",
"parameters": [
{
"format": "int32",
"in": "query",
"name": "delaySeconds",
"required": true,
"type": "integer"
},
{
"format": "int32",
"in": "query",
"name": "restartVersion",
"required": false,
"type": "integer"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Restarts the application. Does nothing if there is already a waiting delayed restart. Optionally accepts specific version to restart.",
"tags": []
}
},
"/process-control/v1/process/restart-to-repair": {
"post": {
"operationId": "PostProcessControlV1ProcessRestartToRepair",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Restarts the application in order to perform a full repair (including self repair).",
"tags": []
}
},
"/riot-messaging-service/v1/connect": {
"delete": {
"operationId": "DeleteRiotMessagingServiceV1Connect",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin riot-messaging-service"
]
},
"post": {
"operationId": "PostRiotMessagingServiceV1Connect",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin riot-messaging-service"
]
}
},
"/riot-messaging-service/v1/entitlements": {
"delete": {
"operationId": "DeleteRiotMessagingServiceV1Entitlements",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin riot-messaging-service"
]
},
"post": {
"operationId": "PostRiotMessagingServiceV1Entitlements",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RiotMessagingServiceEntitlementsToken"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin riot-messaging-service"
]
}
},
"/riot-messaging-service/v1/message/{a}": {
"get": {
"operationId": "GetRiotMessagingServiceV1MessageByA",
"parameters": [
{
"in": "path",
"name": "a",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RmsMessage"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin riot-messaging-service"
]
}
},
"/riot-messaging-service/v1/message/{a}/{b}": {
"get": {
"operationId": "GetRiotMessagingServiceV1MessageByAByB",
"parameters": [
{
"in": "path",
"name": "a",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "b",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RmsMessage"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin riot-messaging-service"
]
}
},
"/riot-messaging-service/v1/message/{a}/{b}/{c}": {
"get": {
"operationId": "GetRiotMessagingServiceV1MessageByAByBByC",
"parameters": [
{
"in": "path",
"name": "a",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "b",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "c",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RmsMessage"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin riot-messaging-service"
]
}
},
"/riot-messaging-service/v1/message/{a}/{b}/{c}/{d}": {
"get": {
"operationId": "GetRiotMessagingServiceV1MessageByAByBByCByD",
"parameters": [
{
"in": "path",
"name": "a",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "b",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "c",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "d",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RmsMessage"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin riot-messaging-service"
]
}
},
"/riot-messaging-service/v1/message/{a}/{b}/{c}/{d}/{e}": {
"get": {
"operationId": "GetRiotMessagingServiceV1MessageByAByBByCByDByE",
"parameters": [
{
"in": "path",
"name": "a",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "b",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "c",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "d",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "e",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RmsMessage"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin riot-messaging-service"
]
}
},
"/riot-messaging-service/v1/message/{a}/{b}/{c}/{d}/{e}/{f}": {
"get": {
"operationId": "GetRiotMessagingServiceV1MessageByAByBByCByDByEByF",
"parameters": [
{
"in": "path",
"name": "a",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "b",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "c",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "d",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "e",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "f",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RmsMessage"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin riot-messaging-service"
]
}
},
"/riot-messaging-service/v1/session": {
"delete": {
"operationId": "DeleteRiotMessagingServiceV1Session",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin riot-messaging-service"
]
},
"get": {
"operationId": "GetRiotMessagingServiceV1Session",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RiotMessagingServiceSession"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin riot-messaging-service"
]
}
},
"/riot-messaging-service/v1/state": {
"get": {
"operationId": "GetRiotMessagingServiceV1State",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RiotMessagingServiceState"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin riot-messaging-service"
]
}
},
"/riotclient/addorupdatemetric": {
"post": {
"operationId": "PostRiotclientAddorupdatemetric",
"parameters": [
{
"description": "Name of metric group",
"in": "query",
"name": "group",
"required": true,
"type": "string"
},
{
"description": "Name of metric object",
"in": "query",
"name": "object",
"required": true,
"type": "string"
},
{
"description": "Name of metric item",
"in": "query",
"name": "name",
"required": true,
"type": "string"
},
{
"description": "Value to store",
"format": "int64",
"in": "query",
"name": "value",
"required": true,
"type": "integer"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Adds or Updates a Metric",
"tags": [
"core",
"logging"
]
}
},
"/riotclient/affinity": {
"delete": {
"operationId": "DeleteRiotclientAffinity",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Deletes the current runtime affinity of the application.",
"tags": []
},
"get": {
"operationId": "GetRiotclientAffinity",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Get the current runtime affinity of the application.",
"tags": []
},
"post": {
"operationId": "PostRiotclientAffinity",
"parameters": [
{
"description": "The new affinity to use.",
"in": "query",
"name": "newAffinity",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Sets the current runtime affinity of the application.",
"tags": []
}
},
"/riotclient/app-name": {
"get": {
"operationId": "GetRiotclientAppName",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"summary": "Application name without file extension",
"tags": []
}
},
"/riotclient/app-port": {
"get": {
"operationId": "GetRiotclientAppPort",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"summary": "Get the TCP port number that the remoting server is listening on.",
"tags": []
}
},
"/riotclient/auth-token": {
"get": {
"operationId": "GetRiotclientAuthToken",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"summary": "Return the auth token used by the remoting server",
"tags": []
}
},
"/riotclient/command-line-args": {
"get": {
"operationId": "GetRiotclientCommandLineArgs",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"summary": "Get the command line parameters for the application",
"tags": []
}
},
"/riotclient/get_region_locale": {
"get": {
"operationId": "GetRiotclientGetRegionLocale",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RegionLocale"
}
}
},
"description": "Successful response"
}
},
"summary": "Get the current region and locale.",
"tags": []
}
},
"/riotclient/kill-and-restart-ux": {
"post": {
"operationId": "PostRiotclientKillAndRestartUx",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Kills the ux process and restarts it. Used only when the ux process crashes.",
"tags": []
}
},
"/riotclient/kill-ux": {
"post": {
"operationId": "PostRiotclientKillUx",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Kills the ux process.",
"tags": []
}
},
"/riotclient/launch-ux": {
"post": {
"operationId": "PostRiotclientLaunchUx",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Launches the ux process.",
"tags": []
}
},
"/riotclient/machine-id": {
"get": {
"operationId": "GetRiotclientMachineId",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"summary": "Base64 encoded uuid identifying the user's machine",
"tags": []
}
},
"/riotclient/new-args": {
"post": {
"operationId": "PostRiotclientNewArgs",
"parameters": [],
"requestBody": {
"content": {
"application/x-www-form-urlencoded": {}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Endpoint for passing in new data.",
"tags": []
}
},
"/riotclient/region-locale": {
"get": {
"operationId": "GetRiotclientRegionLocale",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RegionLocale"
}
}
},
"description": "Successful response"
}
},
"summary": "Get the current region and locale.",
"tags": []
},
"put": {
"operationId": "PutRiotclientRegionLocale",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RegionLocale"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Update the region and locale.",
"tags": []
}
},
"/riotclient/region-locale/ack": {
"put": {
"operationId": "PutRiotclientRegionLocaleAck",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Ux acknowledges the update to the region and locale.",
"tags": []
}
},
"/riotclient/set_region_locale": {
"post": {
"operationId": "PostRiotclientSetRegionLocale",
"parameters": [
{
"description": "Name of the region.",
"in": "query",
"name": "region",
"required": true,
"type": "string"
},
{
"description": "Name of the locale.",
"in": "query",
"name": "locale",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Update the region and locale.",
"tags": []
}
},
"/riotclient/show-swagger": {
"post": {
"operationId": "PostRiotclientShowSwagger",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Open swagger in the default browser.",
"tags": []
}
},
"/riotclient/splash": {
"delete": {
"operationId": "DeleteRiotclientSplash",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Hide the splash screen.",
"tags": []
},
"put": {
"operationId": "PutRiotclientSplash",
"parameters": [
{
"in": "query",
"name": "splash",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Show the splash screen.",
"tags": []
}
},
"/riotclient/system-info/v1/basic-info": {
"get": {
"operationId": "GetRiotclientSystemInfoV1BasicInfo",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/basicSystemInfo"
}
}
},
"description": "Successful response"
}
},
"summary": "Get basic system information: OS, memory, processor speed, and number of physical cores",
"tags": []
}
},
"/riotclient/trace": {
"get": {
"operationId": "GetRiotclientTrace",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Retrieves a completed scheduler trace.",
"tags": []
}
},
"/riotclient/unload": {
"post": {
"operationId": "PostRiotclientUnload",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Unloads the UX process",
"tags": []
}
},
"/riotclient/ux-allow-foreground": {
"post": {
"operationId": "PostRiotclientUxAllowForeground",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Allows the background process to launch the game into the foregound.",
"tags": []
}
},
"/riotclient/ux-crash-count": {
"get": {
"operationId": "GetRiotclientUxCrashCount",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"summary": "Returns whether the ux has crashed or not",
"tags": []
}
},
"/riotclient/ux-flash": {
"post": {
"operationId": "PostRiotclientUxFlash",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Flash the ux process' main window and the taskbar/dock icon, if they exist.",
"tags": []
}
},
"/riotclient/ux-load-complete": {
"put": {
"operationId": "PutRiotclientUxLoadComplete",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Ux notification that it has completed loading the main window.",
"tags": []
}
},
"/riotclient/ux-minimize": {
"post": {
"operationId": "PostRiotclientUxMinimize",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Minimize the ux process and all its windows if it exists. This does not kill the ux.",
"tags": []
}
},
"/riotclient/ux-show": {
"post": {
"operationId": "PostRiotclientUxShow",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Shows the ux process if it exists; create and show if it does not.",
"tags": []
}
},
"/riotclient/ux-state": {
"get": {
"operationId": "GetRiotclientUxState",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
},
"description": "Successful response"
}
},
"summary": "Get the current Ux state.",
"tags": []
}
},
"/riotclient/ux-state/ack": {
"put": {
"operationId": "PutRiotclientUxStateAck",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Ux acknowledges the update to the Ux state.",
"tags": []
}
},
"/riotclient/v1/auth-tokens/{authToken}": {
"delete": {
"operationId": "DeleteRiotclientV1AuthTokensByAuthToken",
"parameters": [
{
"in": "path",
"name": "authToken",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Unregister an existing auth token.",
"tags": []
},
"put": {
"operationId": "PutRiotclientV1AuthTokensByAuthToken",
"parameters": [
{
"description": "Authentication token to add.",
"in": "path",
"name": "authToken",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Register an auth token. This is any alpha-numeric string that will be used as a password with the `riot` user when making requests.",
"tags": []
}
},
"/riotclient/v1/crash-reporting/environment": {
"get": {
"operationId": "GetRiotclientV1CrashReportingEnvironment",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CrashReportingEnvironment"
}
}
},
"description": "Successful response"
}
},
"summary": "Get the crash reporting environment identifier.",
"tags": []
},
"put": {
"operationId": "PutRiotclientV1CrashReportingEnvironment",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CrashReportingEnvironment"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Tags the crash with an environment so it can be filtered more easily.",
"tags": []
}
},
"/riotclient/v1/crash-reporting/logs": {
"post": {
"operationId": "PostRiotclientV1CrashReportingLogs",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Adds the enclosed log to the app's crash report.",
"tags": []
}
},
"/riotclient/v1/elevation-requests": {
"post": {
"operationId": "PostRiotclientV1ElevationRequests",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ElevationRequest"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": []
}
},
"/riotclient/v1/self-update-info": {
"put": {
"operationId": "PutRiotclientV1SelfUpdateInfo",
"parameters": [
{
"in": "query",
"name": "url",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "uuid",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": []
}
},
"/riotclient/zoom-scale": {
"get": {
"operationId": "GetRiotclientZoomScale",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "double",
"type": "number"
}
}
},
"description": "Successful response"
}
},
"summary": "Gets the last known posted zoom-scale value.",
"tags": []
},
"post": {
"operationId": "PostRiotclientZoomScale",
"parameters": [
{
"description": "The new value of the zoom scale.",
"format": "double",
"in": "query",
"name": "newZoomScale",
"required": true,
"type": "number"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Handles changing the zoom scale value.",
"tags": []
}
},
"/sanitizer/v1/containsSanitized": {
"post": {
"operationId": "PostSanitizerV1ContainsSanitized",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SanitizerContainsSanitizedRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SanitizerContainsSanitizedResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin sanitizer"
]
}
},
"/sanitizer/v1/sanitize": {
"post": {
"operationId": "PostSanitizerV1Sanitize",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SanitizerSanitizeRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SanitizerSanitizeResponse"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin sanitizer"
]
}
},
"/sanitizer/v1/status": {
"get": {
"operationId": "GetSanitizerV1Status",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SanitizerSanitizerStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin sanitizer"
]
}
},
"/swagger/v1/api-docs": {
"get": {
"operationId": "HttpApiDocsV1",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Retrieves the API documentation resource listing",
"tags": [
"builtin"
]
}
},
"/swagger/v1/api-docs/{api}": {
"get": {
"operationId": "HttpApiDeclarationV1",
"parameters": [
{
"description": "API to get a declaration for",
"in": "path",
"name": "api",
"required": true,
"type": "string"
},
{
"description": "API to get a declaration for",
"in": "path",
"name": "api",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Retrieves the API declaration for a supported API",
"tags": [
"builtin"
]
}
},
"/swagger/v2/swagger.json": {
"get": {
"operationId": "HttpApiDocsV2",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Retrieves the API documentation",
"tags": [
"builtin"
]
}
},
"/swagger/v3/openapi.json": {
"get": {
"operationId": "HttpApiDocsV3",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Retrieves the API documentation",
"tags": [
"builtin"
]
}
},
"/system/v1/builds": {
"get": {
"operationId": "GetSystemV1Builds",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BuildInfo"
}
}
},
"description": "Successful response"
}
},
"summary": "Information about the current artifacts that make up this build",
"tags": []
}
},
"/telemetry/v1/application-start-time": {
"get": {
"operationId": "GetTelemetryV1ApplicationStartTime",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
},
"description": "Successful response"
}
},
"summary": "Gets the millisecond UNIX timestamp of when the application was started.",
"tags": []
}
},
"/telemetry/v1/common-data/{key}": {
"post": {
"operationId": "PostTelemetryV1CommonDataByKey",
"parameters": [
{
"description": "The name of the common data key",
"in": "path",
"name": "key",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Adds/updates a common data key and value to be sent with every subsequent event.",
"tags": []
}
},
"/telemetry/v1/events-once/{eventType}": {
"post": {
"operationId": "PostTelemetryV1EventsOnceByEventType",
"parameters": [
{
"description": "The name of the event type",
"in": "path",
"name": "eventType",
"required": true,
"type": "string"
},
{
"description": "A unique tag used to ensure this event is sent only once",
"in": "query",
"name": "onceTag",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Adds a new event to be sent to Dradis and/or other analytics/monitoring data sinks that will be sent only once during this client executable run regardless of any javascript frontend restarts. All events will have their eventType prefixed with \"riot__rclient__\"",
"tags": []
}
},
"/telemetry/v1/events-with-perf-info/{eventType}": {
"post": {
"operationId": "PostTelemetryV1EventsWithPerfInfoByEventType",
"parameters": [
{
"description": "The name of the event type",
"in": "path",
"name": "eventType",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Adds a new event to be sent to Dradis and/or other analytics/monitoring data sinks. This will include current performance information along with the passed in data. Each call will record the performance counters then reset them for use in the next call. All events will have their eventType prefixed with \"riot__rclient__\"",
"tags": []
}
},
"/telemetry/v1/events/{eventType}": {
"post": {
"operationId": "PostTelemetryV1EventsByEventType",
"parameters": [
{
"description": "The name of the event type",
"in": "path",
"name": "eventType",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Adds a new event to be sent to Dradis and/or other analytics/monitoring data sinks. All events will have their eventType prefixed with \"riot__rclient__\"",
"tags": []
}
},
"/telemetry/v3/events-once/{eventType}": {
"post": {
"operationId": "PostTelemetryV3EventsOnceByEventType",
"parameters": [
{
"description": "The name of the event type",
"in": "path",
"name": "eventType",
"required": true,
"type": "string"
},
{
"description": "A unique tag used to ensure this event is sent only once",
"in": "query",
"name": "onceTag",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Adds a new event to be sent to Dradis and/or other analytics/monitoring data sinks using the Riot Data API that will be sent only once during this client executable run regardless of any javascript frontend restarts. All events will have their eventType prefixed with \"riot__rclient__\"",
"tags": []
}
},
"/telemetry/v3/events/{eventType}": {
"post": {
"operationId": "PostTelemetryV3EventsByEventType",
"parameters": [
{
"description": "The name of the event type",
"in": "path",
"name": "eventType",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"additionalProperties": {
"additionalProperties": true,
"type": "object"
},
"type": "object"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Adds a new event to be sent to Dradis and/or other analytics/monitoring data sinks using the Riot Data API. All events will have their eventType prefixed with \"riot__rclient__\"",
"tags": []
}
},
"/tracing/v1/performance/{name}": {
"delete": {
"operationId": "DeleteTracingV1PerformanceByName",
"parameters": [
{
"in": "path",
"name": "name",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Ends recording of a performance metric.",
"tags": [
"Tracing"
]
},
"post": {
"operationId": "PostTracingV1PerformanceByName",
"parameters": [
{
"in": "path",
"name": "name",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Starts recording of a performance metric.",
"tags": [
"Tracing"
]
}
},
"/tracing/v1/trace/event": {
"post": {
"operationId": "PostTracingV1TraceEvent",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TracingEventV1"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Record a tracing event.",
"tags": [
"Tracing"
]
}
},
"/tracing/v1/trace/module": {
"post": {
"operationId": "PostTracingV1TraceModule",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TracingModuleV1"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Record a module description.",
"tags": [
"Tracing"
]
}
},
"/tracing/v1/trace/non-timing-event/{eventName}": {
"post": {
"operationId": "PostTracingV1TraceNonTimingEventByEventName",
"parameters": [
{
"description": "Name of the event",
"in": "path",
"name": "eventName",
"required": true,
"type": "string"
},
{
"description": "The value to be recorded",
"in": "query",
"name": "value",
"required": true,
"type": "string"
},
{
"description": "The unit of measurement for the value",
"in": "query",
"name": "unit",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Record a non timing telemetry event.",
"tags": [
"Tracing"
]
}
},
"/tracing/v1/trace/phase/begin": {
"post": {
"operationId": "PostTracingV1TracePhaseBegin",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TracingPhaseBeginV1"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Record a tracing phase beginning.",
"tags": [
"Tracing"
]
}
},
"/tracing/v1/trace/phase/end": {
"post": {
"operationId": "PostTracingV1TracePhaseEnd",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TracingPhaseEndV1"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Record a tracing phase ending.",
"tags": [
"Tracing"
]
}
},
"/tracing/v1/trace/step-event": {
"post": {
"operationId": "PostTracingV1TraceStepEvent",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Record a tracing step event.",
"tags": [
"Tracing"
]
}
},
"/tracing/v1/trace/time-series-event/{eventName}": {
"delete": {
"operationId": "DeleteTracingV1TraceTimeSeriesEventByEventName",
"parameters": [
{
"description": "Name of the event",
"in": "path",
"name": "eventName",
"required": true,
"type": "string"
},
{
"description": "When the event occurred",
"format": "int64",
"in": "query",
"name": "when",
"required": true,
"type": "integer"
},
{
"description": "Optional eventName suffix to apply that mutates the event name to indicate the outcome",
"in": "query",
"name": "suffix",
"required": false,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Record the ending of a time series event.",
"tags": [
"Tracing"
]
},
"post": {
"operationId": "PostTracingV1TraceTimeSeriesEventByEventName",
"parameters": [
{
"description": "Name of the event",
"in": "path",
"name": "eventName",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Record the beginning of a time series event.",
"tags": [
"Tracing"
]
}
},
"/tracing/v1/trace/time-series-event/{eventName}/marker/{markerName}": {
"post": {
"operationId": "PostTracingV1TraceTimeSeriesEventByEventNameMarkerByMarkerName",
"parameters": [
{
"description": "Plugin name",
"in": "path",
"name": "eventName",
"required": true,
"type": "string"
},
{
"description": "Name of the marker within the event",
"in": "path",
"name": "markerName",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int64",
"type": "integer"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"summary": "Record a marker within a time series event.",
"tags": [
"Tracing"
]
}
},
"/voice-chat/v1/audio-properties": {
"get": {
"operationId": "GetVoiceChatV1AudioProperties",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatAudioPropertiesResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v1/call-stats/aggregate": {
"get": {
"operationId": "GetVoiceChatV1CallStatsAggregate",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatCallStatsResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v1/call-stats/{id}": {
"get": {
"operationId": "GetVoiceChatV1CallStatsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/VoiceChatCallStatsResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v1/codec-settings": {
"get": {
"operationId": "GetVoiceChatV1CodecSettings",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatCodecSettingsResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
},
"put": {
"operationId": "PutVoiceChatV1CodecSettings",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatUpdateCodecSettingsResource"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v1/config": {
"get": {
"operationId": "GetVoiceChatV1Config",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatConfigResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v1/errors": {
"get": {
"operationId": "GetVoiceChatV1Errors",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/VoiceChatVoiceErrorCounterResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v1/push-to-talk": {
"get": {
"operationId": "GetVoiceChatV1PushToTalk",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatPushToTalkResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
},
"put": {
"operationId": "PutVoiceChatV1PushToTalk",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatPushToTalkResource"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v1/push-to-talk/check-available": {
"post": {
"operationId": "PostVoiceChatV1PushToTalkCheckAvailable",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"format": "int32",
"type": "integer"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "boolean"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v2/devices/capture": {
"get": {
"operationId": "GetVoiceChatV2DevicesCapture",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/VoiceChatDeviceResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v2/devices/capture/permission": {
"get": {
"operationId": "GetVoiceChatV2DevicesCapturePermission",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatCaptureDevicePermissionStatus"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v2/devices/capture/prompt-for-permission": {
"put": {
"operationId": "PutVoiceChatV2DevicesCapturePromptForPermission",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v2/devices/render": {
"get": {
"operationId": "GetVoiceChatV2DevicesRender",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/VoiceChatDeviceResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v2/sessions": {
"delete": {
"operationId": "DeleteVoiceChatV2Sessions",
"parameters": [],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
},
"get": {
"operationId": "GetVoiceChatV2Sessions",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/VoiceChatSessionResource"
},
"type": "array"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
},
"post": {
"operationId": "PostVoiceChatV2Sessions",
"parameters": [
{
"in": "header",
"name": "JWT",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatSessionResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v2/sessions/{id}": {
"delete": {
"operationId": "DeleteVoiceChatV2SessionsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
},
"get": {
"operationId": "GetVoiceChatV2SessionsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatSessionResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
},
"post": {
"operationId": "PostVoiceChatV2SessionsById",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"type": "string"
},
{
"in": "header",
"name": "JWT",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatSessionResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v2/sessions/{sessionId}/participants/{participantId}": {
"get": {
"operationId": "GetVoiceChatV2SessionsBySessionIdParticipantsByParticipantId",
"parameters": [
{
"in": "path",
"name": "sessionId",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "participantId",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatParticipantResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
},
"put": {
"operationId": "PutVoiceChatV2SessionsBySessionIdParticipantsByParticipantId",
"parameters": [
{
"in": "path",
"name": "sessionId",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "participantId",
"required": true,
"type": "string"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatUpdateParticipantResource"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v2/settings": {
"get": {
"operationId": "GetVoiceChatV2Settings",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatSettingsResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
},
"put": {
"operationId": "PutVoiceChatV2Settings",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatUpdateSettingsResource"
}
}
}
},
"responses": {
"204": {
"description": "No content"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/voice-chat/v2/state": {
"get": {
"operationId": "GetVoiceChatV2State",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VoiceChatStateResource"
}
}
},
"description": "Successful response"
}
},
"tags": [
"Plugins",
"Plugin voice-chat"
]
}
},
"/{plugin}/assets/{path}": {
"get": {
"operationId": "GetByPluginAssetsByPath",
"parameters": [
{
"description": "Plugin name to serve from",
"in": "path",
"name": "plugin",
"required": true,
"type": "string"
},
{
"description": "Path to the asset to serve",
"in": "path",
"name": "path",
"required": true,
"type": "string"
},
{
"description": "optional ETag of the asset that the caller has cached",
"in": "header",
"name": "if-none-match",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Download a backend asset",
"tags": [
"Plugins",
"Plugin Manager",
"Plugin Asset Serving"
]
},
"head": {
"operationId": "HeadByPluginAssetsByPath",
"parameters": [
{
"description": "Plugin name to serve from",
"in": "path",
"name": "plugin",
"required": true,
"type": "string"
},
{
"description": "Path to the asset to serve",
"in": "path",
"name": "path",
"required": true,
"type": "string"
},
{
"description": "optional ETag of the asset that the caller has cached",
"in": "header",
"name": "if-none-match",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"additionalProperties": true,
"type": "object"
}
}
},
"description": "Successful response"
}
},
"summary": "Download the header for a backend asset",
"tags": [
"Plugins",
"Plugin Manager",
"Plugin Asset Serving"
]
}
}
}
}