HTML tags in summary¶
Here we analyze, which types of HTML tags are allowed inside the summary field.
As the content field, the [summary field(https://www.w3.org/TR/activitystreams-vocabulary/#dfn-summary) is described as
A natural language summarization of the object encoded as HTML.
This is a somewhat petulant table as most Fediverse applications treat the summary field as a plain text content warning.
Sanitizing fields is desired behavior as seen in Section B.10 of ActivityPub.
Examples¶
Example 1¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/vSkBUhET1xg",
"published": "2024-12-03T11:16:05Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/dgRtFQqEhb0",
"published": "2024-12-03T11:16:05Z",
"summary": "<b>bold</b>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxgutkp6gt0004",
"createdAt": "2024-12-03T11:16:05.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<b>bold</b>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/dgRtFQqEhb0",
"clippedCount": 0
}
mitra
{
"id": "01938c37-3afb-0e78-b0c0-1f420df8df7a",
"uri": "http://pasture-one-actor/actor/GrHmXU4_WJY",
"url": null,
"created_at": "2024-12-03T11:10:43Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 57,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><b>bold</b></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 2¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/26l8Hw01jxg",
"published": "2024-12-03T11:16:06Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/ngTJTc1Qepo",
"published": "2024-12-03T11:16:06Z",
"summary": "<strong>strong</strong>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxgvlcp6gt0005",
"createdAt": "2024-12-03T11:16:06.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<strong>strong</strong>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/ngTJTc1Qepo",
"clippedCount": 0
}
mitra
{
"id": "01938c37-61ff-7a17-e82c-be18efe1f5d0",
"uri": "http://pasture-one-actor/actor/YkZsaIDNadU",
"url": null,
"created_at": "2024-12-03T11:10:50Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 58,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><strong>strong</strong></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 3¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/BpiNGh2eJJM",
"published": "2024-12-03T11:16:07Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/YX-qdo4Zb3w",
"published": "2024-12-03T11:16:07Z",
"summary": "<i>italic</i>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxgwd4p6gt0006",
"createdAt": "2024-12-03T11:16:07.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<i>italic</i>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/YX-qdo4Zb3w",
"clippedCount": 0
}
mitra
{
"id": "01938c37-8916-b292-cf34-a544dd9c0c20",
"uri": "http://pasture-one-actor/actor/zEUlaokZPSA",
"url": null,
"created_at": "2024-12-03T11:11:00Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 59,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><i>italic</i></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 4¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/r3tltZirBCo",
"published": "2024-12-03T11:16:08Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/XlhSs7aXWNg",
"published": "2024-12-03T11:16:08Z",
"summary": "<i>italic with.</i> See <a href=\"https://codeberg.org/helge/funfedidev/issues/142\">Issue 142</a>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxgx4wp6gt0007",
"createdAt": "2024-12-03T11:16:08.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<i>italic with.</i> See <a href=\"https://codeberg.org/helge/funfedidev/issues/142\">Issue 142</a>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/XlhSs7aXWNg",
"clippedCount": 0
}
mitra
{
"id": "01938c37-b021-f095-0091-1f1b008d3349",
"uri": "http://pasture-one-actor/actor/vwGiCWuj8NU",
"url": null,
"created_at": "2024-12-03T11:11:10Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 60,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><i>italic with.</i> See <a href=\"https://codeberg.org/helge/funfedidev/issues/142\" rel=\"noopener\">Issue 142</a></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 5¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/KR4s4yaZdtI",
"published": "2024-12-03T11:16:08Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/7EUZUw1Pr_U",
"published": "2024-12-03T11:16:08Z",
"summary": "<em>emphasis</em>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxgx4wp6gt0008",
"createdAt": "2024-12-03T11:16:08.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<em>emphasis</em>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/7EUZUw1Pr_U",
"clippedCount": 0
}
mitra
{
"id": "01938c37-d73a-1fa2-275f-703829a4aff7",
"uri": "http://pasture-one-actor/actor/NW3pkTr_2hk",
"url": null,
"created_at": "2024-12-03T11:11:20Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 61,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><em>emphasis</em></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 6¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/6ZhOeG_dtnY",
"published": "2024-12-03T11:16:09Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/zxZqv17ZBpI",
"published": "2024-12-03T11:16:09Z",
"summary": "<del>old</del><ins>new</ins>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxgxwop6gt0009",
"createdAt": "2024-12-03T11:16:09.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<del>old</del><ins>new</ins>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/zxZqv17ZBpI",
"clippedCount": 0
}
mitra
{
"id": "01938c37-fe4b-c9bd-d8d1-bd46f297a67a",
"uri": "http://pasture-one-actor/actor/HwbMp5Rjhlg",
"url": null,
"created_at": "2024-12-03T11:11:30Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 62,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><del>old</del><ins>new</ins></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 7¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/cQ8Allu1Gpk",
"published": "2024-12-03T11:16:10Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/gYo6ZJpi4GU",
"published": "2024-12-03T11:16:10Z",
"summary": "<s>stricken</s>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxgyogp6gt000a",
"createdAt": "2024-12-03T11:16:10.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<s>stricken</s>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/gYo6ZJpi4GU",
"clippedCount": 0
}
mitra
{
"id": "01938c38-255b-8ca4-fcf6-556d39f269bf",
"uri": "http://pasture-one-actor/actor/HEZ40rA8V8c",
"url": null,
"created_at": "2024-12-03T11:11:40Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 63,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><s>stricken</s></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 8¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/8WF37E2TTkc",
"published": "2024-12-03T11:16:10Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/JzN3mehKSJs",
"published": "2024-12-03T11:16:10Z",
"summary": "<mark>mark</mark>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxgyogp6gt000b",
"createdAt": "2024-12-03T11:16:10.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<mark>mark</mark>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/JzN3mehKSJs",
"clippedCount": 0
}
mitra
{
"id": "01938c38-4c6b-03db-c785-c9d230d8cef2",
"uri": "http://pasture-one-actor/actor/E_eY45P2p-4",
"url": null,
"created_at": "2024-12-03T11:11:50Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 64,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><mark>mark</mark></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 9¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/0JP-lMRROiI",
"published": "2024-12-03T11:16:11Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/dIrrixhjHkY",
"published": "2024-12-03T11:16:11Z",
"summary": "find <var>x</var> (a variable)",
"content": "See summary"
}
}
misskey
{
"id": "a1bxgzg8p6gt000c",
"createdAt": "2024-12-03T11:16:11.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "find <var>x</var> (a variable)",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/dIrrixhjHkY",
"clippedCount": 0
}
mitra
{
"id": "01938c38-736b-c0a7-f9c2-8a63a24d73f3",
"uri": "http://pasture-one-actor/actor/l8iQDejdchE",
"url": null,
"created_at": "2024-12-03T11:12:00Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 65,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1>find <var>x</var> (a variable)</h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 10¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/1rGWcgTRNcE",
"published": "2024-12-03T11:16:12Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/Q7keXNZZYLA",
"published": "2024-12-03T11:16:12Z",
"summary": "<ol><li>ordered</li></ol>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh080p6gt000d",
"createdAt": "2024-12-03T11:16:12.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<ol><li>ordered</li></ol>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/Q7keXNZZYLA",
"clippedCount": 0
}
mitra
{
"id": "01938c38-9a7b-05cf-4944-ed5878729412",
"uri": "http://pasture-one-actor/actor/koLovYE0ft4",
"url": null,
"created_at": "2024-12-03T11:12:10Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 66,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><ol><li>ordered</li></ol></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 11¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/LLVbZGfOp6o",
"published": "2024-12-03T11:16:12Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/Ahs513JjAWc",
"published": "2024-12-03T11:16:12Z",
"summary": "<ul><li>unordered</li></ul>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh080p6gt000e",
"createdAt": "2024-12-03T11:16:12.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<ul><li>unordered</li></ul>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/Ahs513JjAWc",
"clippedCount": 0
}
mitra
{
"id": "01938c38-c18a-aa9e-1e8b-02a98ca083da",
"uri": "http://pasture-one-actor/actor/6jcIT2fn_3U",
"url": null,
"created_at": "2024-12-03T11:12:20Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 67,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><ul><li>unordered</li></ul></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 12¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/QmmXTkqy1TU",
"published": "2024-12-03T11:16:13Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/gYRMAdM8MH4",
"published": "2024-12-03T11:16:13Z",
"summary": "<h1>h1</h1>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh0zsp6gt000f",
"createdAt": "2024-12-03T11:16:13.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<h1>h1</h1>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/gYRMAdM8MH4",
"clippedCount": 0
}
mitra
{
"id": "01938c38-e89c-6d6c-bc1b-85fad72f649c",
"uri": "http://pasture-one-actor/actor/XSI-zkfSN1U",
"url": null,
"created_at": "2024-12-03T11:12:30Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 68,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1></h1><h1>h1</h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 13¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/uPOUbI-SRlY",
"published": "2024-12-03T11:16:14Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/cm6QU91GJfI",
"published": "2024-12-03T11:16:14Z",
"summary": "<h2>h2</h2>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh1rkp6gt000g",
"createdAt": "2024-12-03T11:16:14.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<h2>h2</h2>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/cm6QU91GJfI",
"clippedCount": 0
}
mitra
{
"id": "01938c39-0fb6-59d4-b7f7-90eaae31bd55",
"uri": "http://pasture-one-actor/actor/qjFJLAOLWgc",
"url": null,
"created_at": "2024-12-03T11:12:40Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 69,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1></h1><h2>h2</h2>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 14¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/thsxHxGzR3k",
"published": "2024-12-03T11:16:14Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/MaFN73ol0I0",
"published": "2024-12-03T11:16:14Z",
"summary": "<h3>h3</h3>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh1rkp6gt000h",
"createdAt": "2024-12-03T11:16:14.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<h3>h3</h3>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/MaFN73ol0I0",
"clippedCount": 0
}
mitra
{
"id": "01938c39-36c3-bb2e-484d-76fdb57c9a5f",
"uri": "http://pasture-one-actor/actor/Raaz6oRRSug",
"url": null,
"created_at": "2024-12-03T11:12:50Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 70,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1></h1><h3>h3</h3>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 15¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/lM5r3a9G_cE",
"published": "2024-12-03T11:16:15Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/fZ3AIB4314c",
"published": "2024-12-03T11:16:15Z",
"summary": "<h4>h4</h4>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh2jcp6gt000i",
"createdAt": "2024-12-03T11:16:15.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<h4>h4</h4>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/fZ3AIB4314c",
"clippedCount": 0
}
mitra
{
"id": "01938c39-5dda-662c-cd67-99f9f339b860",
"uri": "http://pasture-one-actor/actor/0q0_rCy9cYY",
"url": null,
"created_at": "2024-12-03T11:13:00Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 71,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1></h1><h4>h4</h4>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 16¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/9OEUotFYn2w",
"published": "2024-12-03T11:16:16Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/n9tdefKfKok",
"published": "2024-12-03T11:16:16Z",
"summary": "<h5>h5</h5>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh3b4p6gt000j",
"createdAt": "2024-12-03T11:16:16.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<h5>h5</h5>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/n9tdefKfKok",
"clippedCount": 0
}
mitra
{
"id": "01938c39-84e1-020e-c9b8-ac7c77cb2424",
"uri": "http://pasture-one-actor/actor/kO-o-M_dhfY",
"url": null,
"created_at": "2024-12-03T11:13:10Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 72,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1></h1><h5>h5</h5>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 17¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/84Ox6ti4oSU",
"published": "2024-12-03T11:16:16Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/gssoUXh_sVA",
"published": "2024-12-03T11:16:16Z",
"summary": "<code>code</code>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh3b4p6gt000k",
"createdAt": "2024-12-03T11:16:16.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<code>code</code>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/gssoUXh_sVA",
"clippedCount": 0
}
mitra
{
"id": "01938c39-abf8-f7b0-1900-5487c6d75d3a",
"uri": "http://pasture-one-actor/actor/4ARmLs8Bmz8",
"url": null,
"created_at": "2024-12-03T11:13:20Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 73,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><code>code</code></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 18¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/rtZWB4p27HA",
"published": "2024-12-03T11:16:17Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/MWjCICtaZ68",
"published": "2024-12-03T11:16:17Z",
"summary": "<pre>pre</pre>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh42wp6gt000l",
"createdAt": "2024-12-03T11:16:17.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<pre>pre</pre>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/MWjCICtaZ68",
"clippedCount": 0
}
mitra
{
"id": "01938c39-d309-d781-68af-2dcf21a2f939",
"uri": "http://pasture-one-actor/actor/A8cBi18_6r4",
"url": null,
"created_at": "2024-12-03T11:13:30Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 74,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><pre>pre</pre></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 19¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/p9CuhkTqIqs",
"published": "2024-12-03T11:16:18Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/MVYo5HNNVpk",
"published": "2024-12-03T11:16:18Z",
"summary": "line<br/>break",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh4uop6gt000m",
"createdAt": "2024-12-03T11:16:18.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "line<br/>break",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/MVYo5HNNVpk",
"clippedCount": 0
}
mitra
{
"id": "01938c39-fa13-035d-501e-b6a37e211c4e",
"uri": "http://pasture-one-actor/actor/L8kC_gczKOw",
"url": null,
"created_at": "2024-12-03T11:13:40Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 75,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1>line<br>break</h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 20¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/gUM6IylppG4",
"published": "2024-12-03T11:16:19Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/4RRPZH5g4tE",
"published": "2024-12-03T11:16:19Z",
"summary": "<p>paragraph</p>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh5mgp6gt000n",
"createdAt": "2024-12-03T11:16:19.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<p>paragraph</p>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/4RRPZH5g4tE",
"clippedCount": 0
}
mitra
{
"id": "01938c3a-2129-b6e3-c2eb-5a4ab184edab",
"uri": "http://pasture-one-actor/actor/zv0Lpx13Bgk",
"url": null,
"created_at": "2024-12-03T11:13:50Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 76,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><p>paragraph</p></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 21¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/ww7ZvebhmQA",
"published": "2024-12-03T11:16:19Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/9Im5FokCv18",
"published": "2024-12-03T11:16:19Z",
"summary": "<small>small</small>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh5mgp6gt000o",
"createdAt": "2024-12-03T11:16:19.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<small>small</small>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/9Im5FokCv18",
"clippedCount": 0
}
mitra
{
"id": "01938c3a-4836-410a-515d-f9f61ef30956",
"uri": "http://pasture-one-actor/actor/5QFvQm_GThk",
"url": null,
"created_at": "2024-12-03T11:14:00Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 77,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><small>small</small></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 22¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/dgRSOgUme08",
"published": "2024-12-03T11:16:20Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/G3_hyJdwmzM",
"published": "2024-12-03T11:16:20Z",
"summary": "<sup>sup</sup>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh6e8p6gt000p",
"createdAt": "2024-12-03T11:16:20.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<sup>sup</sup>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/G3_hyJdwmzM",
"clippedCount": 0
}
mitra
{
"id": "01938c3a-6f4a-b10a-aa3c-74c7d0fc719e",
"uri": "http://pasture-one-actor/actor/Jo70gwxSgBc",
"url": null,
"created_at": "2024-12-03T11:14:10Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 78,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><sup>sup</sup></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 23¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/epGyq6RRq_A",
"published": "2024-12-03T11:16:21Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/fx_Vz2du51Y",
"published": "2024-12-03T11:16:21Z",
"summary": "<sub>sub</sub>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh760p6gt000q",
"createdAt": "2024-12-03T11:16:21.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<sub>sub</sub>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/fx_Vz2du51Y",
"clippedCount": 0
}
mitra
{
"id": "01938c3a-965b-7037-aea6-7680fd39314e",
"uri": "http://pasture-one-actor/actor/erOZ0sqU0Lw",
"url": null,
"created_at": "2024-12-03T11:14:20Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 79,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><sub>sub</sub></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 24¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/DpD4AzdW6-Y",
"published": "2024-12-03T11:16:21Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/KsdqjUkq4oU",
"published": "2024-12-03T11:16:21Z",
"summary": "<a href='https://funfedi.dev'>funfedi</a>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh760p6gt000r",
"createdAt": "2024-12-03T11:16:21.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<a href='https://funfedi.dev'>funfedi</a>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/KsdqjUkq4oU",
"clippedCount": 0
}
mitra
{
"id": "01938c3a-bd6c-b8a0-713b-7c2625028b2b",
"uri": "http://pasture-one-actor/actor/woREKlHiAbI",
"url": null,
"created_at": "2024-12-03T11:14:30Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 80,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1><a href=\"https://funfedi.dev\" rel=\"noopener\">funfedi</a></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 25¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/4vRlEmfzjzM",
"published": "2024-12-03T11:16:22Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/eon9I1qMZqw",
"published": "2024-12-03T11:16:22Z",
"summary": "<script>alert('hi');</script>",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh7xsp6gt000s",
"createdAt": "2024-12-03T11:16:22.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<script>alert('hi');</script>",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/eon9I1qMZqw",
"clippedCount": 0
}
mitra
{
"id": "01938c3a-e479-2c65-257f-4891a2d4e6d8",
"uri": "http://pasture-one-actor/actor/XttjES6sjAk",
"url": null,
"created_at": "2024-12-03T11:14:40Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 81,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1></h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 26¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/5_-GN6af4KI",
"published": "2024-12-03T11:16:23Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/-J-NIRZO20g",
"published": "2024-12-03T11:16:23Z",
"summary": "<img src=\"http://pasture-one-actor/assets/nlnet.png\" alt=\"NLNET Logo\" />",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh8pkp6gt000t",
"createdAt": "2024-12-03T11:16:23.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "<img src=\"http://pasture-one-actor/assets/nlnet.png\" alt=\"NLNET Logo\" />",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/-J-NIRZO20g",
"clippedCount": 0
}
mitra
{
"id": "01938c3b-0b89-f6af-7ea7-c7e5b665cd47",
"uri": "http://pasture-one-actor/actor/n7C0lHrOvgQ",
"url": null,
"created_at": "2024-12-03T11:14:50Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 82,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1>http://pasture-one-actor/assets/nlnet.png</h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 27¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://misskey/users/a1bxcio915et0001",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/wElvccCmUT4",
"published": "2024-12-03T11:16:23Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a1bxcio915et0001"
],
"id": "http://pasture-one-actor/actor/IJpgn_ZSe4Y",
"published": "2024-12-03T11:16:23Z",
"summary": "wbr: Fernstra\u00dfen<wbr />bau<wbr />privat<wbr />finanzierungs<wbr />gesetz",
"content": "See summary"
}
}
misskey
{
"id": "a1bxh8pkp6gt000u",
"createdAt": "2024-12-03T11:16:23.000Z",
"userId": "a1bxgvxap6gt0002",
"user": {
"id": "a1bxgvxap6gt0002",
"name": "Test Actor",
"username": "actor",
"host": "pasture-one-actor",
"avatarUrl": "http://misskey/identicon/actor@pasture-one-actor",
"avatarBlurhash": null,
"avatarDecorations": [],
"isBot": false,
"isCat": false,
"instance": {
"name": null,
"softwareName": null,
"softwareVersion": null,
"iconUrl": null,
"faviconUrl": null,
"themeColor": null
},
"emojis": {},
"onlineStatus": "unknown"
},
"text": "See summary",
"cw": "wbr: Fernstra\u00dfen<wbr />bau<wbr />privat<wbr />finanzierungs<wbr />gesetz",
"visibility": "public",
"localOnly": false,
"reactionAcceptance": null,
"renoteCount": 0,
"repliesCount": 0,
"reactions": {},
"reactionEmojis": {},
"emojis": {},
"fileIds": [],
"files": [],
"replyId": null,
"renoteId": null,
"uri": "http://pasture-one-actor/actor/IJpgn_ZSe4Y",
"clippedCount": 0
}
mitra
{
"id": "01938c3b-3294-7d4e-35cb-1f9379aa9353",
"uri": "http://pasture-one-actor/actor/DBOT88_AgUc",
"url": null,
"created_at": "2024-12-03T11:15:00Z",
"edited_at": null,
"account": {
"id": "01938bf6-e8a3-eca1-70fd-aff7ae8b2df4",
"username": "actor",
"acct": "actor@pasture-one-actor",
"actor_id": "http://pasture-one-actor/actor",
"url": "http://pasture-one-actor/actor",
"display_name": "Test Actor",
"created_at": "2024-12-03T10:00:34.723085Z",
"note": "",
"avatar": null,
"header": null,
"locked": false,
"bot": false,
"identity_proofs": [],
"payment_options": [],
"fields": [],
"emojis": [],
"followers_count": 0,
"following_count": 0,
"subscribers_count": 0,
"statuses_count": 83,
"source": null,
"role": null,
"authentication_methods": null,
"client_config": null
},
"content": "<h1>wbr: Fernstra\u00dfen<wbr>bau<wbr>privat<wbr>finanzierungs<wbr>gesetz</h1>See summary",
"in_reply_to_id": null,
"in_reply_to_account_id": null,
"reblog": null,
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"pinned": false,
"replies_count": 0,
"favourites_count": 0,
"reblogs_count": 0,
"media_attachments": [],
"mentions": [
{
"id": "01938bf6-393f-e424-b47c-5a99b443b69a",
"username": "admin",
"acct": "admin",
"url": "http://mitra/users/admin"
}
],
"tags": [],
"emojis": [],
"favourited": false,
"reblogged": false,
"ipfs_cid": null,
"token_id": null,
"token_tx_id": null,
"links": []
}
Example 28¶
no result
no result
no result
Example 29¶
no result
no result
no result
Example 30¶
no result
no result
no result