Skip to content

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://misskey/users/9zznfapmb08t0001"
  ],
  "id": "http://pasture-one-actor/actor/cRuvJhvc6_I",
  "published": "2024-10-30T16:23:26Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9zznfapmb08t0001"
    ],
    "id": "http://pasture-one-actor/actor/MJ0ekG9ov_E",
    "published": "2024-10-30T16:23:26Z",
    "content": "valid uri",
    "inReplyTo": "http://pasture-one-actor/assets/note1.jsonap"
  }
}
misskey
{
  "id": "9zznh5bk0vqn000v",
  "createdAt": "2024-10-30T16:23:26.000Z",
  "userId": "9zzngtjx0vqn0002",
  "user": {
    "id": "9zzngtjx0vqn0002",
    "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": "valid uri",
  "cw": null,
  "visibility": "public",
  "localOnly": false,
  "reactionAcceptance": null,
  "renoteCount": 0,
  "repliesCount": 0,
  "reactionCount": 0,
  "reactions": {},
  "reactionEmojis": {},
  "emojis": {},
  "fileIds": [],
  "files": [],
  "replyId": "9o5nesfc0vqn000u",
  "renoteId": null,
  "uri": "http://pasture-one-actor/actor/MJ0ekG9ov_E",
  "clippedCount": 0,
  "reply": {
    "id": "9o5nesfc0vqn000u",
    "createdAt": "2024-01-06T13:11:45.000Z",
    "userId": "9zzngtjx0vqn0002",
    "user": {
      "id": "9zzngtjx0vqn0002",
      "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": "One",
    "cw": null,
    "visibility": "public",
    "localOnly": false,
    "reactionAcceptance": null,
    "renoteCount": 0,
    "repliesCount": 1,
    "reactionCount": 0,
    "reactions": {},
    "reactionEmojis": {},
    "emojis": {},
    "fileIds": [],
    "files": [],
    "replyId": null,
    "renoteId": null,
    "uri": "http://pasture-one-actor/assets/note1.jsonap"
  }
}

Example 2

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://misskey/users/9zznfapmb08t0001"
  ],
  "id": "http://pasture-one-actor/actor/HYLhqw1ybgc",
  "published": "2024-10-30T16:23:26Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9zznfapmb08t0001"
    ],
    "id": "http://pasture-one-actor/actor/JlqRIkULB7c",
    "published": "2024-10-30T16:23:26Z",
    "content": "invalid uri",
    "inReplyTo": "http://invalid.example/"
  }
}

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://misskey/users/9zznfapmb08t0001"
  ],
  "id": "http://pasture-one-actor/actor/rmYZU5-ccis",
  "published": "2024-10-30T16:23:38Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9zznfapmb08t0001"
    ],
    "id": "http://pasture-one-actor/actor/hstkC11W8vo",
    "published": "2024-10-30T16:23:38Z",
    "content": "list",
    "inReplyTo": [
      "http://pasture-one-actor/assets/note1.jsonap"
    ]
  }
}

no result

Example 4

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://misskey/users/9zznfapmb08t0001"
  ],
  "id": "http://pasture-one-actor/actor/U7l3kDRGrxM",
  "published": "2024-10-30T16:23:50Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9zznfapmb08t0001"
    ],
    "id": "http://pasture-one-actor/actor/DdMbSE_9aME",
    "published": "2024-10-30T16:23:50Z",
    "content": "Link in inReplyTo",
    "inReplyTo": {
      "type": "Link",
      "href": "http://pasture-one-actor/assets/note1.jsonap"
    }
  }
}

no result

Example 5

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://misskey/users/9zznfapmb08t0001"
  ],
  "id": "http://pasture-one-actor/actor/E_s5PD7Etko",
  "published": "2024-10-30T16:24:02Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9zznfapmb08t0001"
    ],
    "id": "http://pasture-one-actor/actor/XWeMVbpqXqA",
    "published": "2024-10-30T16:24:02Z",
    "content": "two elements in inReplyTo",
    "inReplyTo": [
      "http://pasture-one-actor/assets/note1.jsonap",
      "http://pasture-one-actor/assets/note2.jsonap"
    ]
  }
}

no result

Example 6

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://misskey/users/9zznfapmb08t0001"
  ],
  "id": "http://pasture-one-actor/actor/qk6ucdHQDx4",
  "published": "2024-10-30T16:24:14Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9zznfapmb08t0001"
    ],
    "id": "http://pasture-one-actor/actor/uZ89dLa42TU",
    "published": "2024-10-30T16:24:14Z",
    "content": "collection",
    "inReplyTo": {
      "type": "Collection",
      "items": [
        "http://pasture-one-actor/actor"
      ]
    }
  }
}

no result

Example 7

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://misskey/users/9zznfapmb08t0001"
  ],
  "id": "http://pasture-one-actor/actor/66ylJQI1mwc",
  "published": "2024-10-30T16:24:26Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9zznfapmb08t0001"
    ],
    "id": "http://pasture-one-actor/actor/QKwWThieBFQ",
    "published": "2024-10-30T16:24:26Z",
    "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"
    }
  }
}
misskey
{
  "id": "9zznifm80vqn000w",
  "createdAt": "2024-10-30T16:24:26.000Z",
  "userId": "9zzngtjx0vqn0002",
  "user": {
    "id": "9zzngtjx0vqn0002",
    "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": "embedded note",
  "cw": null,
  "visibility": "public",
  "localOnly": false,
  "reactionAcceptance": null,
  "renoteCount": 0,
  "repliesCount": 0,
  "reactionCount": 0,
  "reactions": {},
  "reactionEmojis": {},
  "emojis": {},
  "fileIds": [],
  "files": [],
  "replyId": "9o5nesfc0vqn000u",
  "renoteId": null,
  "uri": "http://pasture-one-actor/actor/QKwWThieBFQ",
  "clippedCount": 0,
  "reply": {
    "id": "9o5nesfc0vqn000u",
    "createdAt": "2024-01-06T13:11:45.000Z",
    "userId": "9zzngtjx0vqn0002",
    "user": {
      "id": "9zzngtjx0vqn0002",
      "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": "One",
    "cw": null,
    "visibility": "public",
    "localOnly": false,
    "reactionAcceptance": null,
    "renoteCount": 0,
    "repliesCount": 2,
    "reactionCount": 0,
    "reactions": {},
    "reactionEmojis": {},
    "emojis": {},
    "fileIds": [],
    "files": [],
    "replyId": null,
    "renoteId": null,
    "uri": "http://pasture-one-actor/assets/note1.jsonap"
  }
}