Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MoritzStefaner/db8c3f8fda7a4d6857a10214268a0047 to your computer and use it in GitHub Desktop.
Save MoritzStefaner/db8c3f8fda7a4d6857a10214268a0047 to your computer and use it in GitHub Desktop.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Calendar Event",
"type": "object",
"properties": {
"startDate": { "type": "string", "format": "date-time", "description": "Event starting time" },
"endDate": { "type": "string", "format": "date-time", "description": "Event ending time" },
"summary": { "type": "string", "description": "Event summary/title" },
"location": { "type": "string", "description": "Event location" },
"description": { "type": "string", "description": "Event description" }
},
"required": ["startDate", "summary"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment