Image sharing backed by ATProto
atproto images gleam

lexicon definition

Signed-off-by: Naomi Roberts <mia@naomieow.xyz>

lesbian.skin 28ecadad c843c1c7

verified
+31 -1
+1 -1
README.md
··· 12 12 ## Roadmap 13 13 - [ ] In-app viewing 14 14 - [ ] Image titles/descriptions 15 - - [ ] Formal Lexicon definitions 15 + - [x] Formal Lexicon definition(s) 16 16 - [ ] Pre-upload previews 17 17 - [ ] Image collections 18 18 - [ ] Bulk uploading
+30
lexicons/image.json
··· 1 + { 2 + "lexicon": 1, 3 + "id": "top.plonk.image", 4 + "defs": { 5 + "main": { 6 + "type": "record", 7 + "description": "A shared image", 8 + "record": { 9 + "type": "object", 10 + "required": ["title", "description", "content", "createdAt"], 11 + "properties": { 12 + "title": { 13 + "type": "string" 14 + } 15 + "description": { 16 + "type": "string" 17 + } 18 + "content": { 19 + "type": "blob" 20 + "accept": ["image/*"] 21 + } 22 + "createdAt": { 23 + "type": "string", 24 + "format": "datetime" 25 + } 26 + } 27 + } 28 + } 29 + } 30 + }