Skip to content

Hashtags

The following mostly illustrates how the name of a hashtag gets transformed by the applications. The input has the form

"tag": {"type": "Hashtag", "name": "${tag}"}

The last two examples illustrate more technical behavior.

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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/0vbAWBtgqWw",
  "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/x9evgnCgIew",
    "published": "2024-03-06T17:43:51Z",
    "content": "text",
    "tag": {
      "type": "Hashtag",
      "name": "#test"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/x9evgnCgIew",
    "conversation_id": 2079914231,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/x9evgnCgIew",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAI5rcqj4neNNRAm",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/x9evgnCgIew",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 67,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:43:51.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [
    {
      "name": "test",
      "url": "http://akkoma/tag/test"
    }
  ],
  "reblog": null,
  "language": null
}
```

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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/yKmzFCAlVRM",
  "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/YsJSacJntXU",
    "published": "2024-03-06T17:43:53Z",
    "content": "text",
    "tag": {
      "type": "Hashtag",
      "name": "nohash"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/YsJSacJntXU",
    "conversation_id": 1707174479,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/YsJSacJntXU",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAII0Dib57IVUTEe",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/YsJSacJntXU",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 68,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:43:53.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [
    {
      "name": "nohash",
      "url": "http://akkoma/tag/nohash"
    }
  ],
  "reblog": null,
  "language": null
}
```

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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/LT-lhGcQH6M",
  "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/Kn7gg0RJr7c",
    "published": "2024-03-06T17:43:55Z",
    "content": "text",
    "tag": {
      "type": "Hashtag",
      "name": "#with-dash_under"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/Kn7gg0RJr7c",
    "conversation_id": 2117619986,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/Kn7gg0RJr7c",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAIThWDxFhZyphke",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/Kn7gg0RJr7c",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 69,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:43:55.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [
    {
      "name": "with-dash_under",
      "url": "http://akkoma/tag/with-dash_under"
    }
  ],
  "reblog": null,
  "language": null
}
```

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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/7DVx6W9jvpE",
  "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/X368FJroz6o",
    "published": "2024-03-06T17:43:57Z",
    "content": "text",
    "tag": {
      "type": "Hashtag",
      "name": "#with white space"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/X368FJroz6o",
    "conversation_id": 358304604,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/X368FJroz6o",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAIfZS5lviOR9QqO",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/X368FJroz6o",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 70,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:43:57.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [
    {
      "name": "with white space",
      "url": "http://akkoma/tag/with%20white%20space"
    }
  ],
  "reblog": null,
  "language": null
}
```

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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/kFWvNGZ-gAA",
  "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/DUlB5kz4EAk",
    "published": "2024-03-06T17:43:59Z",
    "content": "text",
    "tag": {
      "type": "Hashtag",
      "name": "#with(subtag)"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/DUlB5kz4EAk",
    "conversation_id": 1116371221,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/DUlB5kz4EAk",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAIrX3cV91UU7gmG",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/DUlB5kz4EAk",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 71,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:43:59.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [
    {
      "name": "with(subtag)",
      "url": "http://akkoma/tag/with(subtag)"
    }
  ],
  "reblog": null,
  "language": null
}
```

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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/o2fP5MSyY08",
  "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/1eYPZvy0zdU",
    "published": "2024-03-06T17:44:01Z",
    "content": "text",
    "tag": {
      "type": "Hashtag",
      "name": "#with123"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/1eYPZvy0zdU",
    "conversation_id": 1944394104,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/1eYPZvy0zdU",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAJ3GpydIftecuA4",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/1eYPZvy0zdU",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 72,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:44:01.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [
    {
      "name": "with123",
      "url": "http://akkoma/tag/with123"
    }
  ],
  "reblog": null,
  "language": null
}
```

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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/dTFZZqdLdJQ",
  "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/X0VqpqHhfVI",
    "published": "2024-03-06T17:44:03Z",
    "content": "text",
    "tag": {
      "type": "Hashtag",
      "name": "#1234"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/X0VqpqHhfVI",
    "conversation_id": 1700389867,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/X0VqpqHhfVI",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAJF8Prlh6h0mLhY",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/X0VqpqHhfVI",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 73,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:44:03.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [
    {
      "name": "1234",
      "url": "http://akkoma/tag/1234"
    }
  ],
  "reblog": null,
  "language": null
}
```

Example 8

```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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/HS7DTZAh-4o",
  "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/KvCbj-x5I9s",
    "published": "2024-03-06T17:44:05Z",
    "content": "text",
    "tag": {
      "type": "Hashtag",
      "name": "#CamelCase"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/KvCbj-x5I9s",
    "conversation_id": 1649855682,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/KvCbj-x5I9s",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAJR4xSS3fjlFkye",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/KvCbj-x5I9s",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 74,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:44:05.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [
    {
      "name": "camelcase",
      "url": "http://akkoma/tag/camelcase"
    }
  ],
  "reblog": null,
  "language": null
}
```

Example 9

```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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/LOjDNEuS6Gc",
  "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/RtQXUAn_tWo",
    "published": "2024-03-06T17:44:07Z",
    "content": "text",
    "tag": {
      "type": "Hashtag",
      "name": "#\u00fcml\u00e4\u00fct\u00df"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/RtQXUAn_tWo",
    "conversation_id": 2093596809,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/RtQXUAn_tWo",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAJd058PHui7422i",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/RtQXUAn_tWo",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 75,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:44:07.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [
    {
      "name": "\u00fcml\u00e4\u00fct\u00df",
      "url": "http://akkoma/tag/%C3%BCml%C3%A4%C3%BCt%C3%9F"
    }
  ],
  "reblog": null,
  "language": null
}
```

Example 10

```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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/SNkylRXIJec",
  "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/9W6hIOPdM0w",
    "published": "2024-03-06T17:44:09Z",
    "content": "text",
    "tag": {
      "type": "Hashtag",
      "name": "#\ud83d\udc04"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/9W6hIOPdM0w",
    "conversation_id": 666665874,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/9W6hIOPdM0w",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAJp8K1b0eL90mYK",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/9W6hIOPdM0w",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 76,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:44:09.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [
    {
      "name": "\ud83d\udc04",
      "url": "http://akkoma/tag/%F0%9F%90%84"
    }
  ],
  "reblog": null,
  "language": null
}
```

Example 11

```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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/8zzrZVr1jo8",
  "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/AEo8icQLbBA",
    "published": "2024-03-06T17:44:11Z",
    "content": "text",
    "tag": {
      "type": "Hashtag",
      "name": "#\u2764\ufe0f"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/AEo8icQLbBA",
    "conversation_id": 1296480410,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/AEo8icQLbBA",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAK0tWISIcoiB89A",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/AEo8icQLbBA",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 77,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:44:11.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [
    {
      "name": "\u2764\ufe0f",
      "url": "http://akkoma/tag/%E2%9D%A4%EF%B8%8F"
    }
  ],
  "reblog": null,
  "language": null
}
```

Example 12

```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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/A2qujNI8QWY",
  "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/it6rdLt-9vI",
    "published": "2024-03-06T17:44:14Z",
    "content": "text",
    "tag": {
      "type": "Hashtag",
      "name": "#\u725b"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/it6rdLt-9vI",
    "conversation_id": 1477069475,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/it6rdLt-9vI",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAKCeMadJ1HBBCBk",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/it6rdLt-9vI",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 78,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:44:14.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [
    {
      "name": "\u725b",
      "url": "http://akkoma/tag/%E7%89%9B"
    }
  ],
  "reblog": null,
  "language": null
}
```

Example 13

```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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/FdDHz_KXv0M",
  "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/PGXqd3z9O28",
    "published": "2024-03-06T17:44:16Z",
    "content": "text",
    "tag": {
      "type": "Hashtag",
      "name": "#test",
      "url": "https://ignore.example"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/PGXqd3z9O28",
    "conversation_id": 1804813600,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/PGXqd3z9O28",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAKOaYCdO0IpUJua",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/PGXqd3z9O28",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 79,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:44:16.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [
    {
      "name": "test",
      "url": "http://akkoma/tag/test"
    }
  ],
  "reblog": null,
  "language": null
}
```

Example 14

```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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/q1O0CRI7mlk",
  "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/havdECGmN_0",
    "published": "2024-03-06T17:44:18Z",
    "content": "text",
    "tag": {
      "type": "as:Hashtag",
      "name": "#test"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/havdECGmN_0",
    "conversation_id": 1701697108,
    "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": ""
    },
    "thread_muted": false
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/havdECGmN_0",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaAKaIue2PKdbKP5M",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/havdECGmN_0",
  "in_reply_to_id": null,
  "emoji_reactions": [],
  "favourites_count": 0,
  "edited_at": null,
  "akkoma": {
    "source": null
  },
  "bookmarked": false,
  "reblogs_count": 0,
  "text": null,
  "reblogged": false,
  "application": null,
  "sensitive": false,
  "pinned": false,
  "muted": 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": "2024-03-06T17:40:42.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": "AfaA0fT9jNmmrjce5g",
    "last_status_at": "2024-03-06",
    "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": 80,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "Afa9srfZMHPS3qow9Q",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "created_at": "2024-03-06T17:44:18.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [],
  "reblog": null,
  "language": null
}
```

Example 15

```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": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture_one_actor/actor/27CS-gLA0es",
  "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/uweZ-_MuiPk",
    "published": "2024-03-06T17:44:20Z",
    "content": "text",
    "tag": {
      "name": "#test"
    }
  }
}
```


no result