Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/json-schema/draft-03/examples/calendar')
-rw-r--r--node_modules/json-schema/draft-03/examples/calendar53
1 files changed, 0 insertions, 53 deletions
diff --git a/node_modules/json-schema/draft-03/examples/calendar b/node_modules/json-schema/draft-03/examples/calendar
deleted file mode 100644
index 0ec47c2..0000000
--- a/node_modules/json-schema/draft-03/examples/calendar
+++ /dev/null
@@ -1,53 +0,0 @@
-{
- "description" : "A representation of an event",
- "type" : "object",
- "properties" : {
- "dtstart" : {
- "format" : "date-time",
- "type" : "string",
- "description" : "Event starting time",
- "required":true
- },
- "summary" : {
- "type":"string",
- "required":true
- },
- "location" : {
- "type" : "string"
- },
- "url" : {
- "type" : "string",
- "format" : "url"
- },
- "dtend" : {
- "format" : "date-time",
- "type" : "string",
- "description" : "Event ending time"
- },
- "duration" : {
- "format" : "date",
- "type" : "string",
- "description" : "Event duration"
- },
- "rdate" : {
- "format" : "date-time",
- "type" : "string",
- "description" : "Recurrence date"
- },
- "rrule" : {
- "type" : "string",
- "description" : "Recurrence rule"
- },
- "category" : {
- "type" : "string"
- },
- "description" : {
- "type" : "string"
- },
- "geo" : { "$ref" : "http://json-schema.org/draft-03/geo" }
- }
-}
-
-
-
-