156 also known as

https://w3id.org/class/redaktor/alsoKnownAs

JSON

Inbox

Definition

The alsoKnownAs relationship indicates that two Actor objects are shared by the same underlying user. However, care should be taken when consuming a document to make sure that the relationship is authorized by all actors involved. For example, if https://example.org/cat has "alsoKnownAs": "https://example.org/dog", then processing systems should also make sure that https://example.org/dog has "alsoKnownAs": "https://example.org/cat" before treating the relationship as valid. If the relationship is reciprocated, then the two actors may be treated as the same person for certain security-sensitive operations.
see socialhub or documentation

Scope Note

: Extension

Example

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Person",
  "id": "https://example.org/cat",
  "name": "Catrina on dot-org"
  "alsoKnownAs": "https://example.com/cat",
}

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "type": "Person",
  "id": "https://example.com/cat",
  "name": "Catrina on dot-com"
  "alsoKnownAs": "https://example.org/cat",
}