changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "article": {
+ "additionalProperties": {},
+ "properties": {
+ "author": {
+ "type": "string"
+ },
+ "body": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "date": {
+ "type": "string"
+ },
+ "faqs": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "a": {
+ "type": "string"
+ },
+ "q": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "q",
+ "a"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "keywords": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "pillar": {
+ "type": "string"
+ },
+ "readingTime": {
+ "type": "string"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "title",
+ "summary",
+ "pillar",
+ "date",
+ "author",
+ "readingTime",
+ "keywords",
+ "body",
+ "faqs",
+ "url"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "article"
+ ],
+ "type": "object"
+}