at.smiled.reaction
Schema Diff
+9 -4
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "at.smiled.reaction:body.offset" }
- AddedEdge AddedEdge { src: "at.smiled.reaction:body", tgt: "at.smiled.reaction:body.offset", kind: "prop", name: Some("offset") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "at.smiled.reaction:body.offset" }
Additional Notes
- Non-breaking: AddedEdge { src: "at.smiled.reaction:body", tgt: "at.smiled.reaction:body.offset", kind: "prop", name: Some("offset") }
1
1
{
2
2
"id": "at.smiled.reaction",
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
"subject",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"lang": {
15
15
"type": "string",
16
16
"format": "language",
17
17
"description": "An optional language identifier for the comment."
18
18
},
19
19
"emoji": {
20
20
"type": "string",
21
21
"maxLength": 32,
22
22
"minLength": 1,
23
-
"description": "An optional emoji to express instead of the default (😊).",
23
+
"description": "An optional emoji to express instead of the default smile (😊).",
24
24
"maxGraphemes": 1
25
25
},
26
+
"offset": {
27
+
"type": "integer",
28
+
"description": "A time offset (in seconds) for the reaction to use with recorded media"
29
+
},
26
30
"comment": {
27
31
"type": "string",
28
32
"format": "uri",
29
33
"description": "An optional comment to include with the reaction."
30
34
},
31
35
"subject": {
32
36
"type": "string",
33
37
"format": "at-uri",
34
-
"description": "A URI indicating what the record owner is smiling about."
38
+
"description": "A URI indicating the subject of the record owner's reaction."
35
39
},
36
40
"createdAt": {
37
41
"type": "string",
38
42
"format": "datetime",
39
-
"description": "The time when the smile occurred."
43
+
"description": "The time when the reaction occurred or was recorded."
40
44
}
41
45
}
42
46
},
43
47
"description": "Record noting an emoji reaction to something in the atmosphere."
44
48
}
45
49
},
46
50
"$type": "com.atproto.lexicon.schema",
47
-
"lexicon": 1
51
+
"lexicon": 1,
52
+
"description": "Reactions in the atmosphere."
48
53
}