-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathevent.schema.json
124 lines (123 loc) · 3.27 KB
/
event.schema.json
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://kockatykalendar.sk/v0.0.6/event.schema.json",
"title": "Event",
"description": "An event in the calendar",
"type": "object",
"properties": {
"name": {
"description": "Name of the event",
"type": "string"
},
"sciences": {
"description": "Event sciences",
"type": "array",
"items": {
"type": "string",
"enum": ["mat", "fyz", "inf", "other", "any"]
},
"minItems": 1,
"uniqueItems": true
},
"type": {
"description": "Event type",
"type": "string",
"enum": ["sutaz", "seminar", "sustredenie", "vikendovka", "tabor", "olympiada", "prednasky", "other"]
},
"date": {
"description": "Date information",
"type": "object",
"properties": {
"start": {
"description": "Event date or start date if more days",
"type": "string",
"format": "date"
},
"end": {
"description": "End date",
"type": "string",
"format": "date"
},
"text": {
"description": "Event date for user",
"type": "string"
}
},
"required": ["start"]
},
"organizers": {
"description": "Organizer or list of organizers",
"type": "array",
"items": {
"type": "string"
}
},
"link": {
"description": "Link to more information",
"type": "string",
"format": "uri"
},
"places": {
"description": "Place where the event is organized",
"type": "array",
"items": {
"type": "string"
}
},
"contestants": {
"description": "Contestant information",
"type": "object",
"properties": {
"min": {
"description": "Minimal required attended class",
"type": ["string", "null"],
"pattern": "^(zs[1-9]|ss[1-4])$"
},
"max": {
"description": "Maximal allowed attended class",
"type": ["string", "null"],
"pattern": "^(zs[1-9]|ss[1-4])$"
}
},
"required": ["min", "max"]
},
"info": {
"description": "Short description of event",
"type": "string",
"maxLength": 255
},
"color": {
"description": "Override default color based on first science",
"type": "string",
"anyOf": [
{ "enum": ["red", "orange", "yellow", "green", "blue", "purple"] },
{ "pattern": "^#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$" }
]
},
"volatile": {
"description": "If true, the event may not take place due to COVID-19 restrictions",
"type": "boolean",
"default": false
},
"cancelled": {
"description": "If true, the event was cancelled",
"type": "boolean",
"default": false
},
"notifications": {
"description": "Notification settings",
"type": "object",
"properties": {
"remind_days_before": {
"description": "How many days before should we notify people",
"type": "array",
"items": {
"type": "number"
}
}
},
"required": ["remind_days_before"]
}
},
"required": ["name", "sciences", "type", "date", "organizers", "places", "contestants"]
}