atproto blogging
1{
2 "lexicon": 1,
3 "id": "blog.pckt.block.website",
4 "description": "A website link preview with title, description, and optional preview image",
5 "defs": {
6 "main": {
7 "type": "object",
8 "required": [
9 "src"
10 ],
11 "properties": {
12 "description": {
13 "type": "string",
14 "description": "A brief description of the website or page"
15 },
16 "previewImage": {
17 "type": "string",
18 "description": "URL of the preview image",
19 "format": "uri"
20 },
21 "src": {
22 "type": "string",
23 "description": "The URL of the website",
24 "format": "uri"
25 },
26 "title": {
27 "type": "string",
28 "description": "The title of the website or page"
29 }
30 }
31 }
32 }
33}