Skip to content

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/actor/oxojTRndYiM",
  "published": "2025-03-07T12:30:48Z",
  "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/actor/w-uv7OS_STU",
    "published": "2025-03-07T12:30:48Z",
    "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/actor/PugmXCCbQuk",
  "published": "2025-03-07T12:31:01Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "as:Public",
      "http://mbin/u/oscar"
    ],
    "id": "http://pasture-one-actor/actor/XwGYZG5004k",
    "published": "2025-03-07T12:31:01Z",
    "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/actor/EHIKv6aWdmE",
  "published": "2025-03-07T12:31:15Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "Public",
      "http://mbin/u/oscar"
    ],
    "id": "http://pasture-one-actor/actor/sJyY0q6hJUI",
    "published": "2025-03-07T12:31:15Z",
    "content": "Public",
    "cc": []
  }
}