Checkiday Event Summary

A summary of a holiday or observance.

CalendarHolidaysEventsObservancesDatesTimePublic APIs

Properties

Name Type Description
id string The Event Id.
name string The Event name.
url string The Event URL on checkiday.com.
View JSON Schema on GitHub

JSON Schema

checkiday-event-summary-schema.json Raw ↑
{
  "$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"
      ]
    }
  }
}