Skip to content

Object types

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

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

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

Examples

Example 1

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/8VIpmrdQozA",
  "published": "2024-08-29T10:26:11Z",
  "object": {
    "type": "Article",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/DjJjDTZ_p8w",
    "published": "2024-08-29T10:26:11Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
akkoma
{
  "muted": false,
  "quote_id": null,
  "mentions": [
    {
      "acct": "witch",
      "id": "AlSLJMPdZlJsvMIEbY",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture-one-actor/actor/DjJjDTZ_p8w",
    "conversation_id": 1731056375,
    "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
  },
  "emojis": [],
  "uri": "http://pasture-one-actor/actor/DjJjDTZ_p8w",
  "reblog": null,
  "visibility": "public",
  "quote": null,
  "reblogged": false,
  "id": "AlSLfBKfUa0O73pV7Q",
  "replies_count": 0,
  "in_reply_to_account_id": null,
  "emoji_reactions": [],
  "url": "http://pasture-one-actor/actor/DjJjDTZ_p8w",
  "media_attachments": [],
  "poll": null,
  "akkoma": {
    "source": null
  },
  "card": null,
  "reblogs_count": 0,
  "pinned": false,
  "content": "<p><a href=\"http://pasture-one-actor/actor/DjJjDTZ_p8w\">name</a></p>content",
  "in_reply_to_id": null,
  "created_at": "2024-08-29T10:26:11.000Z",
  "bookmarked": false,
  "language": null,
  "application": null,
  "sensitive": false,
  "favourited": false,
  "tags": [],
  "edited_at": null,
  "text": null,
  "spoiler_text": "summary",
  "favourites_count": 0,
  "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-08-29T10:23:49.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": "AlSLS2ByAFmw04UXuS",
    "last_status_at": "2024-08-29",
    "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"
  }
}

Example 2

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/SQjjb0yiVt8",
  "published": "2024-08-29T10:26:12Z",
  "object": {
    "type": "Audio",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/n7SjIA2vp0s",
    "published": "2024-08-29T10:26:12Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

Example 3

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/nEskhT-T2sg",
  "published": "2024-08-29T10:26:23Z",
  "object": {
    "type": "Document",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/F2D_7vGO-DQ",
    "published": "2024-08-29T10:26:23Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

Example 4

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/2Wqcy1bb9Yw",
  "published": "2024-08-29T10:26:35Z",
  "object": {
    "type": "Event",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/RxTlZJ39TH8",
    "published": "2024-08-29T10:26:35Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
akkoma
{
  "muted": false,
  "quote_id": null,
  "mentions": [
    {
      "acct": "witch",
      "id": "AlSLJMPdZlJsvMIEbY",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture-one-actor/actor/RxTlZJ39TH8",
    "conversation_id": 1376972702,
    "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
  },
  "emojis": [],
  "uri": "http://pasture-one-actor/actor/RxTlZJ39TH8",
  "reblog": null,
  "visibility": "public",
  "quote": null,
  "reblogged": false,
  "id": "AlSLhLz2rVvJj5kdeq",
  "replies_count": 0,
  "in_reply_to_account_id": null,
  "emoji_reactions": [],
  "url": "http://pasture-one-actor/actor/RxTlZJ39TH8",
  "media_attachments": [],
  "poll": null,
  "akkoma": {
    "source": null
  },
  "card": null,
  "reblogs_count": 0,
  "pinned": false,
  "content": "<p><a href=\"http://pasture-one-actor/actor/RxTlZJ39TH8\">name</a></p>content",
  "in_reply_to_id": null,
  "created_at": "2024-08-29T10:26:35.000Z",
  "bookmarked": false,
  "language": null,
  "application": null,
  "sensitive": false,
  "favourited": false,
  "tags": [],
  "edited_at": null,
  "text": null,
  "spoiler_text": "summary",
  "favourites_count": 0,
  "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-08-29T10:23:49.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": "AlSLS2ByAFmw04UXuS",
    "last_status_at": "2024-08-29",
    "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"
  }
}

Example 5

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/V9hETA_r4ZE",
  "published": "2024-08-29T10:26:35Z",
  "object": {
    "type": "Image",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/vsw3aZS_RSI",
    "published": "2024-08-29T10:26:35Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

Example 6

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/tZdvJRMOO3w",
  "published": "2024-08-29T10:26:47Z",
  "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/GPiEAohf2Ec",
    "published": "2024-08-29T10:26:47Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
akkoma
{
  "muted": false,
  "quote_id": null,
  "mentions": [
    {
      "acct": "witch",
      "id": "AlSLJMPdZlJsvMIEbY",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture-one-actor/actor/GPiEAohf2Ec",
    "conversation_id": 52848375,
    "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
  },
  "emojis": [],
  "uri": "http://pasture-one-actor/actor/GPiEAohf2Ec",
  "reblog": null,
  "visibility": "public",
  "quote": null,
  "reblogged": false,
  "id": "AlSLiSH8xEnxWuk3JA",
  "replies_count": 0,
  "in_reply_to_account_id": null,
  "emoji_reactions": [],
  "url": "http://pasture-one-actor/actor/GPiEAohf2Ec",
  "media_attachments": [],
  "poll": null,
  "akkoma": {
    "source": null
  },
  "card": null,
  "reblogs_count": 0,
  "pinned": false,
  "content": "<p><a href=\"http://pasture-one-actor/actor/GPiEAohf2Ec\">name</a></p>content",
  "in_reply_to_id": null,
  "created_at": "2024-08-29T10:26:47.000Z",
  "bookmarked": false,
  "language": null,
  "application": null,
  "sensitive": false,
  "favourited": false,
  "tags": [],
  "edited_at": null,
  "text": null,
  "spoiler_text": "summary",
  "favourites_count": 0,
  "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-08-29T10:23:49.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": "AlSLS2ByAFmw04UXuS",
    "last_status_at": "2024-08-29",
    "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"
  }
}

Example 7

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/Q3Ijr67qq0c",
  "published": "2024-08-29T10:26:47Z",
  "object": {
    "type": "Page",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/ZyWP8jwLjIA",
    "published": "2024-08-29T10:26:47Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
akkoma
{
  "muted": false,
  "quote_id": null,
  "mentions": [
    {
      "acct": "witch",
      "id": "AlSLJMPdZlJsvMIEbY",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ],
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture-one-actor/actor/ZyWP8jwLjIA",
    "conversation_id": 417126796,
    "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
  },
  "emojis": [],
  "uri": "http://pasture-one-actor/actor/ZyWP8jwLjIA",
  "reblog": null,
  "visibility": "public",
  "quote": null,
  "reblogged": false,
  "id": "AlSLiWD2KRtdjKqpSi",
  "replies_count": 0,
  "in_reply_to_account_id": null,
  "emoji_reactions": [],
  "url": "http://pasture-one-actor/actor/ZyWP8jwLjIA",
  "media_attachments": [],
  "poll": null,
  "akkoma": {
    "source": null
  },
  "card": null,
  "reblogs_count": 0,
  "pinned": false,
  "content": "<p><a href=\"http://pasture-one-actor/actor/ZyWP8jwLjIA\">name</a></p>content",
  "in_reply_to_id": null,
  "created_at": "2024-08-29T10:26:47.000Z",
  "bookmarked": false,
  "language": null,
  "application": null,
  "sensitive": false,
  "favourited": false,
  "tags": [],
  "edited_at": null,
  "text": null,
  "spoiler_text": "summary",
  "favourites_count": 0,
  "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-08-29T10:23:49.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": "AlSLS2ByAFmw04UXuS",
    "last_status_at": "2024-08-29",
    "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"
  }
}

Example 8

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/cgnUn27uFUo",
  "published": "2024-08-29T10:26:48Z",
  "object": {
    "type": "Place",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/WmccQzIsmnk",
    "published": "2024-08-29T10:26:48Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

Example 9

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/Yu_QCc-Suto",
  "published": "2024-08-29T10:26:59Z",
  "object": {
    "type": "Profile",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/pSytbc9k9v0",
    "published": "2024-08-29T10:26:59Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

Example 10

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/D1OQwKJNpBU",
  "published": "2024-08-29T10:27:11Z",
  "object": {
    "type": "Relationship",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/jjyt8FQhxeQ",
    "published": "2024-08-29T10:27:11Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

Example 11

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/1EeIqc-LJJw",
  "published": "2024-08-29T10:27:22Z",
  "object": {
    "type": "Tombstone",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/rKflDJBgb7Y",
    "published": "2024-08-29T10:27:22Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

Example 12

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/NIvKTwcdTBI",
  "published": "2024-08-29T10:27:34Z",
  "object": {
    "type": "Video",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/QE-E_gzoasw",
    "published": "2024-08-29T10:27:34Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

Example 13

activity
{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "type": "Create",
  "actor": "http://pasture-one-actor/actor",
  "to": [
    "http://akkoma/users/witch",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "id": "http://pasture-one-actor/actor/OF7v5feLaUs",
  "published": "2024-08-29T10:27:45Z",
  "object": {
    "type": null,
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://akkoma/users/witch"
    ],
    "id": "http://pasture-one-actor/actor/bbKg6LZ7e4c",
    "published": "2024-08-29T10:27:45Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}

no result

Example 14

no result

no result