pub.leaflet.document
Schema Diff
+4 -4
1
1
{
2
2
"id": "pub.leaflet.document",
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
"pages",
11
11
"author",
12
12
"title"
13
13
],
14
14
"properties": {
15
15
"tags": {
16
16
"type": "array",
17
17
"items": {
18
18
"type": "string",
19
19
"maxLength": 50
20
20
}
21
21
},
22
22
"pages": {
23
23
"type": "array",
24
24
"items": {
25
25
"refs": [
26
26
"pub.leaflet.pages.linearDocument",
27
27
"pub.leaflet.pages.canvas"
28
28
],
29
29
"type": "union"
30
30
}
31
31
},
32
32
"theme": {
33
33
"ref": "pub.leaflet.publication#theme",
34
34
"type": "ref"
35
35
},
36
36
"title": {
37
37
"type": "string",
38
-
"maxLength": 1280,
39
-
"maxGraphemes": 128
38
+
"maxLength": 5000,
39
+
"maxGraphemes": 500
40
40
},
41
41
"author": {
42
42
"type": "string",
43
43
"format": "at-identifier"
44
44
},
45
45
"postRef": {
46
46
"ref": "com.atproto.repo.strongRef",
47
47
"type": "ref"
48
48
},
49
49
"coverImage": {
50
50
"type": "blob",
51
51
"accept": [
52
52
"image/png",
53
53
"image/jpeg",
54
54
"image/webp"
55
55
],
56
56
"maxSize": 1000000
57
57
},
58
58
"description": {
59
59
"type": "string",
60
-
"maxLength": 3000,
61
-
"maxGraphemes": 300
60
+
"maxLength": 30000,
61
+
"maxGraphemes": 3000
62
62
},
63
63
"publication": {
64
64
"type": "string",
65
65
"format": "at-uri"
66
66
},
67
67
"publishedAt": {
68
68
"type": "string",
69
69
"format": "datetime"
70
70
}
71
71
}
72
72
},
73
73
"description": "Record containing a document"
74
74
}
75
75
},
76
76
"$type": "com.atproto.lexicon.schema",
77
77
"lexicon": 1,
78
78
"revision": 1,
79
79
"description": "A lexicon for long form rich media documents"
80
80
}