app.standard-reader.searchPublications
Schema Diff
+8 -4
Compatibility Analysis
Breaking Changes Detected
2 breaking changes, 0 non-breaking changes.
Breaking Changes (2)
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.searchPublications:output.query", sort: "maxLength", value: "256" }
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.searchPublications:output.cursor", sort: "maxLength", value: "8192" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.searchPublications:output.query", sort: "maxLength", value: "256" }
- ConstraintAdded ConstraintAdded { vertex_id: "app.standard-reader.searchPublications:output.cursor", sort: "maxLength", value: "8192" }
1
1
{
2
2
"id": "app.standard-reader.searchPublications",
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
"query",
11
11
"items"
12
12
],
13
13
"properties": {
14
14
"items": {
15
15
"type": "array",
16
16
"items": {
17
17
"ref": "app.standard-reader.defs#publicationView",
18
18
"type": "ref"
19
19
}
20
20
},
21
21
"query": {
22
-
"type": "string"
22
+
"type": "string",
23
+
"maxLength": 256
23
24
},
24
25
"cursor": {
25
26
"type": "string",
26
-
"nullable": true
27
+
"nullable": true,
28
+
"maxLength": 8192
27
29
}
28
30
}
29
31
},
30
32
"encoding": "application/json"
31
33
},
32
34
"parameters": {
33
35
"type": "params",
34
36
"required": [
35
37
"q"
36
38
],
37
39
"properties": {
38
40
"q": {
39
-
"type": "string"
41
+
"type": "string",
42
+
"maxLength": 256
40
43
},
41
44
"limit": {
42
45
"type": "integer",
43
46
"default": 20,
44
47
"maximum": 50,
45
48
"minimum": 1
46
49
},
47
50
"cursor": {
48
-
"type": "string"
51
+
"type": "string",
52
+
"maxLength": 8192
49
53
}
50
54
}
51
55
},
52
56
"description": "Full-text search over indexed publications."
53
57
}
54
58
},
55
59
"$type": "com.atproto.lexicon.schema",
56
60
"lexicon": 1
57
61
}