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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/zy8R0dSO6iE",
"published": "2025-09-09T12:31:06Z",
"object": {
"type": "Article",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/EMZcAdeNiyg",
"published": "2025-09-09T12:31:06Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
pyfedi
{
"id": 174,
"user_id": 2,
"community_id": 1,
"title": "name",
"deleted": false,
"nsfw": false,
"sticky": false,
"published": "2025-09-09T12:31:06.859391Z",
"ap_id": "http://pasture-one-actor/object/EMZcAdeNiyg",
"local": false,
"language_id": 2,
"removed": false,
"locked": false,
"body": "content"
}
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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/rLwUDCVxiMQ",
"published": "2025-09-09T12:31:07Z",
"object": {
"type": "Audio",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/jxtTDJ2_mhg",
"published": "2025-09-09T12:31:07Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/fiTTuwsFtzk",
"published": "2025-09-09T12:31:20Z",
"object": {
"type": "Document",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/1Cb1d8_9IlM",
"published": "2025-09-09T12:31:20Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/nlpOovji3Lo",
"published": "2025-09-09T12:31:32Z",
"object": {
"type": "Event",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/oUNnFxUhgT0",
"published": "2025-09-09T12:31:32Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/fRZs5TyKOUw",
"published": "2025-09-09T12:31:45Z",
"object": {
"type": "Image",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/doobDDhbvrs",
"published": "2025-09-09T12:31:45Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/aZCDnq3dgmY",
"published": "2025-09-09T12:31:58Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/fx-UQSf_6CY",
"published": "2025-09-09T12:31:58Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
pyfedi
{
"id": 175,
"user_id": 2,
"community_id": 1,
"title": "name",
"deleted": false,
"nsfw": false,
"sticky": false,
"published": "2025-09-09T12:31:58.329855Z",
"ap_id": "http://pasture-one-actor/object/fx-UQSf_6CY",
"local": false,
"language_id": 2,
"removed": false,
"locked": false,
"body": "content"
}
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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/15XgX7SFR4U",
"published": "2025-09-09T12:31:58Z",
"object": {
"type": "Page",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/CEuXpfw2wxE",
"published": "2025-09-09T12:31:58Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
pyfedi
{
"id": 176,
"user_id": 2,
"community_id": 1,
"title": "name",
"deleted": false,
"nsfw": false,
"sticky": false,
"published": "2025-09-09T12:31:59.128417Z",
"ap_id": "http://pasture-one-actor/object/CEuXpfw2wxE",
"local": false,
"language_id": 2,
"removed": false,
"locked": false,
"body": "content"
}
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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/XZs1ow0ckn0",
"published": "2025-09-09T12:31:59Z",
"object": {
"type": "Place",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/r-kmwYJbOac",
"published": "2025-09-09T12:31:59Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/gxWFql2pWP4",
"published": "2025-09-09T12:32:12Z",
"object": {
"type": "Profile",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/BbqwhvTH9GA",
"published": "2025-09-09T12:32:12Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/J0cvyGwuXXY",
"published": "2025-09-09T12:32:25Z",
"object": {
"type": "Relationship",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/0wh8Z_vjPlE",
"published": "2025-09-09T12:32:25Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/64sMZ-mLNhM",
"published": "2025-09-09T12:32:37Z",
"object": {
"type": "Tombstone",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/RFMCDCJgD4Y",
"published": "2025-09-09T12:32:37Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/6XGyrJWXzws",
"published": "2025-09-09T12:32:50Z",
"object": {
"type": "Video",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/d5wG9EbYWfU",
"published": "2025-09-09T12:32:50Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/xHKqHXBfnVg",
"published": "2025-09-09T12:33:02Z",
"object": {
"type": [
"Note",
"Article"
],
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/mzvKG1qMkEQ",
"published": "2025-09-09T12:33:02Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
no result
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://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/activity/dGUk1TKV3t4",
"published": "2025-09-09T12:33:15Z",
"object": {
"type": null,
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://pyfedi.local/c/pie"
],
"id": "http://pasture-one-actor/object/hQZa3N071j8",
"published": "2025-09-09T12:33:15Z",
"name": "name",
"summary": "summary",
"content": "content",
"tag": [
{
"type": "Mention",
"href": "http://pyfedi.local/c/pie"
}
]
}
}
no result