at.margin.collection
Schema Diff
+3 -3
1
1
{
2
2
"id": "at.margin.collection",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"name",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"icon": {
15
15
"type": "string",
16
-
"maxLength": 10,
17
-
"description": "Emoji icon for the collection",
18
-
"maxGraphemes": 2
16
+
"maxLength": 100,
17
+
"description": "Emoji icon or icon identifier for the collection",
18
+
"maxGraphemes": 100
19
19
},
20
20
"name": {
21
21
"type": "string",
22
22
"maxLength": 100,
23
23
"description": "Collection name",
24
24
"maxGraphemes": 50
25
25
},
26
26
"createdAt": {
27
27
"type": "string",
28
28
"format": "datetime"
29
29
},
30
30
"description": {
31
31
"type": "string",
32
32
"maxLength": 500,
33
33
"description": "Collection description",
34
34
"maxGraphemes": 150
35
35
}
36
36
}
37
37
},
38
38
"description": "A named collection for organizing annotations"
39
39
}
40
40
},
41
41
"$type": "com.atproto.lexicon.schema",
42
42
"lexicon": 1,
43
43
"description": "A collection of annotations (like a folder or notebook)"
44
44
}