changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "country_code": {
+ "description": "ISO 3166-1 alpha-2 country code in uppercase",
+ "type": "string"
+ },
+ "upcoming_holidays": {
+ "description": "List of upcoming public holidays from today onward",
+ "items": {
+ "properties": {
+ "counties": {
+ "description": "Specific counties/regions where holiday is observed",
+ "items": {
+ "type": "string"
+ },
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "date": {
+ "description": "Holiday date (ISO format)",
+ "type": "string"
+ },
+ "global": {
+ "description": "Whether holiday is observed globally in 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"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "country_code",
+ "upcoming_holidays"
+ ],
+ "type": "object"
+}