Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Represents a unique identifier for a person. Statements that use these identifiers are linked to the persona that the identifier belongs to.

It is accessible through the following HTTP interfaces:

...

Name

Description

_id

The id of this identifier.

organisation

The id of the organisation this identifier belongs to.

persona

The id of the persona this identifier belongs to.

ifi

A representation of the inverse functional identifier.

EXAMPLE

Code Block
{
  "_id" : "59c1219936229d4ce9634601",
  "organisation" : "59c1219936229d4ce9634602",
  "persona": "59c1219936229d4ce9634603",
  "ifi": {
    "key": "account",
    "value": {
      "homePage": "http://www.example.org",
      "name": "example-user"
    }
  }
}

...

Name

Description

key

The type of IFI (accountmboxmbox_sha1sum, or openid).

value

The value of the IFI.

...