changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "bundleUrl": {
+ "type": "string"
+ },
+ "datasets": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "downloadUrl": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "gated": {
+ "type": "boolean"
+ },
+ "live": {
+ "type": "boolean"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "title",
+ "summary",
+ "gated",
+ "url",
+ "downloadUrl"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "datePublished": {
+ "type": "string"
+ },
+ "total": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "datePublished",
+ "bundleUrl",
+ "datasets"
+ ],
+ "type": "object"
+}