changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "dataset": {
+ "additionalProperties": {},
+ "properties": {
+ "answer": {
+ "type": "string"
+ },
+ "downloadUrl": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "faqs": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "a": {
+ "type": "string"
+ },
+ "q": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "q",
+ "a"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "h1": {
+ "type": "string"
+ },
+ "includes": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "notes": {
+ "type": "string"
+ },
+ "schema": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "description": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "description"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "h1",
+ "answer",
+ "includes",
+ "schema",
+ "notes",
+ "faqs",
+ "url",
+ "downloadUrl"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "dataset"
+ ],
+ "type": "object"
+}