app.standard-reader.createList
Schema Diff
+6 -3
Compatibility Analysis
Breaking Changes Detected
3 breaking changes, 0 non-breaking changes.
Breaking Changes (3)
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.createList:output.rkey", sort: "maxLength", value: "128" }
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.createList:input.description", sort: "maxLength", value: "4096" }
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.createList:input.name", sort: "maxLength", value: "128" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.createList:input.description", sort: "maxLength", value: "4096" }
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.createList:input.name", sort: "maxLength", value: "128" }
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.createList:output.rkey", sort: "maxLength", value: "128" }
1
1
{
2
2
"id": "app.standard-reader.createList",
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
"name",
11
11
"publications"
12
12
],
13
13
"properties": {
14
14
"name": {
15
-
"type": "string"
15
+
"type": "string",
16
+
"maxLength": 128
16
17
},
17
18
"description": {
18
-
"type": "string"
19
+
"type": "string",
20
+
"maxLength": 4096
19
21
},
20
22
"publications": {
21
23
"type": "array",
22
24
"items": {
23
25
"type": "string",
24
26
"format": "at-uri"
25
27
}
26
28
}
27
29
}
28
30
},
29
31
"encoding": "application/json"
30
32
},
31
33
"output": {
32
34
"schema": {
33
35
"type": "object",
34
36
"required": [
35
37
"rkey",
36
38
"uri"
37
39
],
38
40
"properties": {
39
41
"uri": {
40
42
"type": "string",
41
43
"format": "at-uri"
42
44
},
43
45
"rkey": {
44
-
"type": "string"
46
+
"type": "string",
47
+
"maxLength": 128
45
48
}
46
49
}
47
50
},
48
51
"encoding": "application/json"
49
52
},
50
53
"description": "Create a new publication list."
51
54
}
52
55
},
53
56
"$type": "com.atproto.lexicon.schema",
54
57
"lexicon": 1
55
58
}