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.

The support table shows a ✅ if the object was parsed successfully, so a blank space means that the object was discarded. In details, you find how the fields name, summary, and content are being transformed by the application's parser.

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://akkoma/users/witch"
  ],
  "id": "http://pasture_one_actor/actor/pXKkxmoFTI0",
  "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/waSTumR8ShE",
    "published": "2024-02-28T19:02:26Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
```


```json title="akkoma"
{
  "text": null,
  "language": null,
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture_one_actor/actor/waSTumR8ShE",
    "conversation_id": 1883783450,
    "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
  },
  "reblog": null,
  "uri": "http://pasture_one_actor/actor/waSTumR8ShE",
  "media_attachments": [],
  "card": null,
  "quote": null,
  "edited_at": null,
  "spoiler_text": "summary",
  "muted": false,
  "tags": [],
  "id": "AfLlhy8m1uDuOykFWq",
  "akkoma": {
    "source": null
  },
  "favourites_count": 0,
  "favourited": false,
  "quote_id": null,
  "reblogs_count": 0,
  "reblogged": false,
  "in_reply_to_account_id": null,
  "content": "<p><a href=\"http://pasture_one_actor/actor/waSTumR8ShE\">name</a></p>content",
  "visibility": "public",
  "in_reply_to_id": null,
  "created_at": "2024-02-28T19:02:26.000Z",
  "bookmarked": false,
  "emojis": [],
  "url": "http://pasture_one_actor/actor/waSTumR8ShE",
  "application": null,
  "sensitive": false,
  "replies_count": 0,
  "emoji_reactions": [],
  "pinned": false,
  "poll": null,
  "account": {
    "acct": "actor@pasture_one_actor",
    "akkoma": {
      "instance": {
        "favicon": null,
        "name": "pasture_one_actor",
        "nodeinfo": {}
      },
      "status_ttl_days": null
    },
    "avatar": "http://akkoma/images/avi.png",
    "avatar_static": "http://akkoma/images/avi.png",
    "bot": false,
    "created_at": "2024-02-28T18:59:50.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": "AfLlTX1O3rWOEtPDG4",
    "last_status_at": "2024-02-28T19:02:27",
    "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": 62,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "AfLlJwB9B0nqRguGFU",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ]
}
```

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://akkoma/users/witch"
  ],
  "id": "http://pasture_one_actor/actor/CzI5vHZxcd0",
  "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/GWDC1ExtSRg",
    "published": "2024-02-28T19:02:28Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
```


no result

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://akkoma/users/witch"
  ],
  "id": "http://pasture_one_actor/actor/IAL5zHB8GEE",
  "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/Swfd9mtPH9o",
    "published": "2024-02-28T19:02:30Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
```


no result

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://akkoma/users/witch"
  ],
  "id": "http://pasture_one_actor/actor/Ex5_ikvt-PA",
  "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/lAsGRcAzkSI",
    "published": "2024-02-28T19:02:32Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
```


```json title="akkoma"
{
  "text": null,
  "language": null,
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture_one_actor/actor/lAsGRcAzkSI",
    "conversation_id": 2067184019,
    "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
  },
  "reblog": null,
  "uri": "http://pasture_one_actor/actor/lAsGRcAzkSI",
  "media_attachments": [],
  "card": null,
  "quote": null,
  "edited_at": null,
  "spoiler_text": "summary",
  "muted": false,
  "tags": [],
  "id": "AfLliXTCfwMTyTZYjQ",
  "akkoma": {
    "source": null
  },
  "favourites_count": 0,
  "favourited": false,
  "quote_id": null,
  "reblogs_count": 0,
  "reblogged": false,
  "in_reply_to_account_id": null,
  "content": "<p><a href=\"http://pasture_one_actor/actor/lAsGRcAzkSI\">name</a></p>content",
  "visibility": "public",
  "in_reply_to_id": null,
  "created_at": "2024-02-28T19:02:32.000Z",
  "bookmarked": false,
  "emojis": [],
  "url": "http://pasture_one_actor/actor/lAsGRcAzkSI",
  "application": null,
  "sensitive": false,
  "replies_count": 0,
  "emoji_reactions": [],
  "pinned": false,
  "poll": null,
  "account": {
    "acct": "actor@pasture_one_actor",
    "akkoma": {
      "instance": {
        "favicon": null,
        "name": "pasture_one_actor",
        "nodeinfo": {}
      },
      "status_ttl_days": null
    },
    "avatar": "http://akkoma/images/avi.png",
    "avatar_static": "http://akkoma/images/avi.png",
    "bot": false,
    "created_at": "2024-02-28T18:59:50.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": "AfLlTX1O3rWOEtPDG4",
    "last_status_at": "2024-02-28T19:02:33",
    "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": 63,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "AfLlJwB9B0nqRguGFU",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ]
}
```

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://akkoma/users/witch"
  ],
  "id": "http://pasture_one_actor/actor/TIxuAWEDfIk",
  "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/eRFa0xDltSc",
    "published": "2024-02-28T19:02:34Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
```


no result

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://akkoma/users/witch"
  ],
  "id": "http://pasture_one_actor/actor/_47Km_VlOf0",
  "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/MQTpe3Au2OY",
    "published": "2024-02-28T19:02:37Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
```


