Public addressing¶
Public addressing is discussed here. The essential point here is that
Public
, as:Public
, and https://www.w3.org/ns/activitystreams#Public
are equivalent as JSON-LD and thus should be treated in the same way
by Fediverse applications.
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://mbin/u/oscar"
],
"id": "http://pasture-one-actor/activity/W3hiCWExE98",
"published": "2025-10-04T14:41:35Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"https://www.w3.org/ns/activitystreams#Public",
"http://mbin/u/oscar"
],
"id": "http://pasture-one-actor/object/-B2vH6BKzI8",
"published": "2025-10-04T14:41:35Z",
"content": "https://www.w3.org/ns/activitystreams#Public",
"cc": []
}
}
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": [
"as:Public",
"http://mbin/u/oscar"
],
"id": "http://pasture-one-actor/activity/fc5VQvbnoX0",
"published": "2025-10-04T14:41:48Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"as:Public",
"http://mbin/u/oscar"
],
"id": "http://pasture-one-actor/object/v1Qnh1bVMeM",
"published": "2025-10-04T14:41:48Z",
"content": "as:Public",
"cc": []
}
}
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": [
"Public",
"http://mbin/u/oscar"
],
"id": "http://pasture-one-actor/activity/OE0HnrylOJU",
"published": "2025-10-04T14:42:02Z",
"object": {
"type": "Note",
"attributedTo": "http://pasture-one-actor/actor",
"to": [
"Public",
"http://mbin/u/oscar"
],
"id": "http://pasture-one-actor/object/z1b6WrhK-fk",
"published": "2025-10-04T14:42:02Z",
"content": "Public",
"cc": []
}
}