atproto blogging
1{
2 "lexicon": 1,
3 "id": "blog.pckt.block.paragraph",
4 "description": "A paragraph block containing inline text content with optional formatting. Paragraphs are the basic unit of text content in documents.",
5 "defs": {
6 "main": {
7 "type": "object",
8 "properties": {
9 "content": {
10 "type": "array",
11 "description": "Array of inline content nodes (text, hard breaks, and mentions)",
12 "items": {
13 "type": "union",
14 "refs": [
15 "blog.pckt.block.text",
16 "blog.pckt.block.hardBreak",
17 "blog.pckt.block.mention"
18 ],
19 "closed": false
20 }
21 },
22 "facets": {
23 "type": "array",
24 "description": "Facets for text formatting and features within this paragraph",
25 "items": {
26 "type": "ref",
27 "ref": "blog.pckt.richtext.facet"
28 }
29 }
30 }
31 }
32 }
33}