app.thesocialwire.publicationPrefs

samclemente.me

Documentation

User-defined display preferences for a discovered standard.site publication. The publication list itself is derived from the user's ATProto follow graph (app.bsky.graph.follow records) — this record stores only the organizational preferences that are not expressed in the protocol: folder assignment, display order, and visibility.

main record

User-defined display preferences for a discovered standard.site publication. The publication list itself is derived from the user's ATProto follow graph (app.bsky.graph.follow records) — this record stores only the organizational preferences that are not expressed in the protocol: folder assignment, display order, and visibility.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

ISO 8601 timestamp when this prefs record was created.

maxLength: 64 bytes
folderId string Optional

The rkey (TID) of the app.thesocialwire.folder record this publication is assigned to. Omit or set to null to leave the publication in 'All Publications'.

maxLength: 512 bytes
hidden boolean Optional

If true, this publication is excluded from the sidebar entirely. Useful for discovered publications the user doesn't want to read.

Default: false
publicationId string Required

The at-uri or canonical URL identifying the publication. Used to correlate this prefs record with a discovered publication.

maxLength: 8192 bytes
sortOrder integer Optional

Position of this publication within its folder (or in 'All Publications' if unfoldered). Lower values appear first.

Default: 0
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "publicationId",
      "createdAt"
    ],
    "properties": {
      "hidden": {
        "type": "boolean",
        "default": false,
        "description": "If true, this publication is excluded from the sidebar entirely. Useful for discovered publications the user doesn't want to read."
      },
      "folderId": {
        "type": "string",
        "maxLength": 512,
        "description": "The rkey (TID) of the app.thesocialwire.folder record this publication is assigned to. Omit or set to null to leave the publication in 'All Publications'."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "maxLength": 64,
        "description": "ISO 8601 timestamp when this prefs record was created."
      },
      "sortOrder": {
        "type": "integer",
        "default": 0,
        "description": "Position of this publication within its folder (or in 'All Publications' if unfoldered). Lower values appear first."
      },
      "publicationId": {
        "type": "string",
        "maxLength": 8192,
        "description": "The at-uri or canonical URL identifying the publication. Used to correlate this prefs record with a discovered publication."
      }
    }
  },
  "description": "User-defined display preferences for a discovered standard.site publication. The publication list itself is derived from the user's ATProto follow graph (app.bsky.graph.follow records) — this record stores only the organizational preferences that are not expressed in the protocol: folder assignment, display order, and visibility."
}

Lexicon Garden

@