changedOutput schema / (root)
Previous value: -{
- "properties": {
- "count": {
- "description": "Total number of holidays returned",
- "type": "number"
- },
- "country_code": {
- "description": "ISO 3166-1 alpha-2 country code in uppercase",
- "type": "string"
- },
- "holidays": {
- "description": "List of public holidays for the country and year",
- "items": {
- "properties": {
- "counties": {
- "description": "List of counties/regions where holiday applies, or null if global",
- "items": {
- "type": "string"
- },
- "type": [
- "array",
- "null"
- ]
- },
- "date": {
- "description": "Holiday date in YYYY-MM-DD format",
- "type": "string"
- },
- "fixed": {
- "description": "Whether holiday is on a fixed date each year",
- "type": "boolean"
- },
- "global": {
- "description": "Whether holiday is observed globally across the country",
- "type": "boolean"
- },
- "local_name": {
- "description": "Holiday name in local language",
- "type": "string"
- },
- "name": {
- "description": "Holiday name in English",
- "type": "string"
- },
- "types": {
- "description": "Holiday types (e.g., public, bank, school)",
- "items": {
- "type": "string"
- },
- "type": "array"
- }
- },
- "required": [
- "date",
- "name",
- "local_name",
- "global",
- "counties",
- "types",
- "fixed"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "year": {
- "description": "The year requested",
- "type": "number"
- }
- },
- "required": [
- "year",
- "country_code",
- "count",
- "holidays"
- ],
- "type": "object"
-}New value: +null