net.mimonelu.klearsky.repostMutes

mimonelu.net

Documentation

Klearsky client-specific record that stores a list of DIDs whose reposts should be muted.

main record

Klearsky client-specific record that stores a list of DIDs whose reposts should be muted.

Record Key literal:self Fixed literal value

Properties

createdAt string datetime Required

Timestamp when this record was created (or last rewritten).

subjects array of ref #subject Required

List of subjects (DIDs) whose reposts are muted in this client. Each entry includes when it was added.

View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subjects",
      "createdAt"
    ],
    "properties": {
      "subjects": {
        "type": "array",
        "items": {
          "ref": "#subject",
          "type": "ref"
        },
        "description": "List of subjects (DIDs) whose reposts are muted in this client. Each entry includes when it was added."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when this record was created (or last rewritten)."
      }
    }
  },
  "description": "Klearsky client-specific record that stores a list of DIDs whose reposts should be muted."
}
subject object

A DID added to repost-mute list and the timestamp when it was added.

Properties

createdAt string datetime Required

Timestamp when this DID was added to the mute list.

did string did Required

DID of the user whose reposts are muted.

View raw schema
{
  "type": "object",
  "required": [
    "did",
    "createdAt"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did",
      "description": "DID of the user whose reposts are muted."
    },
    "createdAt": {
      "type": "string",
      "format": "datetime",
      "description": "Timestamp when this DID was added to the mute list."
    }
  },
  "description": "A DID added to repost-mute list and the timestamp when it was added."
}

Lexicon Garden

@