info.charlebois.user.profile
Schema Diff
+4 -2
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "info.charlebois.user.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
"bio": {
14
14
"type": "string",
15
15
"maxLength": 2560,
16
16
"maxGraphemes": 256
17
17
},
18
18
"avatar": {
19
19
"type": "blob",
20
20
"accept": [
21
21
"image/jpeg",
22
22
"image/png",
23
23
"image/webp"
24
24
],
25
25
"maxSize": 1000000
26
26
},
27
27
"createdAt": {
28
28
"type": "string",
29
29
"format": "datetime"
30
30
},
31
31
"displayName": {
32
32
"type": "string",
33
33
"maxLength": 640,
34
34
"maxGraphemes": 64
35
35
}
36
36
}
37
-
}
37
+
},
38
+
"description": "Main definition for a user profile"
38
39
}
39
40
},
40
41
"$type": "com.atproto.lexicon.schema",
41
-
"lexicon": 1
42
+
"lexicon": 1,
43
+
"description": "User profile metadata for 9-16.lol"
42
44
}