changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "posts": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "audience": {
+ "$ref": "#/properties/posts/items/properties/title"
+ },
+ "id": {
+ "exclusiveMinimum": 0,
+ "maximum": 9007199254740991,
+ "type": "integer"
+ },
+ "post_date": {
+ "$ref": "#/properties/posts/items/properties/title"
+ },
+ "slug": {
+ "$ref": "#/properties/posts/items/properties/title"
+ },
+ "subtitle": {
+ "$ref": "#/properties/posts/items/properties/title"
+ },
+ "title": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "$ref": "#/properties/posts/items/properties/title"
+ },
+ "word_count": {
+ "$ref": "#/properties/total"
+ }
+ },
+ "required": [
+ "id"
+ ],
+ "type": "object"
+ },
+ "maxItems": 50,
+ "type": "array"
+ },
+ "total": {
+ "anyOf": [
+ {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "posts"
+ ],
+ "type": "object"
+}