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.
2 parents 812000a + f241489 commit eac46c4Copy full SHA for eac46c4
calendar
@@ -1,19 +1,20 @@
1
{
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
"description": "A representation of an event",
4
"type": "object",
5
+ "required": [ "dtstart", "summary" ],
6
"properties": {
7
"dtstart": {
8
"format": "date-time",
9
"type": "string",
- "description": "Event starting time",
- "required": true
10
+ "description": "Event starting time"
11
},
12
"dtend": {
13
14
15
"description": "Event ending time"
16
- "summary": { "type": "string", "required": true },
17
+ "summary": { "type": "string" },
18
"___location": { "type": "string" },
19
"url": { "type": "string", "format": "uri" },
20
"duration": {
0 commit comments