Skip to content

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

```json title="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/9rkld43ll7r80001"
  ],
  "id": "http://pasture-one-actor/actor/vJHHYnyn5r8",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9rkld43ll7r80001"
    ],
    "id": "http://pasture-one-actor/actor/ZysHr4BAZCA",
    "published": "2024-04-01T14:11:39Z",
    "content": "valid uri",
    "inReplyTo": "http://pasture-one-actor/assets/note1.jsonap"
  }
}
```

Example 2

```json title="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/9rkld43ll7r80001"
  ],
  "id": "http://pasture-one-actor/actor/CdBAlkeFYss",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9rkld43ll7r80001"
    ],
    "id": "http://pasture-one-actor/actor/_C1c1RyGods",
    "published": "2024-04-01T14:11:51Z",
    "content": "invalid uri",
    "inReplyTo": "http://invalid.example/"
  }
}
```

Example 3

```json title="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/9rkld43ll7r80001"
  ],
  "id": "http://pasture-one-actor/actor/hkQxK4BLTaU",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9rkld43ll7r80001"
    ],
    "id": "http://pasture-one-actor/actor/S86F2ulrKxk",
    "published": "2024-04-01T14:12:02Z",
    "content": "list",
    "inReplyTo": [
      "http://pasture-one-actor/assets/note1.jsonap"
    ]
  }
}
```

Example 4

```json title="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/9rkld43ll7r80001"
  ],
  "id": "http://pasture-one-actor/actor/0IFgQbPeIRY",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9rkld43ll7r80001"
    ],
    "id": "http://pasture-one-actor/actor/IErKJ-CRsnQ",
    "published": "2024-04-01T14:12:14Z",
    "content": "Link in inReplyTo",
    "inReplyTo": {
      "type": "Link",
      "href": "http://pasture-one-actor/assets/note1.jsonap"
    }
  }
}
```

Example 5

```json title="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/9rkld43ll7r80001"
  ],
  "id": "http://pasture-one-actor/actor/GblMsCxEmA8",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9rkld43ll7r80001"
    ],
    "id": "http://pasture-one-actor/actor/AaasyOyvHek",
    "published": "2024-04-01T14:12:25Z",
    "content": "two elements in inReplyTo",
    "inReplyTo": [
      "http://pasture-one-actor/assets/note1.jsonap",
      "http://pasture-one-actor/assets/note2.jsonap"
    ]
  }
}
```

Example 6

```json title="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/9rkld43ll7r80001"
  ],
  "id": "http://pasture-one-actor/actor/ThIZQMpYttE",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9rkld43ll7r80001"
    ],
    "id": "http://pasture-one-actor/actor/DNCSGBcrwHY",
    "published": "2024-04-01T14:12:36Z",
    "content": "collection",
    "inReplyTo": {
      "type": "Collection",
      "items": [
        "http://pasture-one-actor/actor"
      ]
    }
  }
}
```

Example 7

```json title="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/9rkld43ll7r80001"
  ],
  "id": "http://pasture-one-actor/actor/BuW8h-rNxyo",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/9rkld43ll7r80001"
    ],
    "id": "http://pasture-one-actor/actor/BrSlVxV8wsQ",
    "published": "2024-04-01T14:12:48Z",
    "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"
    }
  }
}
```