Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save MoritzStefaner/db8c3f8fda7a4d6857a10214268a0047 to your computer and use it in GitHub Desktop.

Select an option

Save MoritzStefaner/db8c3f8fda7a4d6857a10214268a0047 to your computer and use it in GitHub Desktop.

Revisions

  1. MoritzStefaner created this gist Jun 12, 2025.
    13 changes: 13 additions & 0 deletions gistfile1.txt
    Original 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"]
    }