changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "changeMagnitude": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "entries": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "body": {
+ "type": "string"
+ },
+ "citations": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "domain": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "title",
+ "domain"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "headline": {
+ "type": "string"
+ },
+ "occurredAt": {
+ "type": "string"
+ },
+ "significance": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "occurredAt",
+ "headline",
+ "body",
+ "citations"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "entryCount": {
+ "type": "number"
+ },
+ "history": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "changeMagnitude": {
+ "type": "number"
+ },
+ "magnitudeReason": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "stateOfPlay": {
+ "type": "string"
+ },
+ "thesis": {
+ "type": "string"
+ },
+ "tickAt": {
+ "type": "string"
+ },
+ "trigger": {
+ "enum": [
+ "scheduled",
+ "signal",
+ "manual"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "tickAt",
+ "thesis",
+ "stateOfPlay",
+ "changeMagnitude",
+ "magnitudeReason",
+ "trigger"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "id": {
+ "type": "string"
+ },
+ "lastTickAt": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "magnitudeReason": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "name": {
+ "type": "string"
+ },
+ "section": {
+ "enum": [
+ "europe",
+ "world",
+ "other"
+ ],
+ "type": "string"
+ },
+ "stateOfPlay": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "thesis": {
+ "type": "string"
+ },
+ "url": {
+ "format": "uri",
+ "type": "string"
+ },
+ "weekHighlights": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "id",
+ "section",
+ "name",
+ "thesis",
+ "changeMagnitude",
+ "magnitudeReason",
+ "lastTickAt",
+ "entryCount",
+ "url",
+ "stateOfPlay",
+ "weekHighlights",
+ "entries"
+ ],
+ "type": "object"
+}