Tabula Holiday Dates Response

Response envelope for GET https://tabula.warwick.ac.uk/api/v1/holidaydates — statutory and customary University holiday dates. Derived from the live response captured unauthenticated on 2026-08-19, which carried 199 dates from 2012-12-24 to 2027-08-30.

UniversityHigher EducationEducationResearchUnited KingdomRussell GroupIdentity FederationResearch RepositoryCourse CatalogTimetablingStudent Information SystemOpen Data

Properties

Name Type Description
success boolean
status string
dates array Holiday dates in ISO date format.
View JSON Schema on GitHub

JSON Schema

university-of-warwick-tabula-holidaydates.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/university-of-warwick/main/json-schema/university-of-warwick-tabula-holidaydates.json",
  "title": "Tabula Holiday Dates Response",
  "description": "Response envelope for GET https://tabula.warwick.ac.uk/api/v1/holidaydates — statutory and customary University holiday dates. Derived from the live response captured unauthenticated on 2026-08-19, which carried 199 dates from 2012-12-24 to 2027-08-30.",
  "x-generated": "2026-08-19",
  "x-method": "derived",
  "x-source": "examples/university-of-warwick-tabula-holidaydates.json",
  "x-operator": "institution",
  "type": "object",
  "required": ["success", "status", "dates"],
  "additionalProperties": false,
  "properties": {
    "success": { "type": "boolean", "const": true },
    "status": { "type": "string", "const": "ok" },
    "dates": {
      "type": "array",
      "description": "Holiday dates in ISO date format.",
      "items": { "type": "string", "format": "date" }
    }
  }
}