-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBroadcastTour.yaml
More file actions
78 lines (76 loc) · 1.86 KB
/
BroadcastTour.yaml
File metadata and controls
78 lines (76 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
type: object
properties:
id:
type: string
name:
type: string
slug:
type: string
createdAt:
type: integer
example: 1722169800000
dates:
type: array
items:
type: integer
format: int64
description: "Start and end dates of the tournament, as Unix timestamps in milliseconds"
minItems: 1
maxItems: 2
example: [1722169800000, 1722666600000]
info:
type: object
description: "Additional display information about the tournament"
properties:
website:
type: string
format: uri
description: "Official website. External website URL"
players:
type: string
description: "Featured players"
location:
type: string
description: "Tournament location"
tc:
type: string
description: "Time control"
fideTC:
description: "FIDE rating category"
$ref: "./FideTimeControl.yaml"
timeZone:
type: string
description: |
Timezone of the tournament. Example: `America/New_York`.
See [list of possible timezone identifiers](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) for more.
standings:
type: string
format: uri
description: "Official standings website. External website URL"
format:
type: string
description: "Tournament format"
tier:
type: integer
description: "Used to designate featured tournaments on Lichess"
image:
type: string
format: uri
description:
type: string
description: "Full tournament description in markdown format, or in HTML if the html=1 query parameter is set."
teamTable:
type: boolean
showTeamScores:
type: boolean
url:
type: string
format: uri
communityOwner:
$ref: "./LightUser.yaml"
required:
- id
- name
- slug
- createdAt
- url