app.didpic.actor.profile
Schema Diff
+5 -0
Compatibility Analysis
Breaking Changes Detected
2 breaking changes, 2 non-breaking changes.
Breaking Changes (2)
- ConstraintAdded ConstraintAdded { vertex_id: "app.didpic.actor.profile:body.pronouns", sort: "maxGraphemes", value: "64" }
- ConstraintAdded ConstraintAdded { vertex_id: "app.didpic.actor.profile:body.pronouns", sort: "maxLength", value: "640" }
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "app.didpic.actor.profile:body.pronouns" }
- AddedEdge AddedEdge { src: "app.didpic.actor.profile:body", tgt: "app.didpic.actor.profile:body.pronouns", kind: "prop", name: Some("pronouns") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "app.didpic.actor.profile:body.pronouns" }
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "app.didpic.actor.profile:body.pronouns", sort: "maxGraphemes", value: "64" }
- ConstraintAdded ConstraintAdded { vertex_id: "app.didpic.actor.profile:body.pronouns", sort: "maxLength", value: "640" }
Additional Notes
- Non-breaking: AddedEdge { src: "app.didpic.actor.profile:body", tgt: "app.didpic.actor.profile:body.pronouns", kind: "prop", name: Some("pronouns") }
1
1
{
2
2
"id": "app.didpic.actor.profile",
3
3
"defs": {
4
4
"main": {
5
5
"key": "literal:self",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"properties": {
10
10
"avatar": {
11
11
"type": "blob",
12
12
"accept": [
13
13
"image/png",
14
14
"image/jpeg"
15
15
],
16
16
"maxSize": 1000000
17
17
},
18
18
"banner": {
19
19
"type": "blob",
20
20
"accept": [
21
21
"image/png",
22
22
"image/jpeg",
23
23
"image/webp"
24
24
],
25
25
"maxSize": 2000000,
26
26
"description": "Cover image shown at the top of the profile."
27
27
},
28
+
"pronouns": {
29
+
"type": "string",
30
+
"maxLength": 640,
31
+
"maxGraphemes": 64
32
+
},
28
33
"createdAt": {
29
34
"type": "string",
30
35
"format": "datetime"
31
36
},
32
37
"description": {
33
38
"type": "string",
34
39
"maxLength": 2560,
35
40
"maxGraphemes": 256
36
41
},
37
42
"displayName": {
38
43
"type": "string",
39
44
"maxLength": 640,
40
45
"maxGraphemes": 64
41
46
}
42
47
}
43
48
},
44
49
"description": "User profile record."
45
50
}
46
51
},
47
52
"$type": "com.atproto.lexicon.schema",
48
53
"lexicon": 1
49
54
}