changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "abstract": {
+ "type": "string"
+ },
+ "body": {
+ "type": "string"
+ },
+ "date": {
+ "type": "string"
+ },
+ "site": {
+ "additionalProperties": false,
+ "properties": {
+ "domain": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "name": {
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "domain"
+ ],
+ "type": "object"
+ },
+ "title": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "topics": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "url": {
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "title",
+ "site"
+ ],
+ "type": "object"
+}