Variations of inReplyTo¶
The property is defined here. The
goal of this support table is to show how applications react to inReplyTo
containing a wide variation
of allowed objects. As Fediverse applications generally only give one the option to reply to a single
element, the lacking support should not be surprising.
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://hollo/@john",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/d7Pw0aNVYe8",
"published": "2024-11-02T18:59:34Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/qe8QjbrBVOw",
"published": "2024-11-02T18:59:34Z",
"content": "valid uri",
"inReplyTo": "http://pasture-one-actor/assets/note1.jsonap",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/jl12DsjAjTE",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:16Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/cIBlm5rovjY",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:16Z",
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"content": "valid uri"
}
}
hollo
{
"id": "0192ee3f-39f0-7199-89df-51b1d8651aeb",
"created_at": "2024-11-02T18:59:34.000Z",
"in_reply_to_id": "018cdee6-9e68-7b94-8e12-ccdc7a141054",
"in_reply_to_account_id": "0192ee3e-cd62-7072-bd1d-65735daf05d7",
"sensitive": false,
"spoiler_text": "",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/qe8QjbrBVOw",
"url": null,
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "valid uri",
"reblog": null,
"quote_id": null,
"quote": null,
"application": null,
"account": {
"id": "0192ee3e-cd62-7072-bd1d-65735daf05d7",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"bot": false,
"created_at": "2024-11-02T18:59:06.152Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://hollo/image/avatars/original/missing.png",
"avatar_static": "http://hollo/image/avatars/original/missing.png",
"header": "http://hollo/image/headers/original/missing.png",
"header_static": "http://hollo/image/headers/original/missing.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 0,
"moved": null,
"last_status_at": null,
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"emojis": [],
"emoji_reactions": [],
"poll": null,
"filtered": null
}
Example 2¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://hollo/@john",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/MAIdtgck21Y",
"published": "2024-11-02T18:59:35Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/H1xJE0plKos",
"published": "2024-11-02T18:59:35Z",
"content": "invalid uri",
"inReplyTo": "http://invalid.example/",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/tBelEaO46Jo",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:17Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/P_nFDjs_Pzk",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:17Z",
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"content": "invalid uri"
}
}
no result
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://hollo/@john",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/Zd38y6nEYd8",
"published": "2024-11-02T18:59:47Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/_TTbGHdxA6o",
"published": "2024-11-02T18:59:47Z",
"content": "list",
"inReplyTo": [
"http://pasture-one-actor/assets/note1.jsonap"
],
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/gpQXsAls5DE",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:18Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/r-JEus7sQ60",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:18Z",
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"content": "list"
}
}
hollo
{
"id": "0192ee3f-6cb8-7da9-8b17-3f8880c8c1f4",
"created_at": "2024-11-02T18:59:47.000Z",
"in_reply_to_id": "018cdee6-9e68-7b94-8e12-ccdc7a141054",
"in_reply_to_account_id": "0192ee3e-cd62-7072-bd1d-65735daf05d7",
"sensitive": false,
"spoiler_text": "",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/_TTbGHdxA6o",
"url": null,
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "list",
"reblog": null,
"quote_id": null,
"quote": null,
"application": null,
"account": {
"id": "0192ee3e-cd62-7072-bd1d-65735daf05d7",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"bot": false,
"created_at": "2024-11-02T18:59:06.152Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://hollo/image/avatars/original/missing.png",
"avatar_static": "http://hollo/image/avatars/original/missing.png",
"header": "http://hollo/image/headers/original/missing.png",
"header_static": "http://hollo/image/headers/original/missing.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 0,
"moved": null,
"last_status_at": null,
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"emojis": [],
"emoji_reactions": [],
"poll": null,
"filtered": null
}
Example 4¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://hollo/@john",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/pwVkYxyVw2Y",
"published": "2024-11-02T18:59:48Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/t0zbzvWIFD4",
"published": "2024-11-02T18:59:48Z",
"content": "Link in inReplyTo",
"inReplyTo": {
"type": "Link",
"href": "http://pasture-one-actor/assets/note1.jsonap"
},
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/oL_U72LTfP0",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:18Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/EQ7TMYbA6qs",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:18Z",
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"content": "Link in inReplyTo"
}
}
hollo
{
"id": "0192ee3f-70a0-73d5-b4a2-3a6959b2407c",
"created_at": "2024-11-02T18:59:48.000Z",
"in_reply_to_id": null,
"sensitive": false,
"spoiler_text": "",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/t0zbzvWIFD4",
"url": null,
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "Link in inReplyTo",
"reblog": null,
"quote_id": null,
"quote": null,
"application": null,
"account": {
"id": "0192ee3e-cd62-7072-bd1d-65735daf05d7",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"bot": false,
"created_at": "2024-11-02T18:59:06.152Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://hollo/image/avatars/original/missing.png",
"avatar_static": "http://hollo/image/avatars/original/missing.png",
"header": "http://hollo/image/headers/original/missing.png",
"header_static": "http://hollo/image/headers/original/missing.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 0,
"moved": null,
"last_status_at": null,
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"emojis": [],
"emoji_reactions": [],
"poll": null,
"filtered": null
}
Example 5¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://hollo/@john",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/3CvQbFIWANA",
"published": "2024-11-02T18:59:49Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/uOdr0KWa4oY",
"published": "2024-11-02T18:59:49Z",
"content": "two elements in inReplyTo",
"inReplyTo": [
"http://pasture-one-actor/assets/note1.jsonap",
"http://pasture-one-actor/assets/note2.jsonap"
],
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/Qjwc9pEv2Oc",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:19Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/bPDEarYRncc",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:19Z",
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"content": "two elements in inReplyTo"
}
}
hollo
{
"id": "0192ee3f-7488-7aae-b595-9e6fe3223a88",
"created_at": "2024-11-02T18:59:49.000Z",
"in_reply_to_id": "018cdee6-9e68-7b94-8e12-ccdc7a141054",
"in_reply_to_account_id": "0192ee3e-cd62-7072-bd1d-65735daf05d7",
"sensitive": false,
"spoiler_text": "",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/uOdr0KWa4oY",
"url": null,
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "two elements in inReplyTo",
"reblog": null,
"quote_id": null,
"quote": null,
"application": null,
"account": {
"id": "0192ee3e-cd62-7072-bd1d-65735daf05d7",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"bot": false,
"created_at": "2024-11-02T18:59:06.152Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://hollo/image/avatars/original/missing.png",
"avatar_static": "http://hollo/image/avatars/original/missing.png",
"header": "http://hollo/image/headers/original/missing.png",
"header_static": "http://hollo/image/headers/original/missing.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 0,
"moved": null,
"last_status_at": null,
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"emojis": [],
"emoji_reactions": [],
"poll": null,
"filtered": null
}
Example 6¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://hollo/@john",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/KtGLl_r9QTw",
"published": "2024-11-02T18:59:50Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/DrpAS38GIJ8",
"published": "2024-11-02T18:59:50Z",
"content": "collection",
"inReplyTo": {
"type": "Collection",
"items": [
"http://pasture-one-actor/actor"
]
},
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/42l-EGlj_pU",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:20Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/CZsKnN-poRk",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:20Z",
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"content": "collection"
}
}
hollo
{
"id": "0192ee3f-7870-772b-a32e-959f5e20f83f",
"created_at": "2024-11-02T18:59:50.000Z",
"in_reply_to_id": null,
"sensitive": false,
"spoiler_text": "",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/DrpAS38GIJ8",
"url": null,
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "collection",
"reblog": null,
"quote_id": null,
"quote": null,
"application": null,
"account": {
"id": "0192ee3e-cd62-7072-bd1d-65735daf05d7",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"bot": false,
"created_at": "2024-11-02T18:59:06.152Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://hollo/image/avatars/original/missing.png",
"avatar_static": "http://hollo/image/avatars/original/missing.png",
"header": "http://hollo/image/headers/original/missing.png",
"header_static": "http://hollo/image/headers/original/missing.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 0,
"moved": null,
"last_status_at": null,
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"emojis": [],
"emoji_reactions": [],
"poll": null,
"filtered": null
}
Example 7¶
activity
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"to": [
"http://hollo/@john",
"https://www.w3.org/ns/activitystreams#Public"
],
"id": "http://pasture-one-actor/actor/krAGGEIb2mQ",
"published": "2024-11-02T18:59:51Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/cThkPXaX5rc",
"published": "2024-11-02T18:59:51Z",
"content": "embedded note",
"inReplyTo": {
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Note",
"id": "http://pasture-one-actor/assets/note1.jsonap",
"to": [
"as:Public"
],
"attributedTo": "http://pasture-one-actor/actor",
"content": "One",
"published": "2024-01-06T13:11:45Z"
},
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/Qgspjnr3eBA",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:20Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/jS-nvx48LWE",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://abel/actor/a_Ov0G8sbw0AqVeyefxDWQ"
],
"published": "2024-11-02T14:55:20Z",
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"content": "embedded note"
}
}
hollo
{
"id": "0192ee3f-7c58-7c31-bd01-ce689e877a13",
"created_at": "2024-11-02T18:59:51.000Z",
"in_reply_to_id": "018cdee6-9e68-7b94-8e12-ccdc7a141054",
"in_reply_to_account_id": "0192ee3e-cd62-7072-bd1d-65735daf05d7",
"sensitive": false,
"spoiler_text": "",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/cThkPXaX5rc",
"url": null,
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "embedded note",
"reblog": null,
"quote_id": null,
"quote": null,
"application": null,
"account": {
"id": "0192ee3e-cd62-7072-bd1d-65735daf05d7",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"bot": false,
"created_at": "2024-11-02T18:59:06.152Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://hollo/image/avatars/original/missing.png",
"avatar_static": "http://hollo/image/avatars/original/missing.png",
"header": "http://hollo/image/headers/original/missing.png",
"header_static": "http://hollo/image/headers/original/missing.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 0,
"moved": null,
"last_status_at": null,
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"emojis": [],
"emoji_reactions": [],
"poll": null,
"filtered": null
}