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 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.
Objects¶
Object 1¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/HV3yE3venRs",
"published": "2025-11-21T12:04:57Z",
"summary": "<b>bold</b>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 2¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/dWA2b4BytYs",
"published": "2025-11-21T12:04:57Z",
"summary": "<strong>strong</strong>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 3¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/x5TBduplDp8",
"published": "2025-11-21T12:04:57Z",
"summary": "<i>italic</i>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 4¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/5D8ORCoWYm4",
"published": "2025-11-21T12:04:57Z",
"summary": "<i>italic with.</i> See <a href=\"https://codeberg.org/helge/funfedidev/issues/142\">Issue 142</a>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 5¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/vafRA44Hp4g",
"published": "2025-11-21T12:04:57Z",
"summary": "<em>emphasis</em>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 6¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/rTbxmcKPTjY",
"published": "2025-11-21T12:04:57Z",
"summary": "<del>old</del><ins>new</ins>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 7¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/o7UUpc1P8W8",
"published": "2025-11-21T12:04:58Z",
"summary": "<s>stricken</s>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 8¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/Dt16g9YiVPg",
"published": "2025-11-21T12:04:58Z",
"summary": "<mark>mark</mark>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 9¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/ZosxqVDroZY",
"published": "2025-11-21T12:04:58Z",
"summary": "find <var>x</var> (a variable)",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 10¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/Vid5v1XBkH0",
"published": "2025-11-21T12:04:58Z",
"summary": "<ol><li>ordered</li></ol>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 11¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/bx0FPwZ68d0",
"published": "2025-11-21T12:04:58Z",
"summary": "<ul><li>unordered</li></ul>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 12¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/9zL-IfpTN0o",
"published": "2025-11-21T12:04:58Z",
"summary": "<h1>h1</h1>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 13¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/V3NyEesDpgU",
"published": "2025-11-21T12:04:58Z",
"summary": "<h2>h2</h2>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 14¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/qSN_-TWbpUQ",
"published": "2025-11-21T12:04:58Z",
"summary": "<h3>h3</h3>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 15¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/Y2nS0LyFwqA",
"published": "2025-11-21T12:04:58Z",
"summary": "<h4>h4</h4>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 16¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/4kCHu1Dqrck",
"published": "2025-11-21T12:04:58Z",
"summary": "<h5>h5</h5>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 17¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/Cs-gZOZdBYA",
"published": "2025-11-21T12:04:58Z",
"summary": "<h1>h1</h1><h2>h2</h2>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 18¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/J0mgpyaRUao",
"published": "2025-11-21T12:04:58Z",
"summary": "<code>code</code>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 19¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/5jJewhwva_k",
"published": "2025-11-21T12:04:58Z",
"summary": "<pre>pre</pre>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 20¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/mBNSnPqM-bU",
"published": "2025-11-21T12:04:58Z",
"summary": "<blockquote>blockquote</blockquote>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 21¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/wl3YMJ3xHGs",
"published": "2025-11-21T12:04:58Z",
"summary": "line<br/>break",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 22¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/k9f5xA_Xyv0",
"published": "2025-11-21T12:04:58Z",
"summary": "<p>paragraph</p>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 23¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/M1aRJeujRMc",
"published": "2025-11-21T12:04:58Z",
"summary": "<small>small</small>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 24¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/2KyK6dLKE9s",
"published": "2025-11-21T12:04:58Z",
"summary": "<sup>sup</sup>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 25¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/B1Eec23avCE",
"published": "2025-11-21T12:04:58Z",
"summary": "<sub>sub</sub>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 26¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/ueJboAtDqHc",
"published": "2025-11-21T12:04:58Z",
"summary": "<a href='https://funfedi.dev'>funfedi</a>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 27¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/pQ-5gwsLW0c",
"published": "2025-11-21T12:04:58Z",
"summary": "<script>alert('hi');</script>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 28¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/czUXvUFT6bg",
"published": "2025-11-21T12:04:58Z",
"summary": "<img src=\"http://pasture-one-actor/assets/nlnet.png\" alt=\"NLNET Logo\" />",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 29¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/CMq5l7GLZTo",
"published": "2025-11-21T12:04:58Z",
"summary": "wbr: Fernstra\u00dfen<wbr />bau<wbr />privat<wbr />finanzierungs<wbr />gesetz",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 30¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/Q8Fr51R7suA",
"published": "2025-11-21T12:04:58Z",
"summary": "Audio <audio controls src=\"http://pasture-one-actor/assets/cow_moo.mp3\"></audio>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 31¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/G1uKweI2PFo",
"published": "2025-11-21T12:04:58Z",
"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>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 32¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/ZJPC15r-mkw",
"published": "2025-11-21T12:04:58Z",
"summary": "<dl>\n <dt>Beast of Bodmin</dt>\n <dd>A large feline inhabiting Bodmin Moor.</dd>\n</dl>\n",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 33¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/0DiAO6pknUA",
"published": "2025-11-21T12:04:58Z",
"summary": "<details>\n <summary>Details</summary>\n Something small enough to escape casual notice.\n</details>\n",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Object 34¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/GromEW9X68M",
"published": "2025-11-21T12:04:58Z",
"summary": "<table><tr><td>HTML tables</td></tr></table>",
"to": [
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Note"
}
Activities¶
Activity 1¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/275WXybmvLw",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/0KdJum7rTz4",
"published": "2025-11-21T12:04:58Z",
"summary": "<b>bold</b>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 2¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/oEyZSVpDqT0",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/oYMj4htdce0",
"published": "2025-11-21T12:04:58Z",
"summary": "<strong>strong</strong>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 3¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/ugmfe1hb5Zg",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/bntEIvm_khc",
"published": "2025-11-21T12:04:58Z",
"summary": "<i>italic</i>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 4¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/JdL7keOCbwU",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/c4POCivo0ew",
"published": "2025-11-21T12:04:58Z",
"summary": "<i>italic with.</i> See <a href=\"https://codeberg.org/helge/funfedidev/issues/142\">Issue 142</a>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 5¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/B3dS9jopvXQ",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/BNjOYlQY7dU",
"published": "2025-11-21T12:04:58Z",
"summary": "<em>emphasis</em>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 6¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/fnZx8c0DrN8",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/5wy-ypp6tk4",
"published": "2025-11-21T12:04:58Z",
"summary": "<del>old</del><ins>new</ins>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 7¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/tc89oO-VGQU",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/M1HzgwdVO9U",
"published": "2025-11-21T12:04:58Z",
"summary": "<s>stricken</s>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 8¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/fII3BqTqNyo",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/EuqqhgGGSIY",
"published": "2025-11-21T12:04:58Z",
"summary": "<mark>mark</mark>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 9¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/wIW81oe0KWU",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/JXmJ0XnnRWs",
"published": "2025-11-21T12:04:58Z",
"summary": "find <var>x</var> (a variable)",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 10¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/M6DBoRbJWLo",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/BGP4DQ-mUdI",
"published": "2025-11-21T12:04:58Z",
"summary": "<ol><li>ordered</li></ol>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 11¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/qscqOUmit8A",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/h6tBRrPXWoU",
"published": "2025-11-21T12:04:58Z",
"summary": "<ul><li>unordered</li></ul>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 12¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/px7qrbeI6FE",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/EOt6WCTWnPY",
"published": "2025-11-21T12:04:58Z",
"summary": "<h1>h1</h1>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 13¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/N9vkVtfapdg",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/NNa4ZYKWSII",
"published": "2025-11-21T12:04:58Z",
"summary": "<h2>h2</h2>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 14¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/uS4Bo3L-56c",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/EMY4SAB9I3c",
"published": "2025-11-21T12:04:58Z",
"summary": "<h3>h3</h3>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 15¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/o9MEWHsuVWA",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/rUC7c7ONnzw",
"published": "2025-11-21T12:04:58Z",
"summary": "<h4>h4</h4>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 16¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/_YRDC-crRgU",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/v5zIT_qD6o8",
"published": "2025-11-21T12:04:58Z",
"summary": "<h5>h5</h5>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 17¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/hhcAxdZpCqE",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/0MhVqli0Bmc",
"published": "2025-11-21T12:04:58Z",
"summary": "<h1>h1</h1><h2>h2</h2>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 18¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/I-rQQJJ6LlE",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/EGGyZPTMUbI",
"published": "2025-11-21T12:04:58Z",
"summary": "<code>code</code>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 19¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/buWOBB-kA24",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/fjPX7bnkdrI",
"published": "2025-11-21T12:04:58Z",
"summary": "<pre>pre</pre>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 20¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/HWk2hVdu17Q",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/8OmfgqAYs2M",
"published": "2025-11-21T12:04:58Z",
"summary": "<blockquote>blockquote</blockquote>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 21¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/zBrHfSs0ZHM",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/cay5ewb_4jA",
"published": "2025-11-21T12:04:58Z",
"summary": "line<br/>break",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 22¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/s95i9iCsFsE",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/_rtP5fTjRbE",
"published": "2025-11-21T12:04:58Z",
"summary": "<p>paragraph</p>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 23¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/Ua6MRrJWmH0",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/b6ObFgcXinA",
"published": "2025-11-21T12:04:58Z",
"summary": "<small>small</small>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 24¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/-OaKxHrfuBU",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/FhmdRMGjLOI",
"published": "2025-11-21T12:04:58Z",
"summary": "<sup>sup</sup>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 25¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/Grn8R98_75s",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/dN5UjYLDdb4",
"published": "2025-11-21T12:04:58Z",
"summary": "<sub>sub</sub>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 26¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/GPFNLK06K6I",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/-a2C78ojy4w",
"published": "2025-11-21T12:04:58Z",
"summary": "<a href='https://funfedi.dev'>funfedi</a>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 27¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/YyuonoXAVp8",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/JufNqH23oLg",
"published": "2025-11-21T12:04:58Z",
"summary": "<script>alert('hi');</script>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 28¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/AODwSd18ByM",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/XWgFN-4zNRE",
"published": "2025-11-21T12:04:58Z",
"summary": "<img src=\"http://pasture-one-actor/assets/nlnet.png\" alt=\"NLNET Logo\" />",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 29¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/tOsP9y5oNZs",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/EVLf-0oHU1k",
"published": "2025-11-21T12:04:58Z",
"summary": "wbr: Fernstra\u00dfen<wbr />bau<wbr />privat<wbr />finanzierungs<wbr />gesetz",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 30¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/w06EK7NMc8U",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/UuXnZf7tpkU",
"published": "2025-11-21T12:04:58Z",
"summary": "Audio <audio controls src=\"http://pasture-one-actor/assets/cow_moo.mp3\"></audio>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 31¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/SP8mfyIchNo",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/_T1dNhDcIsA",
"published": "2025-11-21T12:04:58Z",
"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>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 32¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/N3Ucmz4Xo6I",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/20UhWVqx-CI",
"published": "2025-11-21T12:04:58Z",
"summary": "<dl>\n <dt>Beast of Bodmin</dt>\n <dd>A large feline inhabiting Bodmin Moor.</dd>\n</dl>\n",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 33¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/M_pG8ecqYnw",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/fKQ6SsnQHfs",
"published": "2025-11-21T12:04:58Z",
"summary": "<details>\n <summary>Details</summary>\n Something small enough to escape casual notice.\n</details>\n",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}
Activity 34¶
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"actor": "http://actor.example",
"id": "http://actor.example/activity/nhy-cl3bA54",
"object": {
"attributedTo": "http://actor.example",
"content": "See summary",
"id": "http://actor.example/object/AuBUQLqClCI",
"published": "2025-11-21T12:04:58Z",
"summary": "<table><tr><td>HTML tables</td></tr></table>",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://remote.example/"
],
"type": "Note"
},
"published": "2025-11-21T12:04:58Z",
"to": [
"http://remote.example/",
"https://www.w3.org/ns/activitystreams#Public"
],
"type": "Create"
}