{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/checkiday-national-holiday-api/json-schema/checkiday-event-summary-schema.json", "title": "Checkiday Event Summary", "description": "A summary of a holiday or observance.", "type": "object", "required": ["id", "name", "url"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "The Event Id.", "examples": ["b80630ae75c35f34c0526173dd999cfc"] }, "name": { "type": "string", "description": "The Event name.", "examples": ["Cinco de Mayo"] }, "url": { "type": "string", "format": "uri", "description": "The Event URL on checkiday.com.", "examples": [ "https://www.checkiday.com/b80630ae75c35f34c0526173dd999cfc/cinco-de-mayo" ] } } }