atproto blogging
29
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 33 lines 724 B view raw
1{ 2 "lexicon": 1, 3 "id": "sh.weaver.publish.blob", 4 "defs": { 5 "main": { 6 "type": "record", 7 "description": "A simple record referencing a file hosted on a PDS", 8 "key": "tid", 9 "record": { 10 "type": "object", 11 "required": [ 12 "upload", 13 "path" 14 ], 15 "properties": { 16 "path": { 17 "type": "string", 18 "description": "relative path to the blob", 19 "minLength": 1 20 }, 21 "upload": { 22 "type": "blob", 23 "description": "Reference to the uploaded file", 24 "accept": [ 25 "*/*" 26 ], 27 "maxSize": 10000000 28 } 29 } 30 } 31 } 32 } 33}