games.gamesgamesgamesgames.redirect

lexicon.store View official

Documentation

A redirect mapping a source AT URI to a target AT URI after migration.

main record

A redirect mapping a source AT URI to a target AT URI after migration.

Record Key tid Timestamp-based ID

Properties

collection string nsid Required

A namespaced identifier (e.g., app.bsky.feed.post).

createdAt string datetime Required

An RFC 3339 formatted timestamp.

sourceUri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

targetUri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "sourceUri",
      "targetUri",
      "collection",
      "createdAt"
    ],
    "properties": {
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "sourceUri": {
        "type": "string",
        "format": "at-uri"
      },
      "targetUri": {
        "type": "string",
        "format": "at-uri"
      },
      "collection": {
        "type": "string",
        "format": "nsid"
      }
    }
  },
  "description": "A redirect mapping a source AT URI to a target AT URI after migration."
}

Lexicon Garden

@