-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendar.json
47 lines (47 loc) · 1.01 KB
/
calendar.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
{
"$id": "https://example.com/calendar.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A representation of an event",
"type": "object",
"required": [ "dtstart", "summary" ],
"properties": {
"startDate": {
"type": "string",
"description": "Event starting time"
},
"endDate": {
"type": "string",
"description": "Event ending time"
},
"summary": {
"type": "string"
},
"location": {
"type": "string"
},
"url": {
"type": "string"
},
"duration": {
"type": "string",
"description": "Event duration"
},
"recurrenceDate": {
"type": "string",
"description": "Recurrence date"
},
"recurrenceDule": {
"type": "string",
"description": "Recurrence rule"
},
"category": {
"type": "string"
},
"description": {
"type": "string"
},
"geo": {
"$ref": "https://example.com/geographical-location.schema.json"
}
}
}