changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "categoryPath": {
+ "items": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "string"
+ },
+ {
+ "type": "string"
+ }
+ ],
+ "type": "array"
+ },
+ "charts": {
+ "items": {},
+ "type": "array"
+ },
+ "id": {
+ "type": "string"
+ },
+ "imageSource": {
+ "type": "string"
+ },
+ "imageUrl": {
+ "type": "string"
+ },
+ "lead": {
+ "type": "string"
+ },
+ "locations": {
+ "items": {},
+ "type": "array"
+ },
+ "mentionedPeople": {
+ "items": {},
+ "type": "array"
+ },
+ "modifiedAt": {
+ "type": "string"
+ },
+ "publishedAt": {
+ "type": "string"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "sources": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "publishDate": {
+ "type": "string"
+ },
+ "source": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "url",
+ "source"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "summary": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "slug",
+ "title",
+ "lead",
+ "summary",
+ "categoryPath",
+ "locations",
+ "mentionedPeople",
+ "charts",
+ "sources",
+ "imageUrl",
+ "imageSource",
+ "publishedAt",
+ "modifiedAt",
+ "url"
+ ],
+ "type": "object"
+}