app.userinput.visited

userinput.app

Documentation

A private-ish bookmark marking a space the author has visited, written to the author's own repo. The record key matches the visited space's record key, so re-visiting overwrites the same record (one per space). Used to populate the author's 'boards you've visited' list quickly, ordered by lastVisited.

main record

A private-ish bookmark marking a space the author has visited, written to the author's own repo. The record key matches the visited space's record key, so re-visiting overwrites the same record (one per space). Used to populate the author's 'boards you've visited' list quickly, ordered by lastVisited.

Record Key any Any valid record key

Properties

firstVisited string datetime Required

When the author first visited this space. Preserved across re-visits.

lastVisited string datetime Required

When the author most recently visited this space. Bumped on every recorded visit; the 'boards you've visited' list sorts by this.

space ref com.atproto.repo.strongRef Required

The visited space. Carries the full identity (owner DID + rkey + cid); the record key alone is only a dedup key.

View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "space",
      "firstVisited",
      "lastVisited"
    ],
    "properties": {
      "space": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "The visited space. Carries the full identity (owner DID + rkey + cid); the record key alone is only a dedup key."
      },
      "lastVisited": {
        "type": "string",
        "format": "datetime",
        "description": "When the author most recently visited this space. Bumped on every recorded visit; the 'boards you've visited' list sorts by this."
      },
      "firstVisited": {
        "type": "string",
        "format": "datetime",
        "description": "When the author first visited this space. Preserved across re-visits."
      }
    }
  },
  "description": "A private-ish bookmark marking a space the author has visited, written to the author's own repo. The record key matches the visited space's record key, so re-visiting overwrites the same record (one per space). Used to populate the author's 'boards you've visited' list quickly, ordered by lastVisited."
}

Lexicon Garden

@