changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "follows": {
+ "description": "List of followed profiles",
+ "items": {
+ "properties": {
+ "description": {
+ "description": "Followed account's bio",
+ "type": "string"
+ },
+ "did": {
+ "description": "Decentralized identifier",
+ "type": "string"
+ },
+ "displayName": {
+ "description": "Followed account's display name",
+ "type": "string"
+ },
+ "followers": {
+ "description": "Followed account's follower count",
+ "type": "number"
+ },
+ "following": {
+ "description": "Followed account's following count",
+ "type": "number"
+ },
+ "handle": {
+ "description": "Followed account's handle",
+ "type": "string"
+ },
+ "posts": {
+ "description": "Followed account's post count",
+ "type": "number"
+ }
+ },
+ "required": [
+ "did",
+ "handle",
+ "displayName",
+ "description",
+ "followers",
+ "following",
+ "posts"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "follows"
+ ],
+ "type": "object"
+}