HTML tags in summary¶
Here we analyze, which types of HTML tags are allowed inside the summary field.
As the content field, the [summary field(https://www.w3.org/TR/activitystreams-vocabulary/#dfn-summary) is described as
A natural language summarization of the object encoded as HTML.
This is a somewhat petulant table as most Fediverse applications treat the summary field as a plain text content warning.
Sanitizing fields is desired behavior as seen in Section B.10 of ActivityPub.
Examples¶
Example 1¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/6KJACmaRlPA",
"published": "2025-01-08T14:00:19Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/OeTv1LJtbpc",
"published": "2025-01-08T14:00:19Z",
"summary": "<b>bold</b>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/OeTv1LJtbpc",
"conversation_id": 30348560,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<b>bold</b>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/OeTv1LJtbpc",
"spoiler_text": "<b>bold</b>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGb1xqXQYsl19Wfg",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/OeTv1LJtbpc",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 127,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:19.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 2¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/-mn-tTfwrKE",
"published": "2025-01-08T14:00:19Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/m8gIeHfTD5M",
"published": "2025-01-08T14:00:19Z",
"summary": "<strong>strong</strong>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/m8gIeHfTD5M",
"conversation_id": 1570045292,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<strong>strong</strong>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/m8gIeHfTD5M",
"spoiler_text": "<strong>strong</strong>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGb5zPZYBrF1upfM",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/m8gIeHfTD5M",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 128,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:19.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 3¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/du5Rlsf8MbM",
"published": "2025-01-08T14:00:20Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/W8rtkYD_I-c",
"published": "2025-01-08T14:00:20Z",
"summary": "<i>italic</i>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/W8rtkYD_I-c",
"conversation_id": 1299118245,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<i>italic</i>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/W8rtkYD_I-c",
"spoiler_text": "<i>italic</i>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGb9yUktplbLW9nE",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/W8rtkYD_I-c",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 129,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:20.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 4¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/UytaOHCx_fM",
"published": "2025-01-08T14:00:21Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/H84DQ8GohYQ",
"published": "2025-01-08T14:00:21Z",
"summary": "<i>italic with.</i> See <a href=\"https://codeberg.org/helge/funfedidev/issues/142\">Issue 142</a>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/H84DQ8GohYQ",
"conversation_id": 438207599,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<i>italic with.</i> See <a href=\"https://codeberg.org/helge/funfedidev/issues/142\">Issue 142</a>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/H84DQ8GohYQ",
"spoiler_text": "<i>italic with.</i> See <a href=\"https://codeberg.org/helge/funfedidev/issues/142\">Issue 142</a>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGbEEEwInynKumtE",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/H84DQ8GohYQ",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 130,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:21.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 5¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/0o1VoD6EKK0",
"published": "2025-01-08T14:00:22Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/K7VPoJ-6G9I",
"published": "2025-01-08T14:00:22Z",
"summary": "<em>emphasis</em>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/K7VPoJ-6G9I",
"conversation_id": 1713537085,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<em>emphasis</em>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/K7VPoJ-6G9I",
"spoiler_text": "<em>emphasis</em>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGbIjaBiFklhbsIa",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/K7VPoJ-6G9I",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 131,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:22.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 6¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/O3aXIShZLyk",
"published": "2025-01-08T14:00:22Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/-uhap2MyHwk",
"published": "2025-01-08T14:00:22Z",
"summary": "<del>old</del><ins>new</ins>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/-uhap2MyHwk",
"conversation_id": 2013035399,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<del>old</del><ins>new</ins>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/-uhap2MyHwk",
"spoiler_text": "<del>old</del><ins>new</ins>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGbMv4cvozkV16lU",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/-uhap2MyHwk",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 132,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:22.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 7¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/NpZpDr36BTc",
"published": "2025-01-08T14:00:23Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/1YE8YALGoHA",
"published": "2025-01-08T14:00:23Z",
"summary": "<s>stricken</s>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/1YE8YALGoHA",
"conversation_id": 2076595521,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<s>stricken</s>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/1YE8YALGoHA",
"spoiler_text": "<s>stricken</s>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGbRA6qyE2uI5Aky",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/1YE8YALGoHA",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 133,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:23.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 8¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/Ao89TD-TnrY",
"published": "2025-01-08T14:00:24Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/LGfNgxoJNzU",
"published": "2025-01-08T14:00:24Z",
"summary": "<mark>mark</mark>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/LGfNgxoJNzU",
"conversation_id": 1196651559,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<mark>mark</mark>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/LGfNgxoJNzU",
"spoiler_text": "<mark>mark</mark>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGbVLFJVVhrzK7fc",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/LGfNgxoJNzU",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 134,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:24.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 9¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/0TQG6LREwCk",
"published": "2025-01-08T14:00:24Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/Cx45ucrUxjY",
"published": "2025-01-08T14:00:24Z",
"summary": "find <var>x</var> (a variable)",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/Cx45ucrUxjY",
"conversation_id": 168104319,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "find <var>x</var> (a variable)"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/Cx45ucrUxjY",
"spoiler_text": "find <var>x</var> (a variable)",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGbZh18VInMfXZA0",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/Cx45ucrUxjY",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 135,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:24.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 10¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/FITyWtloMPE",
"published": "2025-01-08T14:00:25Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/fJd-f2k5mKM",
"published": "2025-01-08T14:00:25Z",
"summary": "<ol><li>ordered</li></ol>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/fJd-f2k5mKM",
"conversation_id": 123663603,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<ol><li>ordered</li></ol>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/fJd-f2k5mKM",
"spoiler_text": "<ol><li>ordered</li></ol>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGbdrRdg1IIARwy8",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/fJd-f2k5mKM",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 136,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:25.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 11¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/EDDEZwcdAnI",
"published": "2025-01-08T14:00:26Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/HbMlJjI_DGA",
"published": "2025-01-08T14:00:26Z",
"summary": "<ul><li>unordered</li></ul>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/HbMlJjI_DGA",
"conversation_id": 1369319860,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<ul><li>unordered</li></ul>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/HbMlJjI_DGA",
"spoiler_text": "<ul><li>unordered</li></ul>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGbiDvQ2NXp2zxZ2",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/HbMlJjI_DGA",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 137,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:26.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 12¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/CXCVf1ETHWQ",
"published": "2025-01-08T14:00:27Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/tkEk94jYjcc",
"published": "2025-01-08T14:00:27Z",
"summary": "<h1>h1</h1>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/tkEk94jYjcc",
"conversation_id": 1622348341,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<h1>h1</h1>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/tkEk94jYjcc",
"spoiler_text": "<h1>h1</h1>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGbmRXjLeGuROtLU",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/tkEk94jYjcc",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 138,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:27.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 13¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/adabH8dmO2E",
"published": "2025-01-08T14:00:27Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/LmTh6tV87fw",
"published": "2025-01-08T14:00:27Z",
"summary": "<h2>h2</h2>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/LmTh6tV87fw",
"conversation_id": 1470282565,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<h2>h2</h2>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/LmTh6tV87fw",
"spoiler_text": "<h2>h2</h2>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGbqdk7vmfvR8guu",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/LmTh6tV87fw",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 139,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:27.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 14¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/PYunMpMQf08",
"published": "2025-01-08T14:00:28Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/xERxkAdgqz4",
"published": "2025-01-08T14:00:28Z",
"summary": "<h3>h3</h3>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/xERxkAdgqz4",
"conversation_id": 1068883488,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<h3>h3</h3>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/xERxkAdgqz4",
"spoiler_text": "<h3>h3</h3>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGbuosaT4Kt8NdpY",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/xERxkAdgqz4",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 140,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:28.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 15¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/oaVFyc-8Oy8",
"published": "2025-01-08T14:00:29Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/FB0t0i7kkbo",
"published": "2025-01-08T14:00:29Z",
"summary": "<h4>h4</h4>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/FB0t0i7kkbo",
"conversation_id": 303308568,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<h4>h4</h4>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/FB0t0i7kkbo",
"spoiler_text": "<h4>h4</h4>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGbyyb8HDfmQxSXA",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/FB0t0i7kkbo",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 141,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:29.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 16¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/8Xrqp3fiR0o",
"published": "2025-01-08T14:00:30Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/QtoxfM-ZJto",
"published": "2025-01-08T14:00:30Z",
"summary": "<h5>h5</h5>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/QtoxfM-ZJto",
"conversation_id": 295220621,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<h5>h5</h5>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/QtoxfM-ZJto",
"spoiler_text": "<h5>h5</h5>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGc343vty2SXXsbg",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/QtoxfM-ZJto",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 142,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:30.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 17¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/3yhww7oDJow",
"published": "2025-01-08T14:00:30Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/1K6iES_uaEE",
"published": "2025-01-08T14:00:30Z",
"summary": "<h1>h1</h1><h2>h2</h2>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/1K6iES_uaEE",
"conversation_id": 593500112,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<h1>h1</h1><h2>h2</h2>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/1K6iES_uaEE",
"spoiler_text": "<h1>h1</h1><h2>h2</h2>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGc7SfaM1m615aW8",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/1K6iES_uaEE",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 143,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:30.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 18¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/3HJcrVai7dw",
"published": "2025-01-08T14:00:31Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/_LT_3KBK-6Q",
"published": "2025-01-08T14:00:31Z",
"summary": "<code>code</code>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/_LT_3KBK-6Q",
"conversation_id": 2111336933,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<code>code</code>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/_LT_3KBK-6Q",
"spoiler_text": "<code>code</code>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGcBSSj4EqUX1TkW",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/_LT_3KBK-6Q",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 144,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:31.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 19¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/8pu4xJN7IkM",
"published": "2025-01-08T14:00:32Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/q19xrdZfrdQ",
"published": "2025-01-08T14:00:32Z",
"summary": "<pre>pre</pre>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/q19xrdZfrdQ",
"conversation_id": 221897333,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<pre>pre</pre>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/q19xrdZfrdQ",
"spoiler_text": "<pre>pre</pre>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGcFeJ8y5fUQazlg",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/q19xrdZfrdQ",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 145,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:32.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 20¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/4rcRn22SBw8",
"published": "2025-01-08T14:00:33Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/IS9tqueTalg",
"published": "2025-01-08T14:00:33Z",
"summary": "line<br/>break",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/IS9tqueTalg",
"conversation_id": 69164872,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "line<br/>break"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/IS9tqueTalg",
"spoiler_text": "line<br/>break",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGcJv7GPucjiUTWS",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/IS9tqueTalg",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 146,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:33.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 21¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/hZKgTQagL_g",
"published": "2025-01-08T14:00:33Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/-2TqL-_zrqs",
"published": "2025-01-08T14:00:33Z",
"summary": "<p>paragraph</p>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/-2TqL-_zrqs",
"conversation_id": 1178086977,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<p>paragraph</p>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/-2TqL-_zrqs",
"spoiler_text": "<p>paragraph</p>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGcOMCldxQUtCAIi",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/-2TqL-_zrqs",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 147,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:33.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 22¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/Dsj1WMUB8s4",
"published": "2025-01-08T14:00:34Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/2VFa5WFXNgE",
"published": "2025-01-08T14:00:34Z",
"summary": "<small>small</small>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/2VFa5WFXNgE",
"conversation_id": 392623161,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<small>small</small>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/2VFa5WFXNgE",
"spoiler_text": "<small>small</small>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGcSMLt2S4uVIL5M",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/2VFa5WFXNgE",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 148,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:34.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 23¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/edujQXadNVE",
"published": "2025-01-08T14:00:35Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/oZtSIk_XyRc",
"published": "2025-01-08T14:00:35Z",
"summary": "<sup>sup</sup>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/oZtSIk_XyRc",
"conversation_id": 499582180,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<sup>sup</sup>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/oZtSIk_XyRc",
"spoiler_text": "<sup>sup</sup>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGcWdVzAYcAtM6OO",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/oZtSIk_XyRc",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 149,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:35.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 24¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/mzU6aXQ7hwU",
"published": "2025-01-08T14:00:36Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/F5zaOSFLBuc",
"published": "2025-01-08T14:00:36Z",
"summary": "<sub>sub</sub>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/F5zaOSFLBuc",
"conversation_id": 72964108,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<sub>sub</sub>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/F5zaOSFLBuc",
"spoiler_text": "<sub>sub</sub>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGcax9w4eDYyZqZE",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/F5zaOSFLBuc",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 150,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:36.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 25¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/YLPO-Pla5SY",
"published": "2025-01-08T14:00:36Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/LSWWMnzQUZ4",
"published": "2025-01-08T14:00:36Z",
"summary": "<a href='https://funfedi.dev'>funfedi</a>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/LSWWMnzQUZ4",
"conversation_id": 498130401,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<a href='https://funfedi.dev'>funfedi</a>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/LSWWMnzQUZ4",
"spoiler_text": "<a href='https://funfedi.dev'>funfedi</a>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGcfBUCkU6gZJLSC",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/LSWWMnzQUZ4",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 151,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:36.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 26¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/U5kHR8Ds_l8",
"published": "2025-01-08T14:00:37Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/tSGHUPIcCUA",
"published": "2025-01-08T14:00:37Z",
"summary": "<script>alert('hi');</script>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/tSGHUPIcCUA",
"conversation_id": 1878791928,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<script>alert('hi');</script>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/tSGHUPIcCUA",
"spoiler_text": "<script>alert('hi');</script>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGcjUQCI0Y2SCWWW",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/tSGHUPIcCUA",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 152,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:37.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 27¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/-gxwnXhpbi4",
"published": "2025-01-08T14:00:38Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/zciGOpzYmMA",
"published": "2025-01-08T14:00:38Z",
"summary": "<img src=\"http://pasture-one-actor/assets/nlnet.png\" alt=\"NLNET Logo\" />",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/zciGOpzYmMA",
"conversation_id": 1270291405,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "<img src=\"http://pasture-one-actor/assets/nlnet.png\" alt=\"NLNET Logo\" />"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/zciGOpzYmMA",
"spoiler_text": "<img src=\"http://pasture-one-actor/assets/nlnet.png\" alt=\"NLNET Logo\" />",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGcnZX1ETKhScf2m",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/zciGOpzYmMA",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 153,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:38.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 28¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/6w4SD07EM94",
"published": "2025-01-08T14:00:39Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/xjp2WopM4es",
"published": "2025-01-08T14:00:39Z",
"summary": "wbr: Fernstra\u00dfen<wbr />bau<wbr />privat<wbr />finanzierungs<wbr />gesetz",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/xjp2WopM4es",
"conversation_id": 1317057155,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "wbr: Fernstra\u00dfen<wbr />bau<wbr />privat<wbr />finanzierungs<wbr />gesetz"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/xjp2WopM4es",
"spoiler_text": "wbr: Fernstra\u00dfen<wbr />bau<wbr />privat<wbr />finanzierungs<wbr />gesetz",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGcrm5OUtJjYWkAS",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/xjp2WopM4es",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 154,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:39.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 29¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/VnxGG2Lmj_I",
"published": "2025-01-08T14:00:39Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/1uTPuJrhgdY",
"published": "2025-01-08T14:00:39Z",
"summary": "Audio <audio controls src=\"http://pasture-one-actor/assets/cow_moo.mp3\"></audio>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/1uTPuJrhgdY",
"conversation_id": 919004103,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "Audio <audio controls src=\"http://pasture-one-actor/assets/cow_moo.mp3\"></audio>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/1uTPuJrhgdY",
"spoiler_text": "Audio <audio controls src=\"http://pasture-one-actor/assets/cow_moo.mp3\"></audio>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGcwC6xg5NRQjaHw",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/1uTPuJrhgdY",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 155,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:39.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}
Example 30¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://akkoma/users/witch",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/nYQ8X3Huluw",
"published": "2025-01-08T14:00:40Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://akkoma/users/witch"
],
"id": "http://pasture-one-actor/actor/l3xojyU0m60",
"published": "2025-01-08T14:00:40Z",
"summary": "Video <video controls width=\"250\">\n <source src=\"http://pasture-one-actor/assets/cow_eating.mp4\" type=\"video/mp4\" />\n Video of a cow eating</video>",
"content": "See summary"
}
}
akkoma
{
"in_reply_to_id": null,
"pleroma": {
"content": {
"text/plain": "See summary"
},
"context": "http://pasture-one-actor/actor/l3xojyU0m60",
"conversation_id": 1899240164,
"direct_conversation_id": null,
"emoji_reactions": [],
"expires_at": null,
"in_reply_to_account_acct": null,
"local": false,
"parent_visible": false,
"pinned_at": null,
"spoiler_text": {
"text/plain": "Video <video controls width=\"250\">\n <source src=\"http://pasture-one-actor/assets/cow_eating.mp4\" type=\"video/mp4\" />\n Video of a cow eating</video>"
},
"thread_muted": false
},
"uri": "http://pasture-one-actor/actor/l3xojyU0m60",
"spoiler_text": "Video <video controls width=\"250\">\n <source src=\"http://pasture-one-actor/assets/cow_eating.mp4\" type=\"video/mp4\" />\n Video of a cow eating</video>",
"emojis": [],
"quote": null,
"visibility": "public",
"muted": false,
"id": "ApsGd0KPal6OGKeGmW",
"favourited": false,
"poll": null,
"favourites_count": 0,
"media_attachments": [],
"reblogged": false,
"url": "http://pasture-one-actor/actor/l3xojyU0m60",
"bookmarked": false,
"content": "See summary",
"edited_at": null,
"account": {
"acct": "actor@pasture-one-actor",
"akkoma": {
"instance": {
"favicon": null,
"name": "pasture-one-actor",
"nodeinfo": {}
},
"permit_followback": false,
"status_ttl_days": null
},
"avatar": "http://akkoma/images/avi.png",
"avatar_static": "http://akkoma/images/avi.png",
"bot": false,
"created_at": "2025-01-08T13:55:48.000Z",
"display_name": "Test Actor",
"emojis": [],
"fields": [],
"followers_count": 0,
"following_count": 0,
"fqn": "actor@pasture-one-actor",
"header": "http://akkoma/images/banner.png",
"header_static": "http://akkoma/images/banner.png",
"id": "ApsGC0zJ219UUOuI76",
"last_status_at": "2025-01-08",
"locked": false,
"note": "",
"pleroma": {
"also_known_as": [],
"ap_id": "http://pasture-one-actor/actor",
"background_image": null,
"favicon": null,
"hide_favorites": true,
"hide_followers": false,
"hide_followers_count": false,
"hide_follows": false,
"hide_follows_count": false,
"is_admin": false,
"is_confirmed": true,
"is_moderator": false,
"is_suggested": false,
"relationship": {},
"skip_thread_containment": false,
"tags": []
},
"source": {
"fields": [],
"note": "",
"pleroma": {
"actor_type": "Person",
"discoverable": false
},
"sensitive": false
},
"statuses_count": 156,
"url": "http://pasture-one-actor/actor",
"username": "actor"
},
"emoji_reactions": [],
"mentions": [
{
"acct": "witch",
"id": "ApsG1rzZWhrk7k57fU",
"url": "http://akkoma/users/witch",
"username": "witch"
}
],
"in_reply_to_account_id": null,
"created_at": "2025-01-08T14:00:40.000Z",
"akkoma": {
"source": null
},
"quote_id": null,
"text": null,
"application": null,
"sensitive": false,
"card": null,
"language": null,
"reblog": null,
"reblogs_count": 0,
"pinned": false,
"replies_count": 0,
"tags": []
}