changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "comments": {
+ "description": "Array of comments on the post",
+ "items": {
+ "properties": {
+ "body": {
+ "description": "Comment text",
+ "type": "string"
+ },
+ "email": {
+ "description": "Commenter's email address",
+ "type": "string"
+ },
+ "id": {
+ "description": "Comment ID",
+ "type": "number"
+ },
+ "name": {
+ "description": "Commenter's name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "email",
+ "body"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "count": {
+ "description": "Number of comments returned",
+ "type": "number"
+ },
+ "post_id": {
+ "description": "Post ID the comments belong to",
+ "type": "number"
+ }
+ },
+ "required": [
+ "post_id",
+ "count",
+ "comments"
+ ],
+ "type": "object"
+}