changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "author": {
+ "type": "string"
+ },
+ "book": {
+ "type": "string"
+ },
+ "related_historical_fiction": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "amazon_url": {
+ "type": "string"
+ },
+ "author": {
+ "type": "string"
+ },
+ "historical_guide_url": {
+ "type": "string"
+ },
+ "note": {
+ "type": "string"
+ },
+ "relationship": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "author",
+ "relationship",
+ "amazon_url",
+ "historical_guide_url",
+ "note"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "source_url": {
+ "type": "string"
+ },
+ "sources": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "book",
+ "author",
+ "source_url",
+ "sources",
+ "related_historical_fiction"
+ ],
+ "type": "object"
+}