changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "hasMore": {
+ "type": "boolean"
+ },
+ "limit": {
+ "type": "integer"
+ },
+ "offset": {
+ "type": "integer"
+ },
+ "pages": {
+ "items": {
+ "properties": {
+ "createdAt": {
+ "type": "string"
+ },
+ "expiresAt": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "format": {
+ "enum": [
+ "markdown",
+ "html"
+ ],
+ "type": "string"
+ },
+ "likes": {
+ "type": "integer"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "status": {
+ "type": "string"
+ },
+ "title": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "type": "string"
+ },
+ "views": {
+ "type": "integer"
+ }
+ },
+ "required": [
+ "slug",
+ "url",
+ "format",
+ "status"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "type": "integer"
+ }
+ },
+ "required": [
+ "pages",
+ "total",
+ "limit",
+ "offset",
+ "hasMore"
+ ],
+ "type": "object"
+}