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/activity/hLAVIn5AU3I",
  "published": "2025-10-14T09:02:27Z",
  "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/object/2eag7DRqdwY",
    "published": "2025-10-14T09:02:27Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
akkoma
{
  "visibility": "public",
  "replies_count": 0,
  "bookmarked": false,
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture-one-actor/object/2eag7DRqdwY",
    "conversation_id": 1067148112,
    "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
  },
  "spoiler_text": "summary",
  "uri": "http://pasture-one-actor/object/2eag7DRqdwY",
  "quote": null,
  "media_attachments": [],
  "card": null,
  "edited_at": null,
  "id": "AzC9MrSv23CVb1VakK",
  "muted": false,
  "emoji_reactions": [],
  "in_reply_to_account_id": null,
  "reblogged": false,
  "created_at": "2025-10-14T09:02:27.000Z",
  "text": null,
  "reblogs_count": 0,
  "pinned": false,
  "url": "http://pasture-one-actor/object/2eag7DRqdwY",
  "content": "<p><a href=\"http://pasture-one-actor/object/2eag7DRqdwY\">name</a></p>content",
  "reblog": null,
  "application": null,
  "mentions": [
    {
      "acct": "witch",
      "id": "AzC8swYwaUNrXx8owS",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "poll": null,
  "sensitive": false,
  "quote_id": null,
  "akkoma": {
    "source": null
  },
  "in_reply_to_id": null,
  "emojis": [],
  "account": {
    "acct": "actor@pasture-one-actor",
    "akkoma": {
      "instance": null,
      "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-10-14T08:58:34.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": "AzC91MZuftkZihWr56",
    "last_status_at": "2025-10-14",
    "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": 185,
    "url": "http://pasture-one-actor/actor",
    "username": "actor"
  },
  "tags": [],
  "language": null,
  "favourited": false,
  "favourites_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/activity/8a2mZ_CXwBU",
  "published": "2025-10-14T09:02:28Z",
  "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/object/y9_-g7C2RvY",
    "published": "2025-10-14T09:02:28Z",
    "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/activity/gOEn4VHIl2w",
  "published": "2025-10-14T09:02:40Z",
  "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/object/OnnqgZNnEzY",
    "published": "2025-10-14T09:02:40Z",
    "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/activity/TpcdFbGWTo8",
  "published": "2025-10-14T09:02:53Z",
  "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/object/0t3ugkC0B3U",
    "published": "2025-10-14T09:02:53Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
akkoma
{
  "visibility": "public",
  "replies_count": 0,
  "bookmarked": false,
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture-one-actor/object/0t3ugkC0B3U",
    "conversation_id": 1204112551,
    "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
  },
  "spoiler_text": "summary",
  "uri": "http://pasture-one-actor/object/0t3ugkC0B3U",
  "quote": null,
  "media_attachments": [],
  "card": null,
  "edited_at": null,
  "id": "AzC9PCyq0ltCu0Yd84",
  "muted": false,
  "emoji_reactions": [],
  "in_reply_to_account_id": null,
  "reblogged": false,
  "created_at": "2025-10-14T09:02:53.000Z",
  "text": null,
  "reblogs_count": 0,
  "pinned": false,
  "url": "http://pasture-one-actor/object/0t3ugkC0B3U",
  "content": "<p><a href=\"http://pasture-one-actor/object/0t3ugkC0B3U\">name</a></p>content",
  "reblog": null,
  "application": null,
  "mentions": [
    {
      "acct": "witch",
      "id": "AzC8swYwaUNrXx8owS",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "poll": null,
  "sensitive": false,
  "quote_id": null,
  "akkoma": {
    "source": null
  },
  "in_reply_to_id": null,
  "emojis": [],
  "account": {
    "acct": "actor@pasture-one-actor",
    "akkoma": {
      "instance": null,
      "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-10-14T08:58:34.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": "AzC91MZuftkZihWr56",
    "last_status_at": "2025-10-14",
    "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": 186,
    "url": "http://pasture-one-actor/actor",
    "username": "actor"
  },
  "tags": [],
  "language": null,
  "favourited": false,
  "favourites_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/activity/VcWtoEC0z1g",
  "published": "2025-10-14T09:02:53Z",
  "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/object/rgHzud2dQGo",
    "published": "2025-10-14T09:02:53Z",
    "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/activity/HjpOyW-R0U8",
  "published": "2025-10-14T09:03:05Z",
  "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/object/12bZ7pUmcAU",
    "published": "2025-10-14T09:03:05Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
akkoma
{
  "visibility": "public",
  "replies_count": 0,
  "bookmarked": false,
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture-one-actor/object/12bZ7pUmcAU",
    "conversation_id": 1746229342,
    "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
  },
  "spoiler_text": "summary",
  "uri": "http://pasture-one-actor/object/12bZ7pUmcAU",
  "quote": null,
  "media_attachments": [],
  "card": null,
  "edited_at": null,
  "id": "AzC9QO2wLxXvVs2R9s",
  "muted": false,
  "emoji_reactions": [],
  "in_reply_to_account_id": null,
  "reblogged": false,
  "created_at": "2025-10-14T09:03:05.000Z",
  "text": null,
  "reblogs_count": 0,
  "pinned": false,
  "url": "http://pasture-one-actor/object/12bZ7pUmcAU",
  "content": "<p><a href=\"http://pasture-one-actor/object/12bZ7pUmcAU\">name</a></p>content",
  "reblog": null,
  "application": null,
  "mentions": [
    {
      "acct": "witch",
      "id": "AzC8swYwaUNrXx8owS",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "poll": null,
  "sensitive": false,
  "quote_id": null,
  "akkoma": {
    "source": null
  },
  "in_reply_to_id": null,
  "emojis": [],
  "account": {
    "acct": "actor@pasture-one-actor",
    "akkoma": {
      "instance": null,
      "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-10-14T08:58:34.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": "AzC91MZuftkZihWr56",
    "last_status_at": "2025-10-14",
    "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": 187,
    "url": "http://pasture-one-actor/actor",
    "username": "actor"
  },
  "tags": [],
  "language": null,
  "favourited": false,
  "favourites_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/activity/lx32wZr21dg",
  "published": "2025-10-14T09:03:06Z",
  "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/object/2nMi2h9q5U8",
    "published": "2025-10-14T09:03:06Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
akkoma
{
  "visibility": "public",
  "replies_count": 0,
  "bookmarked": false,
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture-one-actor/object/2nMi2h9q5U8",
    "conversation_id": 184091901,
    "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
  },
  "spoiler_text": "summary",
  "uri": "http://pasture-one-actor/object/2nMi2h9q5U8",
  "quote": null,
  "media_attachments": [],
  "card": null,
  "edited_at": null,
  "id": "AzC9QRZJG4DmR8CpWq",
  "muted": false,
  "emoji_reactions": [],
  "in_reply_to_account_id": null,
  "reblogged": false,
  "created_at": "2025-10-14T09:03:06.000Z",
  "text": null,
  "reblogs_count": 0,
  "pinned": false,
  "url": "http://pasture-one-actor/object/2nMi2h9q5U8",
  "content": "<p><a href=\"http://pasture-one-actor/object/2nMi2h9q5U8\">name</a></p>content",
  "reblog": null,
  "application": null,
  "mentions": [
    {
      "acct": "witch",
      "id": "AzC8swYwaUNrXx8owS",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "poll": null,
  "sensitive": false,
  "quote_id": null,
  "akkoma": {
    "source": null
  },
  "in_reply_to_id": null,
  "emojis": [],
  "account": {
    "acct": "actor@pasture-one-actor",
    "akkoma": {
      "instance": null,
      "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-10-14T08:58:34.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": "AzC91MZuftkZihWr56",
    "last_status_at": "2025-10-14",
    "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": 188,
    "url": "http://pasture-one-actor/actor",
    "username": "actor"
  },
  "tags": [],
  "language": null,
  "favourited": false,
  "favourites_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/activity/aDMHiJd4nnE",
  "published": "2025-10-14T09:03:07Z",
  "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/object/K1FbHWuZbsU",
    "published": "2025-10-14T09:03:07Z",
    "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/activity/hPQdMVXQTnQ",
  "published": "2025-10-14T09:03:19Z",
  "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/object/rayjG4XwGnc",
    "published": "2025-10-14T09:03:19Z",
    "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/activity/Kh6UTomKsBQ",
  "published": "2025-10-14T09:03:31Z",
  "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/object/YYAkAWS_iP0",
    "published": "2025-10-14T09:03:31Z",
    "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/activity/_DNrZMBhB0U",
  "published": "2025-10-14T09:03:44Z",
  "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/object/mYHzs3XUJkU",
    "published": "2025-10-14T09:03:44Z",
    "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/activity/5cPezVccuyU",
  "published": "2025-10-14T09:03:56Z",
  "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/object/3UQRX1rwg7k",
    "published": "2025-10-14T09:03:56Z",
    "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/activity/03Zkmy0rN2g",
  "published": "2025-10-14T09:04:08Z",
  "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/object/C6D1-31rcUg",
    "published": "2025-10-14T09:04:08Z",
    "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/activity/-7UHjM3kyaQ",
  "published": "2025-10-14T09:04:20Z",
  "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/object/G-6i8tnFDxs",
    "published": "2025-10-14T09:04:20Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result