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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/7dXMlzOTEVQ",
"published": "2024-12-04T18:59:35Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/jl4xJp83Jmw",
"published": "2024-12-04T18:59:35Z",
"summary": "<b>bold</b>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtgrtk2s8k0032",
"uri": "http://pasture-one-actor/actor/jl4xJp83Jmw",
"url": "http://pasture-one-actor/actor/jl4xJp83Jmw",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 85,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:35.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<b>bold</b>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/LPxK9KyoGe0",
"published": "2024-12-04T18:59:36Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/KFvkzxn5fVQ",
"published": "2024-12-04T18:59:36Z",
"summary": "<strong>strong</strong>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtgslc2s8k0033",
"uri": "http://pasture-one-actor/actor/KFvkzxn5fVQ",
"url": "http://pasture-one-actor/actor/KFvkzxn5fVQ",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 86,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:36.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<strong>strong</strong>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/Nu7t117WDyU",
"published": "2024-12-04T18:59:37Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/83Hy42SDz68",
"published": "2024-12-04T18:59:37Z",
"summary": "<i>italic</i>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtgtd42s8k0034",
"uri": "http://pasture-one-actor/actor/83Hy42SDz68",
"url": "http://pasture-one-actor/actor/83Hy42SDz68",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 87,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:37.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<i>italic</i>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/72HWqnDmEhA",
"published": "2024-12-04T18:59:37Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/7TsvxYuqTX4",
"published": "2024-12-04T18:59:37Z",
"summary": "<i>italic with.</i> See <a href=\"https://codeberg.org/helge/funfedidev/issues/142\">Issue 142</a>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtgtd42s8k0035",
"uri": "http://pasture-one-actor/actor/7TsvxYuqTX4",
"url": "http://pasture-one-actor/actor/7TsvxYuqTX4",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 88,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:37.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<i>italic with.</i> See <a href=\"https://codeberg.org/helge/funfedidev/issues/142\">Issue 142</a>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/Ujl4vsoBJQw",
"published": "2024-12-04T18:59:38Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/CqMUenpBBQs",
"published": "2024-12-04T18:59:38Z",
"summary": "<em>emphasis</em>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtgu4w2s8k0036",
"uri": "http://pasture-one-actor/actor/CqMUenpBBQs",
"url": "http://pasture-one-actor/actor/CqMUenpBBQs",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 89,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:38.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<em>emphasis</em>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/a_R-Vpnyj98",
"published": "2024-12-04T18:59:39Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/kRv8L_YJRsU",
"published": "2024-12-04T18:59:39Z",
"summary": "<del>old</del><ins>new</ins>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtguwo2s8k0037",
"uri": "http://pasture-one-actor/actor/kRv8L_YJRsU",
"url": "http://pasture-one-actor/actor/kRv8L_YJRsU",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 90,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:39.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<del>old</del><ins>new</ins>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/P9JXRohGL00",
"published": "2024-12-04T18:59:40Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/xWnHfa7RPc0",
"published": "2024-12-04T18:59:40Z",
"summary": "<s>stricken</s>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtgvog2s8k0038",
"uri": "http://pasture-one-actor/actor/xWnHfa7RPc0",
"url": "http://pasture-one-actor/actor/xWnHfa7RPc0",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 91,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:40.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<s>stricken</s>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/QGGOSlf1Qe8",
"published": "2024-12-04T18:59:40Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/xneAkYn965o",
"published": "2024-12-04T18:59:40Z",
"summary": "<mark>mark</mark>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtgvog2s8k0039",
"uri": "http://pasture-one-actor/actor/xneAkYn965o",
"url": "http://pasture-one-actor/actor/xneAkYn965o",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 92,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:40.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<mark>mark</mark>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/KSetVu5m0p4",
"published": "2024-12-04T18:59:41Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/HM8YntqlWrE",
"published": "2024-12-04T18:59:41Z",
"summary": "find <var>x</var> (a variable)",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtgwg82s8k003a",
"uri": "http://pasture-one-actor/actor/HM8YntqlWrE",
"url": "http://pasture-one-actor/actor/HM8YntqlWrE",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 93,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:41.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "find <var>x</var> (a variable)",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/G-7LmGee8GY",
"published": "2024-12-04T18:59:42Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/MBeAz0MrI8o",
"published": "2024-12-04T18:59:42Z",
"summary": "<ol><li>ordered</li></ol>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtgx802s8k003b",
"uri": "http://pasture-one-actor/actor/MBeAz0MrI8o",
"url": "http://pasture-one-actor/actor/MBeAz0MrI8o",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 94,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:42.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<ol><li>ordered</li></ol>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/pYF7tFKvGNQ",
"published": "2024-12-04T18:59:43Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/qVNQE4zBa-Y",
"published": "2024-12-04T18:59:43Z",
"summary": "<ul><li>unordered</li></ul>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtgxzs2s8k003c",
"uri": "http://pasture-one-actor/actor/qVNQE4zBa-Y",
"url": "http://pasture-one-actor/actor/qVNQE4zBa-Y",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 95,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:43.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<ul><li>unordered</li></ul>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/yZscDv0YL5o",
"published": "2024-12-04T18:59:44Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/0mz_GcSaYSA",
"published": "2024-12-04T18:59:44Z",
"summary": "<h1>h1</h1>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtgyrk2s8k003d",
"uri": "http://pasture-one-actor/actor/0mz_GcSaYSA",
"url": "http://pasture-one-actor/actor/0mz_GcSaYSA",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 96,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:44.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<h1>h1</h1>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/4qibQoV71mI",
"published": "2024-12-04T18:59:44Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/gYJKTeOubf4",
"published": "2024-12-04T18:59:44Z",
"summary": "<h2>h2</h2>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtgyrk2s8k003e",
"uri": "http://pasture-one-actor/actor/gYJKTeOubf4",
"url": "http://pasture-one-actor/actor/gYJKTeOubf4",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 97,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:44.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<h2>h2</h2>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/pUhvK9ipfgY",
"published": "2024-12-04T18:59:45Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/cyCv5CC91OU",
"published": "2024-12-04T18:59:45Z",
"summary": "<h3>h3</h3>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dtgzjc2s8k003f",
"uri": "http://pasture-one-actor/actor/cyCv5CC91OU",
"url": "http://pasture-one-actor/actor/cyCv5CC91OU",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 98,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:45.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<h3>h3</h3>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/eKCuS8SEh74",
"published": "2024-12-04T18:59:46Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/6L-blI0PAvA",
"published": "2024-12-04T18:59:46Z",
"summary": "<h4>h4</h4>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth0b42s8k003g",
"uri": "http://pasture-one-actor/actor/6L-blI0PAvA",
"url": "http://pasture-one-actor/actor/6L-blI0PAvA",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 99,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:46.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<h4>h4</h4>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/Q9qeCsSkzQI",
"published": "2024-12-04T18:59:47Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/ah2S2OD43XU",
"published": "2024-12-04T18:59:47Z",
"summary": "<h5>h5</h5>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth12w2s8k003h",
"uri": "http://pasture-one-actor/actor/ah2S2OD43XU",
"url": "http://pasture-one-actor/actor/ah2S2OD43XU",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 100,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:47.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<h5>h5</h5>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/thg7dfF-pFg",
"published": "2024-12-04T18:59:48Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/lnzO6v9Cmsw",
"published": "2024-12-04T18:59:48Z",
"summary": "<h1>h1</h1><h2>h2</h2>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth1uo2s8k003i",
"uri": "http://pasture-one-actor/actor/lnzO6v9Cmsw",
"url": "http://pasture-one-actor/actor/lnzO6v9Cmsw",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 101,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:48.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<h1>h1</h1><h2>h2</h2>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/tXbUWiPsZdo",
"published": "2024-12-04T18:59:48Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/HnoKsxFs4vw",
"published": "2024-12-04T18:59:48Z",
"summary": "<code>code</code>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth1uo2s8k003j",
"uri": "http://pasture-one-actor/actor/HnoKsxFs4vw",
"url": "http://pasture-one-actor/actor/HnoKsxFs4vw",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 102,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:48.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<code>code</code>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/uHfzg2VaWzw",
"published": "2024-12-04T18:59:49Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/i_IGOtfeOxI",
"published": "2024-12-04T18:59:49Z",
"summary": "<pre>pre</pre>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth2mg2s8k003k",
"uri": "http://pasture-one-actor/actor/i_IGOtfeOxI",
"url": "http://pasture-one-actor/actor/i_IGOtfeOxI",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 103,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:49.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<pre>pre</pre>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/YfIcnHCfPww",
"published": "2024-12-04T18:59:50Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/6mPE2iDdTbQ",
"published": "2024-12-04T18:59:50Z",
"summary": "line<br/>break",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth3e82s8k003l",
"uri": "http://pasture-one-actor/actor/6mPE2iDdTbQ",
"url": "http://pasture-one-actor/actor/6mPE2iDdTbQ",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 104,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:50.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "line<br/>break",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/H3dI87hjvtY",
"published": "2024-12-04T18:59:51Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/x4oba3X6lhM",
"published": "2024-12-04T18:59:51Z",
"summary": "<p>paragraph</p>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth4602s8k003m",
"uri": "http://pasture-one-actor/actor/x4oba3X6lhM",
"url": "http://pasture-one-actor/actor/x4oba3X6lhM",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 105,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:51.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<p>paragraph</p>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/WDDJZTO2xM8",
"published": "2024-12-04T18:59:51Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/4INuKhfZxrI",
"published": "2024-12-04T18:59:51Z",
"summary": "<small>small</small>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth4602s8k003n",
"uri": "http://pasture-one-actor/actor/4INuKhfZxrI",
"url": "http://pasture-one-actor/actor/4INuKhfZxrI",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 106,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:51.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<small>small</small>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/naD2FMdPpIA",
"published": "2024-12-04T18:59:52Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/JztAzmEcu6A",
"published": "2024-12-04T18:59:52Z",
"summary": "<sup>sup</sup>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth4xs2s8k003o",
"uri": "http://pasture-one-actor/actor/JztAzmEcu6A",
"url": "http://pasture-one-actor/actor/JztAzmEcu6A",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 107,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:52.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<sup>sup</sup>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/4SPxzV-5Gyw",
"published": "2024-12-04T18:59:53Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/Hy5qF6bjtcs",
"published": "2024-12-04T18:59:53Z",
"summary": "<sub>sub</sub>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth5pk2s8k003p",
"uri": "http://pasture-one-actor/actor/Hy5qF6bjtcs",
"url": "http://pasture-one-actor/actor/Hy5qF6bjtcs",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 108,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:53.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<sub>sub</sub>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/l5hI5tq9A1M",
"published": "2024-12-04T18:59:54Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/x6Qur4m0LNA",
"published": "2024-12-04T18:59:54Z",
"summary": "<a href='https://funfedi.dev'>funfedi</a>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth6hc2s8k003q",
"uri": "http://pasture-one-actor/actor/x6Qur4m0LNA",
"url": "http://pasture-one-actor/actor/x6Qur4m0LNA",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 109,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:54.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<a href='https://funfedi.dev'>funfedi</a>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/koj1Vzx1yE0",
"published": "2024-12-04T18:59:55Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/wvLqW4lVsiI",
"published": "2024-12-04T18:59:55Z",
"summary": "<script>alert('hi');</script>",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth7942s8k003r",
"uri": "http://pasture-one-actor/actor/wvLqW4lVsiI",
"url": "http://pasture-one-actor/actor/wvLqW4lVsiI",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 110,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:55.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<script>alert('hi');</script>",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/ijeJp0ldsc8",
"published": "2024-12-04T18:59:55Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/fUdzIJ3AVuY",
"published": "2024-12-04T18:59:55Z",
"summary": "<img src=\"http://pasture-one-actor/assets/nlnet.png\" alt=\"NLNET Logo\" />",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth7942s8k003s",
"uri": "http://pasture-one-actor/actor/fUdzIJ3AVuY",
"url": "http://pasture-one-actor/actor/fUdzIJ3AVuY",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 111,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:55.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "<img src=\"http://pasture-one-actor/assets/nlnet.png\" alt=\"NLNET Logo\" />",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/cazO18JKbp0",
"published": "2024-12-04T18:59:56Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://sharkey/users/a1dt71ulqgq90001"
],
"id": "http://pasture-one-actor/actor/BNhc3mr6_u4",
"published": "2024-12-04T18:59:56Z",
"summary": "wbr: Fernstra\u00dfen<wbr />bau<wbr />privat<wbr />finanzierungs<wbr />gesetz",
"content": "See summary"
}
}
sharkey
{
"id": "a1dth80w2s8k003t",
"uri": "http://pasture-one-actor/actor/BNhc3mr6_u4",
"url": "http://pasture-one-actor/actor/BNhc3mr6_u4",
"account": {
"id": "a1dt8ksn2s8k0002",
"username": "actor",
"acct": "actor@pasture-one-actor",
"fqn": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"created_at": "2024-12-04T18:53:12.647Z",
"followers_count": 0,
"following_count": 0,
"statuses_count": 112,
"note": "",
"url": "http://pasture-one-actor/actor",
"uri": "http://pasture-one-actor/actor",
"avatar": "https://dev.joinsharkey.org/static-assets/avatar.png",
"avatar_static": "https://dev.joinsharkey.org/static-assets/avatar.png",
"header": "https://dev.joinsharkey.org/static-assets/transparent.png",
"header_static": "https://dev.joinsharkey.org/static-assets/transparent.png",
"emojis": [],
"moved": null,
"fields": [],
"bot": false,
"discoverable": true
},
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"content": "<p><span>See summary</span></p>",
"content_type": "text/x.misskeymarkdown",
"text": "See summary",
"created_at": "2024-12-04T18:59:56.000Z",
"emojis": [],
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"reblogged": false,
"favourited": false,
"muted": false,
"sensitive": false,
"spoiler_text": "wbr: Fernstra\u00dfen<wbr />bau<wbr />privat<wbr />finanzierungs<wbr />gesetz",
"visibility": "public",
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"poll": null,
"application": null,
"language": null,
"pinned": false,
"reactions": [],
"emoji_reactions": [],
"bookmarked": false,
"quote": null,
"edited_at": null
}
Example 29¶
no result
no result
Example 30¶
no result
no result