-
Notifications
You must be signed in to change notification settings - Fork 554
/
defs.json
33 lines (33 loc) · 976 Bytes
/
defs.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"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"
}
}
}
}
}