social.bragsheet.entry
Schema Diff
+3 -2
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.bragsheet.entry",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"properties": {
10
10
"period": {
11
11
"type": "string",
12
-
"format": "datetime",
13
-
"description": "Free form string representing the date range (from-to), MM/YYYY, or YYYY. "
12
+
"maxLegth": 5000,
13
+
"description": "Free form string representing the date range (from-to), MM/YYYY, or YYYY. ",
14
+
"maxGraphenes": 500
14
15
},
15
16
"content": {
16
17
"type": "blob",
17
18
"accept": [
18
19
"text/plain",
19
20
"text/markdown"
20
21
],
21
22
"maxSize": 1000000,
22
23
"description": "The content of the post"
23
24
},
24
25
"entryType": {
25
26
"type": "string",
26
27
"maxLength": 500,
27
28
"knownValues": [
28
29
"academic",
29
30
"professional",
30
31
"personal"
31
32
],
32
33
"maxGraphemes": 50
33
34
},
34
35
"updatedAt": {
35
36
"type": "string",
36
37
"format": "datetime",
37
38
"description": "Timestamp of the entry's last edit."
38
39
},
39
40
"publishedAt": {
40
41
"type": "string",
41
42
"format": "datetime",
42
43
"description": "Timestamp of the entry's publish time."
43
44
}
44
45
}
45
46
},
46
47
"description": "A record representing an entry in a bragsheet"
47
48
}
48
49
},
49
50
"$type": "com.atproto.lexicon.schema",
50
51
"lexicon": 1
51
52
}