changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "hasMore": {
+ "type": "boolean"
+ },
+ "nextCursor": {
+ "description": "Opaque cursor for the next page, if more results",
+ "type": "string"
+ },
+ "posts": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "author": {
+ "description": "Author handle or display name",
+ "type": "string"
+ },
+ "content": {
+ "description": "Plain-text/summarized post body",
+ "type": "string"
+ },
+ "contentWarning": {
+ "description": "Content warning / summary, if any",
+ "type": "string"
+ },
+ "createdAt": {
+ "description": "ISO timestamp",
+ "type": "string"
+ },
+ "favourites": {
+ "type": "number"
+ },
+ "id": {
+ "description": "Post/status ID",
+ "type": "string"
+ },
+ "reblogs": {
+ "type": "number"
+ },
+ "replies": {
+ "type": "number"
+ },
+ "type": {
+ "description": "ActivityPub object type (Note, Announce, …)",
+ "type": "string"
+ },
+ "url": {
+ "description": "Canonical URL of the post",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "content"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "source": {
+ "description": "Account/actor/instance the posts came from",
+ "type": "string"
+ }
+ },
+ "required": [
+ "posts"
+ ],
+ "type": "object"
+}