tech.waow.doodl.drawing
Schema Diff
+5 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "tech.waow.doodl.drawing:body.room" }
- AddedEdge AddedEdge { src: "tech.waow.doodl.drawing:body", tgt: "tech.waow.doodl.drawing:body.room", kind: "prop", name: Some("room") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "tech.waow.doodl.drawing:body.room" }
Additional Notes
- Non-breaking: AddedEdge { src: "tech.waow.doodl.drawing:body", tgt: "tech.waow.doodl.drawing:body.room", kind: "prop", name: Some("room") }
1
1
{
2
2
"id": "tech.waow.doodl.drawing",
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
"image",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"name": {
15
15
"type": "string",
16
16
"maxLength": 640,
17
17
"description": "Optional title."
18
18
},
19
+
"room": {
20
+
"type": "string",
21
+
"format": "at-uri",
22
+
"description": "Optional: the tech.waow.doodl.room this drawing is a snapshot of (a doodle drawn together in the open). Additive; existing records stay valid."
23
+
},
19
24
"image": {
20
25
"type": "blob",
21
26
"accept": [
22
27
"image/png"
23
28
],
24
29
"maxSize": 1000000
25
30
},
26
31
"prefs": {
27
32
"type": "unknown",
28
33
"description": "Optional per-drawing preference overrides (open map of key -> value, e.g. explore: hide). Absent = inherit the author's tech.waow.doodl.preferences defaults. Additive: existing records without it stay valid."
29
34
},
30
35
"parent": {
31
36
"ref": "com.atproto.repo.strongRef",
32
37
"type": "ref",
33
38
"description": "Optional immutable parent revision this drawing remixes."
34
39
},
35
40
"source": {
36
41
"type": "blob",
37
42
"accept": [
38
43
"application/vnd.waow.doodl.source+json"
39
44
],
40
45
"maxSize": 1000000,
41
46
"description": "Optional recoverable doodl.delta.v1 source. New records may include it; existing image-only records remain valid."
42
47
},
43
48
"createdAt": {
44
49
"type": "string",
45
50
"format": "datetime"
46
51
}
47
52
}
48
53
},
49
54
"description": "A hand-drawn doodle stored on the author's PDS. Used for gallery art, app icons, anything."
50
55
}
51
56
},
52
57
"$type": "com.atproto.lexicon.schema",
53
58
"lexicon": 1
54
59
}