changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "cursor": {
+ "description": "Pagination cursor for the next page; absent when no more pages.",
+ "type": "string"
+ },
+ "items": {
+ "description": "Paginated list of member entries.",
+ "items": {
+ "properties": {
+ "subject": {
+ "description": "Profile of the list member.",
+ "properties": {
+ "avatar": {
+ "description": "Optional avatar image URL.",
+ "type": "string"
+ },
+ "did": {
+ "description": "DID of the member.",
+ "type": "string"
+ },
+ "displayName": {
+ "description": "Optional display name.",
+ "type": "string"
+ },
+ "handle": {
+ "description": "Handle of the member.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "did",
+ "handle"
+ ],
+ "type": "object"
+ },
+ "uri": {
+ "description": "AT-URI of the listitem record.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "uri",
+ "subject"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "list": {
+ "description": "Metadata about the list.",
+ "properties": {
+ "creator": {
+ "description": "Profile of the list creator.",
+ "properties": {
+ "did": {
+ "description": "DID of the creator.",
+ "type": "string"
+ },
+ "displayName": {
+ "description": "Optional display name of the creator.",
+ "type": "string"
+ },
+ "handle": {
+ "description": "Handle of the creator.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "did",
+ "handle"
+ ],
+ "type": "object"
+ },
+ "description": {
+ "description": "Optional plain-text description.",
+ "type": "string"
+ },
+ "itemCount": {
+ "description": "Total number of members in the list.",
+ "type": "number"
+ },
+ "name": {
+ "description": "Display name of the list.",
+ "type": "string"
+ },
+ "purpose": {
+ "description": "List purpose: \"curatelist\" or \"modlist\".",
+ "type": "string"
+ },
+ "uri": {
+ "description": "AT-URI of the list.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "uri",
+ "name",
+ "purpose",
+ "creator",
+ "itemCount"
+ ],
+ "type": "object"
+ },
+ "success": {
+ "description": "Whether the list was retrieved successfully.",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "success",
+ "list",
+ "items"
+ ],
+ "type": "object"
+}