app.standard-reader.getList
Schema Diff
+4 -2
Compatibility Analysis
Breaking Changes Detected
2 breaking changes, 0 non-breaking changes.
Breaking Changes (2)
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.getList:output.name", sort: "maxLength", value: "128" }
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.getList:output.description", sort: "maxLength", value: "4096" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.getList:output.name", sort: "maxLength", value: "128" }
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.getList:output.description", sort: "maxLength", value: "4096" }
1
1
{
2
2
"id": "app.standard-reader.getList",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"name",
11
11
"publications"
12
12
],
13
13
"properties": {
14
14
"uri": {
15
15
"type": "string",
16
16
"format": "at-uri"
17
17
},
18
18
"name": {
19
-
"type": "string"
19
+
"type": "string",
20
+
"maxLength": 128
20
21
},
21
22
"description": {
22
23
"type": "string",
23
-
"nullable": true
24
+
"nullable": true,
25
+
"maxLength": 4096
24
26
},
25
27
"publications": {
26
28
"type": "array",
27
29
"items": {
28
30
"ref": "app.standard-reader.defs#publicationView",
29
31
"type": "ref"
30
32
}
31
33
}
32
34
}
33
35
},
34
36
"encoding": "application/json"
35
37
},
36
38
"parameters": {
37
39
"type": "params",
38
40
"required": [
39
41
"list"
40
42
],
41
43
"properties": {
42
44
"list": {
43
45
"type": "string",
44
46
"format": "at-uri"
45
47
}
46
48
}
47
49
},
48
50
"description": "Public metadata and member publications for an app.standard-reader.list AT-URI."
49
51
}
50
52
},
51
53
"$type": "com.atproto.lexicon.schema",
52
54
"lexicon": 1
53
55
}