app.certified.actor.profile
Schema Diff
+5 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 4 non-breaking changes.
Non-Breaking Changes (4)
- AddedVertex AddedVertex { vertex_id: "app.certified.actor.profile:body.signatures" }
- AddedVertex AddedVertex { vertex_id: "app.certified.signature.defs#list" }
- AddedEdge AddedEdge { src: "app.certified.actor.profile:body", tgt: "app.certified.actor.profile:body.signatures", kind: "prop", name: Some("signatures") }
- AddedEdge AddedEdge { src: "app.certified.actor.profile:body.signatures", tgt: "app.certified.signature.defs#list", kind: "ref", name: None }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "app.certified.actor.profile:body.signatures" }AddedVertex { vertex_id: "app.certified.signature.defs#list" }
Additional Notes
- Non-breaking: AddedEdge { src: "app.certified.actor.profile:body", tgt: "app.certified.actor.profile:body.signatures", kind: "prop", name: Some("signatures") }
- Non-breaking: AddedEdge { src: "app.certified.actor.profile:body.signatures", tgt: "app.certified.signature.defs#list", kind: "ref", name: None }
1
1
{
2
2
"id": "app.certified.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
"required": [
10
10
"createdAt"
11
11
],
12
12
"properties": {
13
13
"avatar": {
14
14
"refs": [
15
15
"org.hypercerts.defs#uri",
16
16
"org.hypercerts.defs#smallImage"
17
17
],
18
18
"type": "union",
19
19
"description": "Small image to be displayed next to posts from account. AKA, 'profile picture'"
20
20
},
21
21
"banner": {
22
22
"refs": [
23
23
"org.hypercerts.defs#uri",
24
24
"org.hypercerts.defs#largeImage"
25
25
],
26
26
"type": "union",
27
27
"description": "Larger horizontal image to display behind profile view."
28
28
},
29
29
"website": {
30
30
"type": "string",
31
31
"format": "uri",
32
32
"description": "Account website URL"
33
33
},
34
34
"pronouns": {
35
35
"type": "string",
36
36
"maxLength": 200,
37
37
"description": "Free-form pronouns text.",
38
38
"maxGraphemes": 20
39
39
},
40
40
"createdAt": {
41
41
"type": "string",
42
42
"format": "datetime",
43
43
"description": "Client-declared timestamp when this record was originally created"
44
44
},
45
+
"signatures": {
46
+
"ref": "app.certified.signature.defs#list",
47
+
"type": "ref",
48
+
"description": "Optional cryptographic signatures attesting to this record's content."
49
+
},
45
50
"description": {
46
51
"type": "string",
47
52
"maxLength": 2560,
48
53
"description": "Free-form profile description text.",
49
54
"maxGraphemes": 256
50
55
},
51
56
"displayName": {
52
57
"type": "string",
53
58
"maxLength": 640,
54
59
"description": "Display name for the account",
55
60
"maxGraphemes": 64
56
61
}
57
62
}
58
63
},
59
64
"description": "A declaration of a Certified account profile."
60
65
}
61
66
},
62
67
"$type": "com.atproto.lexicon.schema",
63
68
"lexicon": 1
64
69
}