Abstract API · Schema
Holiday
A public holiday entry
AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Holiday name in English |
| name_local | string | Holiday name in local language |
| language | string | Language of the local name |
| description | string | Additional details about the holiday |
| country | string | Country code |
| location | string | Specific region where holiday applies |
| type | string | Holiday classification |
| date | string | Holiday date in MM/DD/YYYY format |
| date_year | string | Year of the holiday |
| date_month | string | Month of the holiday |
| date_day | string | Day of the holiday |
| week_day | string | Day of the week |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Holiday",
"title": "Holiday",
"type": "object",
"description": "A public holiday entry",
"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"
}
}
}