changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "pages": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "body": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "created_at": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "editing_roles": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "page_id": {
+ "type": "number"
+ },
+ "published": {
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "title": {
+ "type": "string"
+ },
+ "updated_at": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "page_id",
+ "url",
+ "title"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "pages"
+ ],
+ "type": "object"
+}