changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "comments": {
+ "description": "List of comments",
+ "items": {
+ "properties": {
+ "body": {
+ "description": "Comment text",
+ "type": "string"
+ },
+ "id": {
+ "description": "Comment ID",
+ "type": "number"
+ },
+ "postId": {
+ "description": "Post ID",
+ "type": "number"
+ },
+ "user": {
+ "properties": {
+ "id": {
+ "description": "User ID",
+ "type": "number"
+ },
+ "username": {
+ "description": "Username",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "limit": {
+ "description": "Limit of comments returned",
+ "type": "number"
+ },
+ "skip": {
+ "description": "Number of comments skipped",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total comment count",
+ "type": "number"
+ }
+ },
+ "type": "object"
+}