changedOutput schema / (root)
Previous value: -{
- "properties": {
- "accounts": {
- "description": "Matching Mastodon accounts",
- "items": {
- "properties": {
- "acct": {
- "description": "Full account address",
- "type": "string"
- },
- "avatar": {
- "description": "Avatar image URL",
- "type": "string"
- },
- "bot": {
- "description": "Whether account is a bot",
- "type": "boolean"
- },
- "created_at": {
- "description": "Account creation timestamp",
- "type": "string"
- },
- "display_name": {
- "description": "Display name",
- "type": "string"
- },
- "followers_count": {
- "description": "Number of followers",
- "type": "number"
- },
- "following_count": {
- "description": "Number following",
- "type": "number"
- },
- "id": {
- "description": "Account ID",
- "type": "string"
- },
- "note": {
- "description": "Bio/note text",
- "type": "string"
- },
- "statuses_count": {
- "description": "Number of posts",
- "type": "number"
- },
- "url": {
- "description": "Profile URL",
- "type": "string"
- },
- "username": {
- "description": "Username handle",
- "type": "string"
- }
- },
- "type": "object"
- },
- "type": "array"
- },
- "hashtags": {
- "description": "Matching hashtags",
- "items": {
- "properties": {
- "name": {
- "description": "Hashtag name",
- "type": "string"
- },
- "url": {
- "description": "Hashtag URL",
- "type": "string"
- }
- },
- "type": "object"
- },
- "type": "array"
- },
- "query": {
- "description": "The search query string used",
- "type": "string"
- },
- "statuses": {
- "description": "Matching posts/statuses",
- "items": {
- "properties": {
- "account": {
- "description": "Author account info",
- "properties": {
- "acct": {
- "description": "Full account address",
- "type": "string"
- },
- "display_name": {
- "description": "Display name",
- "type": "string"
- },
- "id": {
- "description": "Account ID",
- "type": "string"
- },
- "username": {
- "description": "Username",
- "type": "string"
- }
- },
- "type": "object"
- },
- "content": {
- "description": "Post content/body",
- "type": "string"
- },
- "created_at": {
- "description": "Post creation timestamp",
- "type": "string"
- },
- "favourites_count": {
- "description": "Number of favorites",
- "type": "number"
- },
- "id": {
- "description": "Status ID",
- "type": "string"
- },
- "language": {
- "description": "Post language code",
- "type": [
- "string",
- "null"
- ]
- },
- "reblogs_count": {
- "description": "Number of reblogs/shares",
- "type": "number"
- },
- "replies_count": {
- "description": "Number of replies",
- "type": "number"
- },
- "sensitive": {
- "description": "Content warning flag",
- "type": "boolean"
- },
- "spoiler_text": {
- "description": "Content warning text",
- "type": [
- "string",
- "null"
- ]
- },
- "tags": {
- "description": "Hashtags in post",
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "url": {
- "description": "Status URL",
- "type": "string"
- },
- "visibility": {
- "description": "Visibility level",
- "type": "string"
- }
- },
- "type": "object"
- },
- "type": "array"
- },
- "type": {
- "description": "Type of results returned: accounts, statuses, or hashtags",
- "type": "string"
- }
- },
- "required": [
- "query",
- "type",
- "accounts",
- "statuses",
- "hashtags"
- ],
- "type": "object"
-}New value: +null