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