We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d90e49c commit 0ff3730Copy full SHA for 0ff3730
documentation/docs/event_schema.yml
@@ -345,10 +345,16 @@ components:
345
type: string
346
nullable: true
347
description: Represents a side (CT vs T). `null` if no side. Represented as an integer enum.
348
- enum:
349
- - ct
350
- - t
351
- - spec
+ oneOf:
+ - title: CT
+ const: '1'
+ description: The string '1' represents the CT side
352
+ - title: T
353
+ const: '2'
354
+ description: The string '2' represents the T side
355
+ - title: Spectate
356
+ const: '3'
357
+ description: The string '3' represents a spectator
358
MatchZyTeamWrapper:
359
type: object
360
description: Describes a team (`Team1` or `Team2`).
0 commit comments