changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "accounts": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "followers": {
+ "type": "string"
+ },
+ "following": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "inbox": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "outbox": {
+ "type": "string"
+ },
+ "preferredUsername": {
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "hashtags": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "statuses": {
+ "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"
+ }
+ },
+ "type": "object"
+}