mov.danabra.ProfileTab
Schema Diff
+9 -2
Compatibility Analysis
Breaking Changes Detected
2 breaking changes, 0 non-breaking changes.
Breaking Changes (2)
- ConstraintAdded ConstraintAdded { vertex_id: "mov.danabra.ProfileTab:input.tab", sort: "maxLength", value: "256" }
- ConstraintAdded ConstraintAdded { vertex_id: "mov.danabra.ProfileTab:input.tab", sort: "default", value: "posts_and_author_threads" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "mov.danabra.ProfileTab:input.tab", sort: "maxLength", value: "256" }
- ConstraintAdded ConstraintAdded { vertex_id: "mov.danabra.ProfileTab:input.tab", sort: "default", value: "posts_and_author_threads" }
1
1
{
2
2
"id": "mov.danabra.ProfileTab",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"uri"
11
11
],
12
12
"properties": {
13
13
"tab": {
14
-
"type": "string"
14
+
"type": "string",
15
+
"default": "posts_and_author_threads",
16
+
"maxLength": 256,
17
+
"knownValues": [
18
+
"posts_and_author_threads",
19
+
"posts_and_replies"
20
+
]
15
21
},
16
22
"uri": {
17
23
"type": "string",
18
24
"format": "at-uri"
19
25
},
20
26
"limit": {
21
27
"type": "integer",
22
28
"default": 10
23
29
}
24
30
}
25
31
},
26
32
"encoding": "application/json"
27
33
},
28
34
"output": {
29
35
"schema": {
30
36
"ref": "at.inlay.defs#response",
31
37
"type": "ref"
32
38
},
33
39
"encoding": "application/json"
34
-
}
40
+
},
41
+
"description": "Render a profile tab"
35
42
}
36
43
},
37
44
"$type": "com.atproto.lexicon.schema",
38
45
"lexicon": 1
39
46
}