is.logue.logue
Schema Diff
+8 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "is.logue.logue:body.coverImage" }
- AddedEdge AddedEdge { src: "is.logue.logue:body", tgt: "is.logue.logue:body.coverImage", kind: "prop", name: Some("coverImage") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "is.logue.logue:body.coverImage" }
Additional Notes
- Non-breaking: AddedEdge { src: "is.logue.logue:body", tgt: "is.logue.logue:body.coverImage", kind: "prop", name: Some("coverImage") }
1
1
{
2
2
"id": "is.logue.logue",
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
"publication"
11
11
],
12
12
"properties": {
13
13
"tags": {
14
14
"type": "array",
15
15
"items": {
16
16
"type": "string",
17
17
"maxLength": 1280,
18
18
"maxGraphemes": 128
19
19
},
20
20
"description": "Array of strings used to tag or categorize the document. Avoid prepending tags with hashtags."
21
21
},
22
22
"startedAt": {
23
23
"type": "string",
24
24
"format": "datetime",
25
25
"description": "Timestamp when the logue was started."
26
26
},
27
+
"coverImage": {
28
+
"type": "blob",
29
+
"accept": [
30
+
"image/*"
31
+
],
32
+
"maxSize": 2000000,
33
+
"description": "Image to used for thumbnail or cover image. Less than 2MB is size."
34
+
},
27
35
"finishedAt": {
28
36
"type": "string",
29
37
"format": "datetime",
30
38
"description": "Timestamp when the logue was marked as finished."
31
39
},
32
40
"publication": {
33
41
"type": "string",
34
42
"format": "at-uri",
35
43
"required": true,
36
44
"description": "Weak reference to a `site.standard.publication` compatible record."
37
45
}
38
46
}
39
47
}
40
48
}
41
49
},
42
50
"$type": "com.atproto.lexicon.schema",
43
51
"lexicon": 1
44
52
}