Created
June 12, 2025 15:26
-
-
Save MoritzStefaner/db8c3f8fda7a4d6857a10214268a0047 to your computer and use it in GitHub Desktop.
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 characters
{ | |
"$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