changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "limit": {
+ "description": "Limit of posts returned",
+ "type": "number"
+ },
+ "posts": {
+ "description": "List of posts",
+ "items": {
+ "properties": {
+ "body": {
+ "description": "Post body content",
+ "type": "string"
+ },
+ "id": {
+ "description": "Post ID",
+ "type": "number"
+ },
+ "reactions": {
+ "description": "Number of reactions",
+ "type": "number"
+ },
+ "tags": {
+ "description": "Post tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Post title",
+ "type": "string"
+ },
+ "userId": {
+ "description": "User ID of post author",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "skip": {
+ "description": "Number of posts skipped",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total post count",
+ "type": "number"
+ }
+ },
+ "type": "object"
+}