Necessary Properties¶
With this support table, we want to illustrate, which properties can be removed from an object, and still create an appropriate response. We note that the basic form of an object is
{
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"as:Public",
"http://mitra/users/admin"
],
"id": "http://pasture-one-actor/actor/wFuWTn-8BiE",
"published": "2023-11-28T11:38:15Z",
"content": "All fields"
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a92fy09mup5x0003"
],
"id": "http://pasture-one-actor/actor/fcD-cA5TiiI",
"published": "2025-06-16T09:48:54Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a92fy09mup5x0003"
],
"id": "http://pasture-one-actor/actor/3Pyd1piySH8",
"published": "2025-06-16T09:48:54Z",
"content": "All fields"
}
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a92fy09mup5x0003"
],
"id": "http://pasture-one-actor/actor/jgoyOTBjNvw",
"published": "2025-06-16T09:49:05Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a92fy09mup5x0003"
],
"id": null,
"published": "2025-06-16T09:49:05Z",
"content": "without id"
}
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a92fy09mup5x0003"
],
"id": "http://pasture-one-actor/actor/O2eLQ0qPMSo",
"published": "2025-06-16T09:49:15Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a92fy09mup5x0003"
],
"id": "http://pasture-one-actor/actor/3AZWbqyAlCQ",
"published": null,
"content": "without published"
}
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a92fy09mup5x0003"
],
"id": "http://pasture-one-actor/actor/gbwOKFEOu98",
"published": "2025-06-16T09:49:26Z",
"object": {
"type": "Note",
"attributedTo": null,
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a92fy09mup5x0003"
],
"id": "http://pasture-one-actor/actor/xW8HEIxkdZQ",
"published": "2025-06-16T09:49:26Z",
"content": "without attributedTo"
}
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a92fy09mup5x0003"
],
"id": "http://pasture-one-actor/actor/n8RmMZmyPeU",
"published": "2025-06-16T09:49:37Z",
"object": {
"type": null,
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://misskey/users/a92fy09mup5x0003"
],
"id": "http://pasture-one-actor/actor/urJa_LOHaoI",
"published": "2025-06-16T09:49:37Z",
"content": "without type"
}
}