pub.leaflet.publication
Schema Diff
+4 -0
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 2 non-breaking changes.
Breaking Changes (1)
- ConstraintAdded ConstraintAdded { vertex_id: "pub.leaflet.publication#preferences.showFirstLast", sort: "default", value: "false" }
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "pub.leaflet.publication#preferences.showFirstLast" }
- AddedEdge AddedEdge { src: "pub.leaflet.publication#preferences", tgt: "pub.leaflet.publication#preferences.showFirstLast", kind: "prop", name: Some("showFirstLast") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "pub.leaflet.publication#preferences.showFirstLast" }
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "pub.leaflet.publication#preferences.showFirstLast", sort: "default", value: "false" }
Additional Notes
- Non-breaking: AddedEdge { src: "pub.leaflet.publication#preferences", tgt: "pub.leaflet.publication#preferences.showFirstLast", kind: "prop", name: Some("showFirstLast") }
1
1
{
2
2
"id": "pub.leaflet.publication",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"name"
11
11
],
12
12
"properties": {
13
13
"icon": {
14
14
"type": "blob",
15
15
"accept": [
16
16
"image/*"
17
17
],
18
18
"maxSize": 1000000
19
19
},
20
20
"name": {
21
21
"type": "string",
22
22
"maxLength": 2000
23
23
},
24
24
"theme": {
25
25
"ref": "#theme",
26
26
"type": "ref"
27
27
},
28
28
"base_path": {
29
29
"type": "string"
30
30
},
31
31
"description": {
32
32
"type": "string",
33
33
"maxLength": 2000
34
34
},
35
35
"preferences": {
36
36
"ref": "#preferences",
37
37
"type": "ref"
38
38
}
39
39
}
40
40
},
41
41
"description": "Record declaring a publication"
42
42
},
43
43
"theme": {
44
44
"type": "object",
45
45
"properties": {
46
46
"primary": {
47
47
"refs": [
48
48
"pub.leaflet.theme.color#rgba",
49
49
"pub.leaflet.theme.color#rgb"
50
50
],
51
51
"type": "union"
52
52
},
53
53
"bodyFont": {
54
54
"type": "string",
55
55
"maxLength": 100
56
56
},
57
57
"wordmark": {
58
58
"ref": "pub.leaflet.theme.wordmark",
59
59
"type": "ref"
60
60
},
61
61
"pageWidth": {
62
62
"type": "integer",
63
63
"maximum": 1600,
64
64
"minimum": 0
65
65
},
66
66
"accentText": {
67
67
"refs": [
68
68
"pub.leaflet.theme.color#rgba",
69
69
"pub.leaflet.theme.color#rgb"
70
70
],
71
71
"type": "union"
72
72
},
73
73
"headingFont": {
74
74
"type": "string",
75
75
"maxLength": 100
76
76
},
77
77
"pageBackground": {
78
78
"refs": [
79
79
"pub.leaflet.theme.color#rgba",
80
80
"pub.leaflet.theme.color#rgb"
81
81
],
82
82
"type": "union"
83
83
},
84
84
"backgroundColor": {
85
85
"refs": [
86
86
"pub.leaflet.theme.color#rgba",
87
87
"pub.leaflet.theme.color#rgb"
88
88
],
89
89
"type": "union"
90
90
},
91
91
"backgroundImage": {
92
92
"ref": "pub.leaflet.theme.backgroundImage",
93
93
"type": "ref"
94
94
},
95
95
"accentBackground": {
96
96
"refs": [
97
97
"pub.leaflet.theme.color#rgba",
98
98
"pub.leaflet.theme.color#rgb"
99
99
],
100
100
"type": "union"
101
101
},
102
102
"showPageBackground": {
103
103
"type": "boolean",
104
104
"default": false
105
105
}
106
106
}
107
107
},
108
108
"preferences": {
109
109
"type": "object",
110
110
"properties": {
111
111
"showComments": {
112
112
"type": "boolean",
113
113
"default": true
114
114
},
115
115
"showMentions": {
116
116
"type": "boolean",
117
117
"default": true
118
118
},
119
119
"showPrevNext": {
120
120
"type": "boolean",
121
121
"default": true
122
122
},
123
+
"showFirstLast": {
124
+
"type": "boolean",
125
+
"default": false
126
+
},
123
127
"showInDiscover": {
124
128
"type": "boolean",
125
129
"default": true
126
130
},
127
131
"showRecommends": {
128
132
"type": "boolean",
129
133
"default": true
130
134
}
131
135
}
132
136
}
133
137
},
134
138
"$type": "com.atproto.lexicon.schema",
135
139
"lexicon": 1
136
140
}