Abstract API · JSON Structure

Public Holidays Holiday Structure

A public holiday entry

Type: object Properties: 12
AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

Holiday is a JSON Structure definition published by Abstract API, describing 12 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name name_local language description country location type date date_year date_month date_day week_day

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-structure/public-holidays-holiday-structure.json",
  "name": "Holiday",
  "description": "A public holiday entry",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Holiday name in English",
      "example": "Easter Sunday"
    },
    "name_local": {
      "type": "string",
      "description": "Holiday name in local language",
      "example": "Paques"
    },
    "language": {
      "type": "string",
      "description": "Language of the local name",
      "example": "FR"
    },
    "description": {
      "type": "string",
      "description": "Additional details about the holiday",
      "example": "Easter Sunday marks the resurrection of Jesus Christ"
    },
    "country": {
      "type": "string",
      "description": "Country code",
      "example": "US"
    },
    "location": {
      "type": "string",
      "description": "Specific region where holiday applies",
      "example": ""
    },
    "type": {
      "type": "string",
      "description": "Holiday classification",
      "example": "National",
      "enum": [
        "National",
        "Local",
        "Religious",
        "Observance",
        "Season",
        "Clock Change/Daylight Saving Time"
      ]
    },
    "date": {
      "type": "string",
      "description": "Holiday date in MM/DD/YYYY format",
      "example": "04/20/2025"
    },
    "date_year": {
      "type": "string",
      "description": "Year of the holiday",
      "example": "2025"
    },
    "date_month": {
      "type": "string",
      "description": "Month of the holiday",
      "example": "04"
    },
    "date_day": {
      "type": "string",
      "description": "Day of the holiday",
      "example": "20"
    },
    "week_day": {
      "type": "string",
      "description": "Day of the week",
      "example": "Sunday"
    }
  }
}