chat.bsky.actor.declaration
Schema Diff
+9 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "chat.bsky.actor.declaration:body.allowGroupInvites" }
- AddedEdge AddedEdge { src: "chat.bsky.actor.declaration:body", tgt: "chat.bsky.actor.declaration:body.allowGroupInvites", kind: "prop", name: Some("allowGroupInvites") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "chat.bsky.actor.declaration:body.allowGroupInvites" }
Additional Notes
- Non-breaking: AddedEdge { src: "chat.bsky.actor.declaration:body", tgt: "chat.bsky.actor.declaration:body.allowGroupInvites", kind: "prop", name: Some("allowGroupInvites") }
1
1
{
2
2
"id": "chat.bsky.actor.declaration",
3
3
"defs": {
4
4
"main": {
5
5
"key": "literal:self",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"allowIncoming"
11
11
],
12
12
"properties": {
13
13
"allowIncoming": {
14
14
"type": "string",
15
15
"knownValues": [
16
16
"all",
17
17
"none",
18
18
"following"
19
19
]
20
+
},
21
+
"allowGroupInvites": {
22
+
"type": "string",
23
+
"description": "[NOTE: This is under active development and should be considered unstable while this note is here]. Declaration about group chat invitation preferences for the record owner.",
24
+
"knownValues": [
25
+
"all",
26
+
"none",
27
+
"following"
28
+
]
20
29
}
21
30
}
22
31
},
23
32
"description": "A declaration of a Bluesky chat account."
24
33
}
25
34
},
26
35
"$type": "com.atproto.lexicon.schema",
27
36
"lexicon": 1
28
37
}