changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "jsonld": {
+ "description": "BlogPosting JSON-LD (slug mode).",
+ "type": "object"
+ },
+ "post": {
+ "description": "One post (slug mode).",
+ "properties": {
+ "body": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ },
+ "locale": {
+ "type": "string"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "title"
+ ],
+ "type": "object"
+ },
+ "posts": {
+ "description": "Published posts (list mode).",
+ "items": {
+ "properties": {
+ "body": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ },
+ "locale": {
+ "type": "string"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "title"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}