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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/BM4B1xYrV68",
"published": "2024-11-03T15:02:35Z",
"object": {
"type": "Article",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/N2iQoPUSCoI",
"published": "2024-11-03T15:02:35Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/85XKvBafWfE",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:05Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/7s42V3MtvEo",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:05Z",
"type": "Article",
"attributedTo": "http://pasture-one-actor/actor",
"content": "content",
"summary": "summary"
}
}
hollo
{
"id": "0192f28c-9ef8-7eed-8515-5a44a6a826b9",
"created_at": "2024-11-03T15:02:35.000Z",
"in_reply_to_id": null,
"sensitive": false,
"spoiler_text": "summary",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/N2iQoPUSCoI",
"url": null,
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "content",
"reblog": null,
"quote_id": null,
"quote": null,
"application": null,
"account": {
"id": "0192f28a-d788-75f0-8926-0221de3ee90c",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"bot": false,
"created_at": "2024-11-03T15:00:38.344Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://hollo/image/avatars/original/missing.png",
"avatar_static": "http://hollo/image/avatars/original/missing.png",
"header": "http://hollo/image/headers/original/missing.png",
"header_static": "http://hollo/image/headers/original/missing.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 0,
"moved": null,
"last_status_at": null,
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"emojis": [],
"emoji_reactions": [],
"poll": null,
"filtered": null
}
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://hollo/@john"
],
"id": "http://pasture-one-actor/actor/qnFIWPHekHo",
"published": "2024-11-03T15:02:36Z",
"object": {
"type": "Audio",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/mSjVJ7PcnmE",
"published": "2024-11-03T15:02:36Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/XZ8XQVpy7xc",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:06Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/tAhg-B1dfbM",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:06Z",
"type": "Audio",
"attributedTo": "http://pasture-one-actor/actor",
"content": "content",
"summary": "summary"
}
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/Ad8f2LjGm3Q",
"published": "2024-11-03T15:02:48Z",
"object": {
"type": "Document",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/qaGeS_0n1HM",
"published": "2024-11-03T15:02:48Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/EWd90QS9EBw",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:06Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/jAA6t4dQ8gM",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:06Z",
"type": "Document",
"attributedTo": "http://pasture-one-actor/actor",
"content": "content",
"summary": "summary"
}
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/IFP5vsPDFII",
"published": "2024-11-03T15:03:00Z",
"object": {
"type": "Event",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/Wu8XB3tjlPc",
"published": "2024-11-03T15:03:00Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/kyLvTf6idWU",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:07Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/w--0PamVh08",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:07Z",
"type": "Event",
"attributedTo": "http://pasture-one-actor/actor",
"content": "content",
"summary": "summary"
}
}
no result
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://hollo/@john"
],
"id": "http://pasture-one-actor/actor/be2vHArPYt8",
"published": "2024-11-03T15:03:12Z",
"object": {
"type": "Image",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/29rby4D-t1E",
"published": "2024-11-03T15:03:12Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/H9xVbBldWEU",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:08Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/cDO0fw5VvxI",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:08Z",
"type": "Image",
"attributedTo": "http://pasture-one-actor/actor",
"content": "content",
"summary": "summary"
}
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/EomC7P-TpQ0",
"published": "2024-11-03T15:03:25Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/dfLI5MFBaZA",
"published": "2024-11-03T15:03:25Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/rDMRxcI1SwU",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:08Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/Io6VOP_oayc",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:08Z",
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"content": "content",
"summary": "summary"
}
}
hollo
{
"id": "0192f28d-6248-7dd9-a962-58b3da8adc56",
"created_at": "2024-11-03T15:03:25.000Z",
"in_reply_to_id": null,
"sensitive": false,
"spoiler_text": "summary",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/dfLI5MFBaZA",
"url": null,
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "content",
"reblog": null,
"quote_id": null,
"quote": null,
"application": null,
"account": {
"id": "0192f28a-d788-75f0-8926-0221de3ee90c",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"bot": false,
"created_at": "2024-11-03T15:00:38.344Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://hollo/image/avatars/original/missing.png",
"avatar_static": "http://hollo/image/avatars/original/missing.png",
"header": "http://hollo/image/headers/original/missing.png",
"header_static": "http://hollo/image/headers/original/missing.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 0,
"moved": null,
"last_status_at": null,
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"emojis": [],
"emoji_reactions": [],
"poll": null,
"filtered": null
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/yYU5BKohP0I",
"published": "2024-11-03T15:03:26Z",
"object": {
"type": "Page",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/DhU4ozb51u4",
"published": "2024-11-03T15:03:26Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/Vsffnc43fQk",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:09Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/BCayINzpepQ",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:09Z",
"type": "Page",
"attributedTo": "http://pasture-one-actor/actor",
"content": "content",
"summary": "summary"
}
}
no result
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/ZbAQ5EVtujo",
"published": "2024-11-03T15:03:38Z",
"object": {
"type": "Place",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/EoJrDzG2MuM",
"published": "2024-11-03T15:03:38Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/bwHrsn2yNzo",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:10Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/BYUXAQmLNGQ",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:10Z",
"type": "Place",
"attributedTo": "http://pasture-one-actor/actor",
"content": "content",
"summary": "summary"
}
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/EV4PtgOZVi0",
"published": "2024-11-03T15:03:50Z",
"object": {
"type": "Profile",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/wR41ojEOSKs",
"published": "2024-11-03T15:03:50Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/2Ffh-yrpYWI",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:10Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/MK8VtuPwepw",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:10Z",
"type": "Profile",
"attributedTo": "http://pasture-one-actor/actor",
"content": "content",
"summary": "summary"
}
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/LJrtdCBEKWg",
"published": "2024-11-03T15:04:02Z",
"object": {
"type": "Relationship",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/O5L522fNvbs",
"published": "2024-11-03T15:04:02Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/SBwrWFFBINE",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:11Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/WO_PL4Snz7w",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:11Z",
"type": "Relationship",
"attributedTo": "http://pasture-one-actor/actor",
"content": "content",
"summary": "summary"
}
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/XMbf-AvLAYw",
"published": "2024-11-03T15:04:15Z",
"object": {
"type": "Tombstone",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/BxFe3QPN2yg",
"published": "2024-11-03T15:04:15Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/DcDLF2zoanU",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:12Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/8IUbGOHxRRw",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:12Z",
"type": "Tombstone",
"attributedTo": "http://pasture-one-actor/actor",
"content": "content",
"summary": "summary"
}
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/uXlPUgpattE",
"published": "2024-11-03T15:04:27Z",
"object": {
"type": "Video",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/z0DGsjG3Oyk",
"published": "2024-11-03T15:04:27Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
cattle_grid
{
"field_context": [
"https://www.w3.org/ns/activitystreams",
{
"Hashtag": "as:Hashtag",
"sensitive": "as:sensitive"
}
],
"id": "http://pasture-one-actor/actor/kgJNP0UI36k",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:12Z",
"type": "Create",
"actor": "http://pasture-one-actor/actor",
"object": {
"id": "http://pasture-one-actor/actor/HUTOE_VWD2I",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://cattle_grid/actor/0tVne6n_zxpVEnZifwQ-1Q"
],
"published": "2024-11-02T20:51:12Z",
"type": "Video",
"attributedTo": "http://pasture-one-actor/actor",
"content": "content",
"summary": "summary"
}
}
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": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/AC39_nbwISc",
"published": "2024-11-03T15:04:39Z",
"object": {
"type": [
"Note",
"Article"
],
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/JoaZ0_ykdHw",
"published": "2024-11-03T15:04:39Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
no result
hollo
{
"id": "0192f28e-8358-73e4-bfab-39f665c06546",
"created_at": "2024-11-03T15:04:39.000Z",
"in_reply_to_id": null,
"sensitive": false,
"spoiler_text": "summary",
"visibility": "public",
"language": null,
"uri": "http://pasture-one-actor/actor/JoaZ0_ykdHw",
"url": null,
"replies_count": 0,
"reblogs_count": 0,
"favourites_count": 0,
"favourited": false,
"reblogged": false,
"muted": false,
"bookmarked": false,
"pinned": false,
"content": "content",
"reblog": null,
"quote_id": null,
"quote": null,
"application": null,
"account": {
"id": "0192f28a-d788-75f0-8926-0221de3ee90c",
"username": "actor",
"acct": "actor@pasture-one-actor",
"display_name": "Test Actor",
"locked": false,
"bot": false,
"created_at": "2024-11-03T15:00:38.344Z",
"note": "",
"url": "http://pasture-one-actor/actor",
"avatar": "http://hollo/image/avatars/original/missing.png",
"avatar_static": "http://hollo/image/avatars/original/missing.png",
"header": "http://hollo/image/headers/original/missing.png",
"header_static": "http://hollo/image/headers/original/missing.png",
"followers_count": 0,
"following_count": 0,
"statuses_count": 0,
"moved": null,
"last_status_at": null,
"emojis": [],
"fields": []
},
"media_attachments": [],
"mentions": [],
"tags": [],
"card": null,
"emojis": [],
"emoji_reactions": [],
"poll": null,
"filtered": null
}
Example 14¶
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://hollo/@john"
],
"id": "http://pasture-one-actor/actor/iS7lHuWkErc",
"published": "2024-11-03T15:04:40Z",
"object": {
"type": null,
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://hollo/@john"
],
"id": "http://pasture-one-actor/actor/u8kGm8pEBcE",
"published": "2024-11-03T15:04:40Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://gotosocial/users/cookie"
}
]
}
}
no result
no result