app.offprint.block.bulletList
Schema Diff
+0 -2
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.offprint.block.bulletList",
3
3
"defs": {
4
4
"main": {
5
5
"type": "object",
6
6
"required": [
7
7
"children"
8
8
],
9
9
"properties": {
10
10
"children": {
11
11
"type": "array",
12
12
"items": {
13
13
"ref": "#listItem",
14
14
"type": "ref"
15
15
},
16
-
"required": true,
17
16
"description": "List items"
18
17
}
19
18
}
20
19
},
21
20
"listItem": {
22
21
"type": "object",
23
22
"required": [
24
23
"content"
25
24
],
26
25
"properties": {
27
26
"content": {
28
27
"ref": "app.offprint.block.text",
29
28
"type": "ref",
30
-
"required": true,
31
29
"description": "Text content of the list item"
32
30
},
33
31
"children": {
34
32
"type": "array",
35
33
"items": {
36
34
"ref": "#listItem",
37
35
"type": "ref"
38
36
},
39
37
"description": "Nested list items"
40
38
}
41
39
}
42
40
}
43
41
},
44
42
"$type": "com.atproto.lexicon.schema",
45
43
"lexicon": 1
46
44
}