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."
}