app.beaconbits.favorites

beaconbits.app

Documentation

A list of favorited user DIDs (legacy singleton record).

main record

A list of favorited user DIDs (legacy singleton record).

Record Key literal:self Fixed literal value

Properties

dids array of string did Required

List of favorited user DIDs

maxLength: 500 items
updatedAt string datetime Required

Timestamp when the favorites list was last updated

View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "dids",
      "updatedAt"
    ],
    "properties": {
      "dids": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "did"
        },
        "maxLength": 500,
        "description": "List of favorited user DIDs"
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the favorites list was last updated"
      }
    }
  },
  "description": "A list of favorited user DIDs (legacy singleton record)."
}

Lexicon Garden

@