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