9579bec720
* lexicons: update descriptions in com.atproto.* * lexicons: update descriptions in app.bsky.* * Apply suggestions from code review Thanks Emily! Co-authored-by: Emily Liu <emilyliu7321@gmail.com> * codegen description-only Lexicon updates --------- Co-authored-by: Emily Liu <emilyliu7321@gmail.com>
24 lines
641 B
JSON
24 lines
641 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "app.bsky.graph.block",
|
|
"defs": {
|
|
"main": {
|
|
"type": "record",
|
|
"description": "Record declaring a 'block' relationship against another account. NOTE: blocks are public in Bluesky; see blog posts for details.",
|
|
"key": "tid",
|
|
"record": {
|
|
"type": "object",
|
|
"required": ["subject", "createdAt"],
|
|
"properties": {
|
|
"subject": {
|
|
"type": "string",
|
|
"format": "did",
|
|
"description": "DID of the account to be blocked."
|
|
},
|
|
"createdAt": { "type": "string", "format": "datetime" }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|