```json title="akkoma"
{
  "text": null,
  "language": null,
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture_one_actor/actor/MQTpe3Au2OY",
    "conversation_id": 1402340889,
    "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
  },
  "reblog": null,
  "uri": "http://pasture_one_actor/actor/MQTpe3Au2OY",
  "media_attachments": [],
  "card": null,
  "quote": null,
  "edited_at": null,
  "spoiler_text": "summary",
  "muted": false,
  "tags": [],
  "id": "AfLlivKVxtfhyTgxWK",
  "akkoma": {
    "source": null
  },
  "favourites_count": 0,
  "favourited": false,
  "quote_id": null,
  "reblogs_count": 0,
  "reblogged": false,
  "in_reply_to_account_id": null,
  "content": "<p><a href=\"http://pasture_one_actor/actor/MQTpe3Au2OY\">name</a></p>content",
  "visibility": "public",
  "in_reply_to_id": null,
  "created_at": "2024-02-28T19:02:37.000Z",
  "bookmarked": false,
  "emojis": [],
  "url": "http://pasture_one_actor/actor/MQTpe3Au2OY",
  "application": null,
  "sensitive": false,
  "replies_count": 0,
  "emoji_reactions": [],
  "pinned": false,
  "poll": null,
  "account": {
    "acct": "actor@pasture_one_actor",
    "akkoma": {
      "instance": {
        "favicon": null,
        "name": "pasture_one_actor",
        "nodeinfo": {}
      },
      "status_ttl_days": null
    },
    "avatar": "http://akkoma/images/avi.png",
    "avatar_static": "http://akkoma/images/avi.png",
    "bot": false,
    "created_at": "2024-02-28T18:59:50.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": "AfLlTX1O3rWOEtPDG4",
    "last_status_at": "2024-02-28T19:02:37",
    "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": 64,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "AfLlJwB9B0nqRguGFU",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ]
}
```

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://akkoma/users/witch"
  ],
  "id": "http://pasture_one_actor/actor/5k_q1tf59f0",
  "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/NG8GBonaIFQ",
    "published": "2024-02-28T19:02:39Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
```


```json title="akkoma"
{
  "text": null,
  "language": null,
  "pleroma": {
    "content": {
      "text/plain": "namecontent"
    },
    "context": "http://pasture_one_actor/actor/NG8GBonaIFQ",
    "conversation_id": 1067104810,
    "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
  },
  "reblog": null,
  "uri": "http://pasture_one_actor/actor/NG8GBonaIFQ",
  "media_attachments": [],
  "card": null,
  "quote": null,
  "edited_at": null,
  "spoiler_text": "summary",
  "muted": false,
  "tags": [],
  "id": "AfLlj76QC7WqUFBsDg",
  "akkoma": {
    "source": null
  },
  "favourites_count": 0,
  "favourited": false,
  "quote_id": null,
  "reblogs_count": 0,
  "reblogged": false,
  "in_reply_to_account_id": null,
  "content": "<p><a href=\"http://pasture_one_actor/actor/NG8GBonaIFQ\">name</a></p>content",
  "visibility": "public",
  "in_reply_to_id": null,
  "created_at": "2024-02-28T19:02:39.000Z",
  "bookmarked": false,
  "emojis": [],
  "url": "http://pasture_one_actor/actor/NG8GBonaIFQ",
  "application": null,
  "sensitive": false,
  "replies_count": 0,
  "emoji_reactions": [],
  "pinned": false,
  "poll": null,
  "account": {
    "acct": "actor@pasture_one_actor",
    "akkoma": {
      "instance": {
        "favicon": null,
        "name": "pasture_one_actor",
        "nodeinfo": {}
      },
      "status_ttl_days": null
    },
    "avatar": "http://akkoma/images/avi.png",
    "avatar_static": "http://akkoma/images/avi.png",
    "bot": false,
    "created_at": "2024-02-28T18:59:50.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": "AfLlTX1O3rWOEtPDG4",
    "last_status_at": "2024-02-28T19:02:39",
    "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": 65,
    "url": "http://pasture_one_actor/actor",
    "username": "actor"
  },
  "mentions": [
    {
      "acct": "witch",
      "id": "AfLlJwB9B0nqRguGFU",
      "url": "http://akkoma/users/witch",
      "username": "witch"
    }
  ]
}
```

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://akkoma/users/witch"
  ],
  "id": "http://pasture_one_actor/actor/I8FGHR9dRAA",
  "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/V1dEO4V5AQQ",
    "published": "2024-02-28T19:02:41Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
```


no result

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://akkoma/users/witch"
  ],
  "id": "http://pasture_one_actor/actor/5qdyOPZauG0",
  "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/D0WQFLm47ss",
    "published": "2024-02-28T19:02:43Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
```


no result

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://akkoma/users/witch"
  ],
  "id": "http://pasture_one_actor/actor/0hL8asxFuSQ",
  "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/ibTVhjbv7SE",
    "published": "2024-02-28T19:02:45Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
```


no result

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://akkoma/users/witch"
  ],
  "id": "http://pasture_one_actor/actor/sMlw8wgmUtQ",
  "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/OXBxDgS4W6c",
    "published": "2024-02-28T19:02:47Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
```


no result

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://akkoma/users/witch"
  ],
  "id": "http://pasture_one_actor/actor/m6MsiKT50Do",
  "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/oaymbf-WVQY",
    "published": "2024-02-28T19:02:49Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
```


no result

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": [
    "https://www.w3.org/ns/activitystreams#Public",
    "http://akkoma/users/witch"
  ],
  "id": "http://pasture_one_actor/actor/wzJR2BoyXdI",
  "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/aiVhvS6CM9E",
    "published": "2024-02-28T19:02:51Z",
    "name": "name",
    "summary": "summary",
    "content": "content"
  }
}
```


no result