Initial commit
[yaffs-website] / node_modules / json-schema / draft-03 / examples / calendar
1 {\r
2         "description" : "A representation of an event",\r
3         "type" : "object",\r
4         "properties" : {\r
5                 "dtstart" : {\r
6                         "format" : "date-time",\r
7                         "type" : "string",\r
8                         "description" : "Event starting time",\r
9                         "required":true\r
10                 },\r
11                 "summary" : {\r
12                         "type":"string",\r
13                         "required":true\r
14                 },\r
15                 "location" : { \r
16                         "type" : "string" \r
17                 },\r
18                 "url" : {\r
19                         "type" : "string", \r
20                         "format" : "url" \r
21                 },\r
22                 "dtend" : {\r
23                         "format" : "date-time",\r
24                         "type" : "string",\r
25                         "description" : "Event ending time"\r
26                 },\r
27                 "duration" : {\r
28                         "format" : "date",\r
29                         "type" : "string",\r
30                         "description" : "Event duration"\r
31                 },\r
32                 "rdate" : {\r
33                         "format" : "date-time",\r
34                         "type" : "string",\r
35                         "description" : "Recurrence date"\r
36                 },\r
37                 "rrule" : {\r
38                         "type" : "string",\r
39                         "description" : "Recurrence rule"\r
40                 },\r
41                 "category" : {\r
42                         "type" : "string"\r
43                 },\r
44                 "description" : {\r
45                         "type" : "string"\r
46                 },\r
47                 "geo" : { "$ref" : "http://json-schema.org/draft-03/geo" }\r
48         }\r
49 }\r
50                 \r
51                         \r
52                         \r
53 \r