Skip to content

Object types

Varying the object type and investigation what happens to the properties. Relevant properties are

{
    "@context": "https://www.w3.org/ns/activitystreams",
    "type": "${type}",
    "name": "name",
    "summary": "summary",
    "content": "content"
}

where type is the property being varied between different entries in the table. Object types are defined in https://www.w3.org/TR/activitystreams-vocabulary/#object-types.

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://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/8UOyKKt5ezA",
  "published": "2025-03-03T10:05:09Z",
  "object": {
    "type": "Article",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/OILngVT6GzA",
    "published": "2025-03-03T10:05:09Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
akkoma
{
  "reblogged": false,
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture-one-actor/actor/OILngVT6GzA",
    "conversation_id": 1902401017,
    "direct_conversation_id": null,
    "emoji_reactions": [],
    "expires_at": null,
    "in_reply_to_account_acct": null,
    "local": false,
    "parent_visible": false,
    "pinned_at": null,
    "spoiler_text": {
      "text/plain": "summary"
    },
    "thread_muted": false
  },
  "in_reply_to_account_id": null,
  "uri": "http://pasture-one-actor/actor/OILngVT6GzA",
  "edited_at": null,
  "quote": null,
  "favourited": false,
  "pinned": false,
  "emojis": [],
  "id": "ArfrM331ANNDUpwAUq",
  "text": null,
  "mentions": [
    {
      "acct": "witch",
      "id": "ArfqzLZ1hw24Ui97LM",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "content": "<p><a href=\"http://pasture-one-actor/actor/OILngVT6GzA\">name</a></p>content",
  "akkoma": {
    "source": null
  },
  "spoiler_text": "summary",
  "media_attachments": [],
  "url": "http://pasture-one-actor/actor/OILngVT6GzA",
  "reblogs_count": 0,
  "visibility": "public",
  "bookmarked": false,
  "card": null,
  "favourites_count": 0,
  "in_reply_to_id": null,
  "quote_id": null,
  "poll": null,
  "emoji_reactions": [],
  "application": null,
  "tags": [],
  "sensitive": false,
  "account": {
    "acct": "actor@pasture-one-actor",
    "akkoma": {
      "instance": {
        "favicon": null,
        "name": "pasture-one-actor",
        "nodeinfo": {}
      },
      "permit_followback": false,
      "status_ttl_days": null
    },
    "avatar": "http://akkoma/images/avi.png",
    "avatar_static": "http://akkoma/images/avi.png",
    "bot": false,
    "created_at": "2025-03-03T10:02:43.000Z",
    "display_name": "Test Actor",
    "emojis": [],
    "fields": [],
    "followers_count": 0,
    "following_count": 0,
    "fqn": "actor@pasture-one-actor",
    "header": "http://akkoma/images/banner.png",
    "header_static": "http://akkoma/images/banner.png",
    "id": "Arfr8aKsbaWEgQs8uW",
    "last_status_at": "2025-03-03",
    "locked": false,
    "note": "",
    "pleroma": {
      "also_known_as": [],
      "ap_id": "http://pasture-one-actor/actor",
      "background_image": null,
      "favicon": null,
      "hide_favorites": true,
      "hide_followers": false,
      "hide_followers_count": false,
      "hide_follows": false,
      "hide_follows_count": false,
      "is_admin": false,
      "is_confirmed": true,
      "is_moderator": false,
      "is_suggested": false,
      "relationship": {},
      "skip_thread_containment": false,
      "tags": []
    },
    "source": {
      "fields": [],
      "note": "",
      "pleroma": {
        "actor_type": "Person",
        "discoverable": false
      },
      "sensitive": false
    },
    "statuses_count": 123,
    "url": "http://pasture-one-actor/actor",
    "username": "actor"
  },
  "reblog": null,
  "language": null,
  "created_at": "2025-03-03T10:05:09.000Z",
  "muted": false,
  "replies_count": 0
}

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://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/gVBU6uHwpac",
  "published": "2025-03-03T10:05:09Z",
  "object": {
    "type": "Audio",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/en8IdgMAmzM",
    "published": "2025-03-03T10:05:09Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

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://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/u2bz6i_Hrjs",
  "published": "2025-03-03T10:05:21Z",
  "object": {
    "type": "Document",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/SsfKtY0CDQo",
    "published": "2025-03-03T10:05:21Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/BMVhjOSlaOE",
  "published": "2025-03-03T10:05:33Z",
  "object": {
    "type": "Event",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/8cXES_EL2MM",
    "published": "2025-03-03T10:05:33Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
akkoma
{
  "reblogged": false,
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture-one-actor/actor/8cXES_EL2MM",
    "conversation_id": 1117291530,
    "direct_conversation_id": null,
    "emoji_reactions": [],
    "expires_at": null,
    "in_reply_to_account_acct": null,
    "local": false,
    "parent_visible": false,
    "pinned_at": null,
    "spoiler_text": {
      "text/plain": "summary"
    },
    "thread_muted": false
  },
  "in_reply_to_account_id": null,
  "uri": "http://pasture-one-actor/actor/8cXES_EL2MM",
  "edited_at": null,
  "quote": null,
  "favourited": false,
  "pinned": false,
  "emojis": [],
  "id": "ArfrOKsdptRnNmAt2O",
  "text": null,
  "mentions": [
    {
      "acct": "witch",
      "id": "ArfqzLZ1hw24Ui97LM",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "content": "<p><a href=\"http://pasture-one-actor/actor/8cXES_EL2MM\">name</a></p>content",
  "akkoma": {
    "source": null
  },
  "spoiler_text": "summary",
  "media_attachments": [],
  "url": "http://pasture-one-actor/actor/8cXES_EL2MM",
  "reblogs_count": 0,
  "visibility": "public",
  "bookmarked": false,
  "card": null,
  "favourites_count": 0,
  "in_reply_to_id": null,
  "quote_id": null,
  "poll": null,
  "emoji_reactions": [],
  "application": null,
  "tags": [],
  "sensitive": false,
  "account": {
    "acct": "actor@pasture-one-actor",
    "akkoma": {
      "instance": {
        "favicon": null,
        "name": "pasture-one-actor",
        "nodeinfo": {}
      },
      "permit_followback": false,
      "status_ttl_days": null
    },
    "avatar": "http://akkoma/images/avi.png",
    "avatar_static": "http://akkoma/images/avi.png",
    "bot": false,
    "created_at": "2025-03-03T10:02:43.000Z",
    "display_name": "Test Actor",
    "emojis": [],
    "fields": [],
    "followers_count": 0,
    "following_count": 0,
    "fqn": "actor@pasture-one-actor",
    "header": "http://akkoma/images/banner.png",
    "header_static": "http://akkoma/images/banner.png",
    "id": "Arfr8aKsbaWEgQs8uW",
    "last_status_at": "2025-03-03",
    "locked": false,
    "note": "",
    "pleroma": {
      "also_known_as": [],
      "ap_id": "http://pasture-one-actor/actor",
      "background_image": null,
      "favicon": null,
      "hide_favorites": true,
      "hide_followers": false,
      "hide_followers_count": false,
      "hide_follows": false,
      "hide_follows_count": false,
      "is_admin": false,
      "is_confirmed": true,
      "is_moderator": false,
      "is_suggested": false,
      "relationship": {},
      "skip_thread_containment": false,
      "tags": []
    },
    "source": {
      "fields": [],
      "note": "",
      "pleroma": {
        "actor_type": "Person",
        "discoverable": false
      },
      "sensitive": false
    },
    "statuses_count": 124,
    "url": "http://pasture-one-actor/actor",
    "username": "actor"
  },
  "reblog": null,
  "language": null,
  "created_at": "2025-03-03T10:05:33.000Z",
  "muted": false,
  "replies_count": 0
}

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://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/yb6SZwmKbGE",
  "published": "2025-03-03T10:05:34Z",
  "object": {
    "type": "Image",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/lFkWcfg7hd8",
    "published": "2025-03-03T10:05:34Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/vM1AGQCobkg",
  "published": "2025-03-03T10:05:46Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/KOeOOiQlxA4",
    "published": "2025-03-03T10:05:46Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
akkoma
{
  "reblogged": false,
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture-one-actor/actor/KOeOOiQlxA4",
    "conversation_id": 32074271,
    "direct_conversation_id": null,
    "emoji_reactions": [],
    "expires_at": null,
    "in_reply_to_account_acct": null,
    "local": false,
    "parent_visible": false,
    "pinned_at": null,
    "spoiler_text": {
      "text/plain": "summary"
    },
    "thread_muted": false
  },
  "in_reply_to_account_id": null,
  "uri": "http://pasture-one-actor/actor/KOeOOiQlxA4",
  "edited_at": null,
  "quote": null,
  "favourited": false,
  "pinned": false,
  "emojis": [],
  "id": "ArfrPViZ1nlHHf1Mxs",
  "text": null,
  "mentions": [
    {
      "acct": "witch",
      "id": "ArfqzLZ1hw24Ui97LM",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "content": "<p><a href=\"http://pasture-one-actor/actor/KOeOOiQlxA4\">name</a></p>content",
  "akkoma": {
    "source": null
  },
  "spoiler_text": "summary",
  "media_attachments": [],
  "url": "http://pasture-one-actor/actor/KOeOOiQlxA4",
  "reblogs_count": 0,
  "visibility": "public",
  "bookmarked": false,
  "card": null,
  "favourites_count": 0,
  "in_reply_to_id": null,
  "quote_id": null,
  "poll": null,
  "emoji_reactions": [],
  "application": null,
  "tags": [],
  "sensitive": false,
  "account": {
    "acct": "actor@pasture-one-actor",
    "akkoma": {
      "instance": {
        "favicon": null,
        "name": "pasture-one-actor",
        "nodeinfo": {}
      },
      "permit_followback": false,
      "status_ttl_days": null
    },
    "avatar": "http://akkoma/images/avi.png",
    "avatar_static": "http://akkoma/images/avi.png",
    "bot": false,
    "created_at": "2025-03-03T10:02:43.000Z",
    "display_name": "Test Actor",
    "emojis": [],
    "fields": [],
    "followers_count": 0,
    "following_count": 0,
    "fqn": "actor@pasture-one-actor",
    "header": "http://akkoma/images/banner.png",
    "header_static": "http://akkoma/images/banner.png",
    "id": "Arfr8aKsbaWEgQs8uW",
    "last_status_at": "2025-03-03",
    "locked": false,
    "note": "",
    "pleroma": {
      "also_known_as": [],
      "ap_id": "http://pasture-one-actor/actor",
      "background_image": null,
      "favicon": null,
      "hide_favorites": true,
      "hide_followers": false,
      "hide_followers_count": false,
      "hide_follows": false,
      "hide_follows_count": false,
      "is_admin": false,
      "is_confirmed": true,
      "is_moderator": false,
      "is_suggested": false,
      "relationship": {},
      "skip_thread_containment": false,
      "tags": []
    },
    "source": {
      "fields": [],
      "note": "",
      "pleroma": {
        "actor_type": "Person",
        "discoverable": false
      },
      "sensitive": false
    },
    "statuses_count": 125,
    "url": "http://pasture-one-actor/actor",
    "username": "actor"
  },
  "reblog": null,
  "language": null,
  "created_at": "2025-03-03T10:05:46.000Z",
  "muted": false,
  "replies_count": 0
}

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://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/9MgiJNYD7gc",
  "published": "2025-03-03T10:05:47Z",
  "object": {
    "type": "Page",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/wQSOU5RoZS0",
    "published": "2025-03-03T10:05:47Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
akkoma
{
  "reblogged": false,
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture-one-actor/actor/wQSOU5RoZS0",
    "conversation_id": 1852982193,
    "direct_conversation_id": null,
    "emoji_reactions": [],
    "expires_at": null,
    "in_reply_to_account_acct": null,
    "local": false,
    "parent_visible": false,
    "pinned_at": null,
    "spoiler_text": {
      "text/plain": "summary"
    },
    "thread_muted": false
  },
  "in_reply_to_account_id": null,
  "uri": "http://pasture-one-actor/actor/wQSOU5RoZS0",
  "edited_at": null,
  "quote": null,
  "favourited": false,
  "pinned": false,
  "emojis": [],
  "id": "ArfrPZY4mjkVAI93Am",
  "text": null,
  "mentions": [
    {
      "acct": "witch",
      "id": "ArfqzLZ1hw24Ui97LM",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "content": "<p><a href=\"http://pasture-one-actor/actor/wQSOU5RoZS0\">name</a></p>content",
  "akkoma": {
    "source": null
  },
  "spoiler_text": "summary",
  "media_attachments": [],
  "url": "http://pasture-one-actor/actor/wQSOU5RoZS0",
  "reblogs_count": 0,
  "visibility": "public",
  "bookmarked": false,
  "card": null,
  "favourites_count": 0,
  "in_reply_to_id": null,
  "quote_id": null,
  "poll": null,
  "emoji_reactions": [],
  "application": null,
  "tags": [],
  "sensitive": false,
  "account": {
    "acct": "actor@pasture-one-actor",
    "akkoma": {
      "instance": {
        "favicon": null,
        "name": "pasture-one-actor",
        "nodeinfo": {}
      },
      "permit_followback": false,
      "status_ttl_days": null
    },
    "avatar": "http://akkoma/images/avi.png",
    "avatar_static": "http://akkoma/images/avi.png",
    "bot": false,
    "created_at": "2025-03-03T10:02:43.000Z",
    "display_name": "Test Actor",
    "emojis": [],
    "fields": [],
    "followers_count": 0,
    "following_count": 0,
    "fqn": "actor@pasture-one-actor",
    "header": "http://akkoma/images/banner.png",
    "header_static": "http://akkoma/images/banner.png",
    "id": "Arfr8aKsbaWEgQs8uW",
    "last_status_at": "2025-03-03",
    "locked": false,
    "note": "",
    "pleroma": {
      "also_known_as": [],
      "ap_id": "http://pasture-one-actor/actor",
      "background_image": null,
      "favicon": null,
      "hide_favorites": true,
      "hide_followers": false,
      "hide_followers_count": false,
      "hide_follows": false,
      "hide_follows_count": false,
      "is_admin": false,
      "is_confirmed": true,
      "is_moderator": false,
      "is_suggested": false,
      "relationship": {},
      "skip_thread_containment": false,
      "tags": []
    },
    "source": {
      "fields": [],
      "note": "",
      "pleroma": {
        "actor_type": "Person",
        "discoverable": false
      },
      "sensitive": false
    },
    "statuses_count": 126,
    "url": "http://pasture-one-actor/actor",
    "username": "actor"
  },
  "reblog": null,
  "language": null,
  "created_at": "2025-03-03T10:05:47.000Z",
  "muted": false,
  "replies_count": 0
}

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://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/yIBFZ539FxM",
  "published": "2025-03-03T10:05:48Z",
  "object": {
    "type": "Place",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/ynszWPQmSn0",
    "published": "2025-03-03T10:05:48Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

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://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/l0FmBfcwtE8",
  "published": "2025-03-03T10:05:59Z",
  "object": {
    "type": "Profile",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/C6UStq_dojQ",
    "published": "2025-03-03T10:05:59Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

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://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/fED2mflDUAs",
  "published": "2025-03-03T10:06:11Z",
  "object": {
    "type": "Relationship",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/lLJ-rnn_Jcs",
    "published": "2025-03-03T10:06:11Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

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://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/A9eVXKIznrc",
  "published": "2025-03-03T10:06:23Z",
  "object": {
    "type": "Tombstone",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/fsooMkEL0yg",
    "published": "2025-03-03T10:06:23Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

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://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/zMOjMovSX_U",
  "published": "2025-03-03T10:06:35Z",
  "object": {
    "type": "Video",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/r8WzGUAiQTc",
    "published": "2025-03-03T10:06:35Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

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://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/t6JB7XTtMZY",
  "published": "2025-03-03T10:06:47Z",
  "object": {
    "type": [
      "Note",
      "Article"
    ],
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/kb9ykdm3cRM",
    "published": "2025-03-03T10:06:47Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

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://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/KkM5z8GrJiY",
  "published": "2025-03-03T10:06:59Z",
  "object": {
    "type": null,
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/mtb9Gxb_7RY",
    "published": "2025-03-03T10:06:59Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result