changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "post": {
+ "description": "The parent post",
+ "properties": {
+ "author": {
+ "description": "Author's display name or handle",
+ "type": "string"
+ },
+ "createdAt": {
+ "description": "ISO timestamp of post creation",
+ "type": "string"
+ },
+ "handle": {
+ "description": "Author's handle",
+ "type": "string"
+ },
+ "likes": {
+ "description": "Number of likes",
+ "type": "number"
+ },
+ "replies": {
+ "description": "Number of replies",
+ "type": "number"
+ },
+ "reposts": {
+ "description": "Number of reposts",
+ "type": "number"
+ },
+ "text": {
+ "description": "Post content text",
+ "type": "string"
+ },
+ "uri": {
+ "description": "AT URI of the post",
+ "type": "string"
+ }
+ },
+ "required": [
+ "uri",
+ "author",
+ "handle",
+ "text",
+ "createdAt",
+ "likes",
+ "reposts",
+ "replies"
+ ],
+ "type": "object"
+ },
+ "replies": {
+ "description": "Reply posts in conversation order",
+ "items": {
+ "properties": {
+ "author": {
+ "description": "Author's display name or handle",
+ "type": "string"
+ },
+ "createdAt": {
+ "description": "ISO timestamp of post creation",
+ "type": "string"
+ },
+ "handle": {
+ "description": "Author's handle",
+ "type": "string"
+ },
+ "likes": {
+ "description": "Number of likes",
+ "type": "number"
+ },
+ "replies": {
+ "description": "Number of replies",
+ "type": "number"
+ },
+ "reposts": {
+ "description": "Number of reposts",
+ "type": "number"
+ },
+ "text": {
+ "description": "Post content text",
+ "type": "string"
+ },
+ "uri": {
+ "description": "AT URI of the post",
+ "type": "string"
+ }
+ },
+ "required": [
+ "uri",
+ "author",
+ "handle",
+ "text",
+ "createdAt",
+ "likes",
+ "reposts",
+ "replies"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "post",
+ "replies"
+ ],
+ "type": "object"
+}