at.askimut.profile
Schema Diff
+5 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "at.askimut.profile:body.maxPendingPerAsker" }
- AddedEdge AddedEdge { src: "at.askimut.profile:body", tgt: "at.askimut.profile:body.maxPendingPerAsker", kind: "prop", name: Some("maxPendingPerAsker") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "at.askimut.profile:body.maxPendingPerAsker" }
Additional Notes
- Non-breaking: AddedEdge { src: "at.askimut.profile:body", tgt: "at.askimut.profile:body.maxPendingPerAsker", kind: "prop", name: Some("maxPendingPerAsker") }
1
1
{
2
2
"id": "at.askimut.profile",
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
"questionsOpen"
11
11
],
12
12
"properties": {
13
13
"avatar": {
14
14
"type": "blob",
15
15
"accept": [
16
16
"image/png",
17
17
"image/jpeg",
18
18
"image/gif",
19
19
"image/webp"
20
20
],
21
21
"maxSize": 1000000,
22
22
"description": "Profile avatar image"
23
23
},
24
24
"description": {
25
25
"type": "string",
26
26
"maxLength": 300,
27
27
"description": "Profile description or bio"
28
28
},
29
29
"displayName": {
30
30
"type": "string",
31
31
"maxLength": 64,
32
32
"description": "Display name for the user"
33
33
},
34
34
"questionsOpen": {
35
35
"type": "boolean",
36
36
"description": "Whether the user is accepting questions"
37
37
},
38
38
"amaTagDiscovery": {
39
39
"type": "boolean",
40
40
"description": "Discover AMA Roots from first-level posts tagged #AMA (facet only)"
41
41
},
42
42
"amaUrlDiscovery": {
43
43
"type": "boolean",
44
44
"description": "Discover AMA Roots from first-level posts linking this user's Askimut profile"
45
+
},
46
+
"maxPendingPerAsker": {
47
+
"type": "integer",
48
+
"minimum": 0,
49
+
"description": "Maximum concurrent pending questions per asker; 0 = unlimited; default 1 when absent"
45
50
}
46
51
}
47
52
}
48
53
}
49
54
},
50
55
"$type": "com.atproto.lexicon.schema",
51
56
"lexicon": 1
52
57
}