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://misskey/users/a92fy09mup5x0003"
  ],
  "id": "http://pasture-one-actor/actor/pOXpJenOIT0",
  "published": "2025-06-16T09:18:05Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://misskey/users/a92fy09mup5x0003"
    ],
    "id": "http://pasture-one-actor/actor/xZ8shI2FXOA",
    "published": "2025-06-16T09:18:05Z",
    "content": "https://www.w3.org/ns/activitystreams#Public"
  }
}

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://misskey/users/a92fy09mup5x0003"
  ],
  "id": "http://pasture-one-actor/actor/SLFXTWI_rRY",
  "published": "2025-06-16T09:18:15Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "as:Public",
      "http://misskey/users/a92fy09mup5x0003"
    ],
    "id": "http://pasture-one-actor/actor/UvV9WKD4rGc",
    "published": "2025-06-16T09:18:15Z",
    "content": "as:Public"
  }
}

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://misskey/users/a92fy09mup5x0003",
    "Public"
  ],
  "id": "http://pasture-one-actor/actor/O4cRumVDSiQ",
  "published": "2025-06-16T09:18:26Z",
  "object": {
    "type": "Note",
    "attributedTo": "http://pasture-one-actor/actor",
    "to": [
      "Public",
      "http://misskey/users/a92fy09mup5x0003"
    ],
    "id": "http://pasture-one-actor/actor/XNDJ6LSzlV8",
    "published": "2025-06-16T09:18:26Z",
    "content": "Public"
  }
}