Skip to content

app.bsky.graph.listblock

Lexicon Version: 1

Type: record

Record representing a block relationship against an entire an entire list of accounts (actors).

Record Key: tid

Record Properties:

NameTypeReq’dDescriptionConstraints
subjectstringReference (AT-URI) to the mod list record.Format: at-uri
createdAtstringFormat: datetime

{
"lexicon": 1,
"id": "app.bsky.graph.listblock",
"defs": {
"main": {
"type": "record",
"description": "Record representing a block relationship against an entire an entire list of accounts (actors).",
"key": "tid",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"subject": {
"type": "string",
"format": "at-uri",
"description": "Reference (AT-URI) to the mod list record."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}
}
}