changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "charts": {
+ "items": {},
+ "type": "array"
+ },
+ "executiveSummary": {
+ "type": "string"
+ },
+ "greeting": {
+ "type": "string"
+ },
+ "headline": {
+ "type": "string"
+ },
+ "lead": {
+ "type": "string"
+ },
+ "sections": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "category": {
+ "type": "string"
+ },
+ "categoryLabel": {
+ "type": "string"
+ },
+ "content": {
+ "type": "string"
+ },
+ "headline": {
+ "type": "string"
+ },
+ "relatedEventIds": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "category",
+ "categoryLabel",
+ "headline",
+ "content",
+ "relatedEventIds"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "shortHeadline": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "greeting",
+ "headline",
+ "shortHeadline",
+ "lead",
+ "executiveSummary",
+ "sections",
+ "charts"
+ ],
+ "type": "object"
+}