app.navyfragen.message
Schema Diff
+2 -1
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 0 non-breaking changes.
Breaking Changes (1)
- ConstraintAdded ConstraintAdded { vertex_id: "app.navyfragen.message:body.recipient", sort: "format", value: "did" }
Migration Guidance
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "app.navyfragen.message:body.recipient", sort: "format", value: "did" }
1
1
{
2
2
"id": "app.navyfragen.message",
3
3
"defs": {
4
4
"main": {
5
5
"key": "any",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"message",
11
11
"createdAt",
12
12
"recipient"
13
13
],
14
14
"properties": {
15
15
"message": {
16
16
"type": "string",
17
17
"maxLength": 500,
18
18
"minLength": 1
19
19
},
20
20
"createdAt": {
21
21
"type": "string",
22
22
"format": "datetime"
23
23
},
24
24
"recipient": {
25
-
"type": "string"
25
+
"type": "string",
26
+
"format": "did"
26
27
}
27
28
}
28
29
}
29
30
}
30
31
},
31
32
"$type": "com.atproto.lexicon.schema",
32
33
"lexicon": 1,
33
34
"description": "Anonymous messages sent to a recipient on Bluesky."
34
35
}