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/pTuXep5OMeY",
  "published": "2025-07-15T10:13:42Z",
  "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/GZ3QY-lNUzs",
    "published": "2025-07-15T10:13:42Z",
    "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": [
    "http://mbin/u/oscar",
    "as:Public"
  ],
  "id": "http://pasture-one-actor/actor/_J37HIScgNk",
  "published": "2025-07-15T10:13:55Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "as:Public",
      "http://mbin/u/oscar"
    ],
    "id": "http://pasture-one-actor/actor/GtyC9fWLBSw",
    "published": "2025-07-15T10:13:55Z",
    "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": [
    "http://mbin/u/oscar",
    "Public"
  ],
  "id": "http://pasture-one-actor/actor/IdcvVfP82NM",
  "published": "2025-07-15T10:14:08Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "Public",
      "http://mbin/u/oscar"
    ],
    "id": "http://pasture-one-actor/actor/MI8svW2uvJo",
    "published": "2025-07-15T10:14:08Z",
    "content": "Public",
    "cc": []
  }
}