Skip to content

Content Warnings

Content Warnings are set using sensitive, then summary seems to be used as a spoiler text.

The last three examples are an attempt to add a content warning to an image.

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/QZgfOOxSTa8",
  "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/yGCWEIZ4bTk",
    "published": "2024-03-06T17:41:11Z",
    "content": "text",
    "sensitive": true
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/yGCWEIZ4bTk",
    "conversation_id": 105296261,
    "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/yGCWEIZ4bTk",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaA3KOaXTAkNLkpNY",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/yGCWEIZ4bTk",
  "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": true,
  "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": 5,
    "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:41:11.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [],
  "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/hXVvBA8qroY",
  "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/gQo-sl-HCjE",
    "published": "2024-03-06T17:41:13Z",
    "content": "text",
    "summary": "summary"
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/gQo-sl-HCjE",
    "conversation_id": 1534479995,
    "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
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/gQo-sl-HCjE",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "summary",
  "quote_id": null,
  "id": "AfaA3WTHdq3fpO2kMa",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/gQo-sl-HCjE",
  "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": 6,
    "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:41:13.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [],
  "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/6VWmWyix6_k",
  "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/LxzEhmKd7Z8",
    "published": "2024-03-06T17:41:15Z",
    "content": "text",
    "summary": "summary",
    "sensitive": true
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "text"
    },
    "context": "http://pasture_one_actor/actor/LxzEhmKd7Z8",
    "conversation_id": 1489215686,
    "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
  },
  "content": "text",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/LxzEhmKd7Z8",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "summary",
  "quote_id": null,
  "id": "AfaA3iOlITZUoq1Iyu",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/LxzEhmKd7Z8",
  "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": true,
  "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": 7,
    "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:41:15.000Z",
  "emojis": [],
  "media_attachments": [],
  "tags": [],
  "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/U_L9kaFpFM4",
  "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/TY-upy3OI0M",
    "published": "2024-03-06T17:41:17Z",
    "content": "see image",
    "attachment": {
      "type": "Image",
      "sensitive": true,
      "url": "http://pasture_one_actor/assets/nlnet.jpg"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "see image"
    },
    "context": "http://pasture_one_actor/actor/TY-upy3OI0M",
    "conversation_id": 1818411189,
    "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": "see image",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/TY-upy3OI0M",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaA3uJsyQnjnBpa2y",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/TY-upy3OI0M",
  "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": 8,
    "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:41:17.000Z",
  "emojis": [],
  "media_attachments": [
    {
      "blurhash": null,
      "description": null,
      "id": "-93331108",
      "pleroma": {
        "mime_type": "application/octet-stream"
      },
      "preview_url": "http://pasture_one_actor/assets/nlnet.jpg",
      "remote_url": "http://pasture_one_actor/assets/nlnet.jpg",
      "text_url": "http://pasture_one_actor/assets/nlnet.jpg",
      "type": "unknown",
      "url": "http://pasture_one_actor/assets/nlnet.jpg"
    }
  ],
  "tags": [],
  "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/jsn76tEJAfQ",
  "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/2P7wx2xvLWw",
    "published": "2024-03-06T17:41:19Z",
    "content": "see image",
    "sensitive": true,
    "attachment": {
      "type": "Image",
      "sensitive": true,
      "url": "http://pasture_one_actor/assets/nlnet.jpg"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "see image"
    },
    "context": "http://pasture_one_actor/actor/2P7wx2xvLWw",
    "conversation_id": 1305932820,
    "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": "see image",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/2P7wx2xvLWw",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaA464NHvWYEYfMXI",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/2P7wx2xvLWw",
  "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": true,
  "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": 9,
    "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:41:19.000Z",
  "emojis": [],
  "media_attachments": [
    {
      "blurhash": null,
      "description": null,
      "id": "-93331108",
      "pleroma": {
        "mime_type": "application/octet-stream"
      },
      "preview_url": "http://pasture_one_actor/assets/nlnet.jpg",
      "remote_url": "http://pasture_one_actor/assets/nlnet.jpg",
      "text_url": "http://pasture_one_actor/assets/nlnet.jpg",
      "type": "unknown",
      "url": "http://pasture_one_actor/assets/nlnet.jpg"
    }
  ],
  "tags": [],
  "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/Eg7Ep6gUvZU",
  "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/DAtMrIIM8ik",
    "published": "2024-03-06T17:41:21Z",
    "content": "see image",
    "attachment": {
      "content": "content",
      "type": "Image",
      "sensitive": true,
      "url": "http://pasture_one_actor/assets/nlnet.jpg"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "see image"
    },
    "context": "http://pasture_one_actor/actor/DAtMrIIM8ik",
    "conversation_id": 419249505,
    "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": "see image",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/DAtMrIIM8ik",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaA4Hy539cT8VoVOK",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/DAtMrIIM8ik",
  "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": 10,
    "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:41:21.000Z",
  "emojis": [],
  "media_attachments": [
    {
      "blurhash": null,
      "description": null,
      "id": "-93331108",
      "pleroma": {
        "mime_type": "application/octet-stream"
      },
      "preview_url": "http://pasture_one_actor/assets/nlnet.jpg",
      "remote_url": "http://pasture_one_actor/assets/nlnet.jpg",
      "text_url": "http://pasture_one_actor/assets/nlnet.jpg",
      "type": "unknown",
      "url": "http://pasture_one_actor/assets/nlnet.jpg"
    }
  ],
  "tags": [],
  "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/hcLuoZZbJFQ",
  "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/7esuzTZVsrY",
    "published": "2024-03-06T17:41:23Z",
    "content": "see image",
    "attachment": {
      "type": "Image",
      "summary": "summary",
      "sensitive": true,
      "url": "http://pasture_one_actor/assets/nlnet.jpg"
    }
  }
}
```


```json title="akkoma"
{
  "card": null,
  "pleroma": {
    "content": {
      "text/plain": "see image"
    },
    "context": "http://pasture_one_actor/actor/7esuzTZVsrY",
    "conversation_id": 974329325,
    "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": "see image",
  "replies_count": 0,
  "uri": "http://pasture_one_actor/actor/7esuzTZVsrY",
  "in_reply_to_account_id": null,
  "quote": null,
  "spoiler_text": "",
  "quote_id": null,
  "id": "AfaA4TmT89SflyTOxU",
  "poll": null,
  "favourited": false,
  "visibility": "public",
  "url": "http://pasture_one_actor/actor/7esuzTZVsrY",
  "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": 11,
    "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:41:23.000Z",
  "emojis": [],
  "media_attachments": [
    {
      "blurhash": null,
      "description": null,
      "id": "-93331108",
      "pleroma": {
        "mime_type": "application/octet-stream"
      },
      "preview_url": "http://pasture_one_actor/assets/nlnet.jpg",
      "remote_url": "http://pasture_one_actor/assets/nlnet.jpg",
      "text_url": "http://pasture_one_actor/assets/nlnet.jpg",
      "type": "unknown",
      "url": "http://pasture_one_actor/assets/nlnet.jpg"
    }
  ],
  "tags": [],
  "reblog": null,
  "language": null
}
```