changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "date": {
+ "type": "string"
+ },
+ "music_birthdays": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "person": {
+ "type": "string"
+ },
+ "year": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "year",
+ "person"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "music_events": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "event": {
+ "type": "string"
+ },
+ "year": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "year",
+ "event"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "music_passings": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "person": {
+ "type": "string"
+ },
+ "year": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "year",
+ "person"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "source": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "date",
+ "music_events",
+ "music_birthdays",
+ "music_passings",
+ "source"
+ ],
+ "type": "object"
+}