changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "births": {
+ "description": "Notable births on this day",
+ "items": {
+ "properties": {
+ "pages": {
+ "description": "Related Wikipedia article titles",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "text": {
+ "description": "Description of the person",
+ "type": "string"
+ },
+ "year": {
+ "description": "Year of birth",
+ "type": "number"
+ }
+ },
+ "required": [
+ "year",
+ "text",
+ "pages"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "day": {
+ "description": "Two-digit day number provided",
+ "type": "string"
+ },
+ "deaths": {
+ "description": "Notable deaths on this day",
+ "items": {
+ "properties": {
+ "pages": {
+ "description": "Related Wikipedia article titles",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "text": {
+ "description": "Description of the person",
+ "type": "string"
+ },
+ "year": {
+ "description": "Year of death",
+ "type": "number"
+ }
+ },
+ "required": [
+ "year",
+ "text",
+ "pages"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "events": {
+ "description": "Historical events on this day",
+ "items": {
+ "properties": {
+ "pages": {
+ "description": "Related Wikipedia article titles",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "text": {
+ "description": "Description of the event",
+ "type": "string"
+ },
+ "year": {
+ "description": "Year of the event",
+ "type": "number"
+ }
+ },
+ "required": [
+ "year",
+ "text",
+ "pages"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "holidays": {
+ "description": "Holidays and observances on this day",
+ "items": {
+ "properties": {
+ "pages": {
+ "description": "Related Wikipedia article titles",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "text": {
+ "description": "Description of the holiday",
+ "type": "string"
+ }
+ },
+ "required": [
+ "text",
+ "pages"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "month": {
+ "description": "Two-digit month number provided",
+ "type": "string"
+ }
+ },
+ "required": [
+ "month",
+ "day",
+ "events",
+ "births",
+ "deaths",
+ "holidays"
+ ],
+ "type": "object"
+}