Last active
September 28, 2017 12:49
-
-
Save klotzambein/2b2f907003b3cee0f8721315fe2e3d1c to your computer and use it in GitHub Desktop.
Revisions
-
klotzambein revised this gist
Sep 28, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,7 +11,7 @@ "type": "object", "title": "calendar", "description": "A calendar which should be hosted", "properties": { "ip": { "type": "string" }, "port": { "type": "number" } } } } } -
klotzambein revised this gist
Sep 28, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,7 +10,7 @@ "items": { "type": "object", "title": "calendar", "description": "A calendar which should be hosted", "properties": { "ip": { "type": "string" } } } } -
klotzambein revised this gist
Sep 28, 2017 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,6 +11,7 @@ "type": "object", "title": "calendar", "description": "A calendar which should be hosted" "properties": { "ip": { "type": "string" } } } } } -
klotzambein created this gist
Sep 28, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ { "$schema": "http://json-schema.org/draft-04/schema", "title": "Config schema", "type": "object", "properties": { "calendars": { "type": "array", "default": [], "uniqueItems": true, "items": { "type": "object", "title": "calendar", "description": "A calendar which should be hosted" } } } }