Skip to content

Commit

Permalink
Remove overrides for spectator-v4.[CurrentGame]Participant
Browse files Browse the repository at this point in the history
  • Loading branch information
MingweiSamuel committed Jan 19, 2024
1 parent 68ec2f9 commit 3c3ceb0
Showing 1 changed file with 0 additions and 151 deletions.
151 changes: 0 additions & 151 deletions src/data/schemaOverrides.json
Original file line number Diff line number Diff line change
Expand Up @@ -3179,156 +3179,5 @@
"rarity",
"tier"
]
},


"spectator-v4.Participant": {
"type": "object",
"title": "Participant",
"properties": {
"bot": {
"type": "boolean",
"x-type": "boolean",
"description": "Flag indicating whether or not this participant is a bot"
},
"spell2Id": {
"type": "integer",
"format": "int64",
"x-type": "long",
"description": "The ID of the second summoner spell used by this participant"
},
"profileIconId": {
"type": "integer",
"format": "int64",
"x-type": "long",
"description": "The ID of the profile icon used by this participant"
},
"summonerName": {
"type": "string",
"x-type": "string",
"description": "The summoner name of this participant"
},
"championId": {
"type": "integer",
"format": "int64",
"x-type": "long",
"description": "The ID of the champion played by this participant",
"x-enum": "champion"
},
"teamId": {
"type": "integer",
"format": "int64",
"x-type": "long",
"description": "The team ID of this participant, indicating the participant's team",
"x-enum": "team"
},
"spell1Id": {
"type": "integer",
"format": "int64",
"x-type": "long",
"description": "The ID of the first summoner spell used by this participant"
},

"puuid": {
"type": "string",
"x-type": "string"
},
"summonerId": {
"type": "string",
"x-type": "string"
}
},
"required": [
"bot",
"spell2Id",
"profileIconId",
"summonerName",
"championId",
"teamId",
"spell1Id"
]
},
"spectator-v4.CurrentGameParticipant": {
"type": "object",
"title": "CurrentGameParticipant",
"properties": {
"championId": {
"type": "integer",
"format": "int64",
"x-type": "long",
"description": "The ID of the champion played by this participant",
"x-enum": "champion"
},
"perks": {
"$ref": "#/components/schemas/spectator-v4.Perks",
"x-type": "Perks",
"description": "Perks/Runes Reforged Information"
},
"profileIconId": {
"type": "integer",
"format": "int64",
"x-type": "long",
"description": "The ID of the profile icon used by this participant"
},
"bot": {
"type": "boolean",
"x-type": "boolean",
"description": "Flag indicating whether or not this participant is a bot"
},
"teamId": {
"type": "integer",
"format": "int64",
"x-type": "long",
"description": "The team ID of this participant, indicating the participant's team",
"x-enum": "team"
},
"summonerName": {
"type": "string",
"x-type": "string",
"description": "The summoner name of this participant"
},
"summonerId": {
"type": "string",
"x-type": "string",
"description": "The encrypted summoner ID of this participant"
},
"spell1Id": {
"type": "integer",
"format": "int64",
"x-type": "long",
"description": "The ID of the first summoner spell used by this participant"
},
"spell2Id": {
"type": "integer",
"format": "int64",
"x-type": "long",
"description": "The ID of the second summoner spell used by this participant"
},
"gameCustomizationObjects": {
"type": "array",
"items": {
"$ref": "#/components/schemas/spectator-v4.GameCustomizationObject",
"x-type": "GameCustomizationObject"
},
"x-type": "List[GameCustomizationObject]",
"description": "List of Game Customizations"
},

"puuid": {
"type": "string",
"x-type": "string"
}
},
"required": [
"championId",
"profileIconId",
"bot",
"teamId",
"summonerName",
"summonerId",
"spell1Id",
"spell2Id",
"gameCustomizationObjects"
]
}
}

0 comments on commit 3c3ceb0

Please sign in to comment.