Created
June 12, 2025 15:26
-
-
Save MoritzStefaner/db8c3f8fda7a4d6857a10214268a0047 to your computer and use it in GitHub Desktop.
Revisions
-
MoritzStefaner created this gist
Jun 12, 2025 .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,13 @@ { "$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"] }