d32f7215f6
* wip * schema tweaks * room -> chat * missed one * missed another * deleted messages + incoming message settings * add schemas for blocking users * chat update schemas * make updateUserSettings more generic * fix dangling ref * fix dangling refs * mute chats & leave chats * schema consistency, naming * lexicon for updating chat read state * dm lexicon updates, add batch send endpoint * dm sender on deleted message * Add codegen for temp lex * lexicon: switch temp.dm to chat.bsky namespace, misc fixes * lexicon: codegen * lexicon: fix some chat/convo terminology * lexicon: codegen * moderator schemas * codegen * lexicon: consistency in chat lexicons * lexicon: add chat to associated profile info * add ref to updateActorAccess * add annotation on convoView for disabled members * codegen * remove dm references from ozone schemas * lexicon: chat account deletion, data export, and profile state * lexicon typo * lexicon typo * lexicon: mark chat senders as required * add changeset * appview: proper support for chat.bsky lexicons --------- Co-authored-by: dholms <dtholmgren@gmail.com> Co-authored-by: Eric Bailey <git@esb.lol>
34 lines
976 B
JSON
34 lines
976 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "chat.bsky.actor.defs",
|
|
"defs": {
|
|
"profileViewBasic": {
|
|
"type": "object",
|
|
"required": ["did", "handle"],
|
|
"properties": {
|
|
"did": { "type": "string", "format": "did" },
|
|
"handle": { "type": "string", "format": "handle" },
|
|
"displayName": {
|
|
"type": "string",
|
|
"maxGraphemes": 64,
|
|
"maxLength": 640
|
|
},
|
|
"avatar": { "type": "string", "format": "uri" },
|
|
"associated": {
|
|
"type": "ref",
|
|
"ref": "app.bsky.actor.defs#profileAssociated"
|
|
},
|
|
"viewer": { "type": "ref", "ref": "app.bsky.actor.defs#viewerState" },
|
|
"labels": {
|
|
"type": "array",
|
|
"items": { "type": "ref", "ref": "com.atproto.label.defs#label" }
|
|
},
|
|
"chatDisabled": {
|
|
"type": "boolean",
|
|
"description": "Set to true when the actor cannot actively participate in converations"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|