Skip to content

Instantly share code, notes, and snippets.

@klotzambein
Last active September 28, 2017 12:49
Show Gist options
  • Save klotzambein/2b2f907003b3cee0f8721315fe2e3d1c to your computer and use it in GitHub Desktop.
Save klotzambein/2b2f907003b3cee0f8721315fe2e3d1c to your computer and use it in GitHub Desktop.
{
"$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",
"properties": { "ip": { "type": "string" }, "port": { "type": "number" } }
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment