atproto blogging
at main 45 lines 845 B view raw
1{ 2 "lexicon": 1, 3 "id": "pub.leaflet.blocks.image", 4 "defs": { 5 "aspectRatio": { 6 "type": "object", 7 "required": [ 8 "width", 9 "height" 10 ], 11 "properties": { 12 "height": { 13 "type": "integer" 14 }, 15 "width": { 16 "type": "integer" 17 } 18 } 19 }, 20 "main": { 21 "type": "object", 22 "required": [ 23 "image", 24 "aspectRatio" 25 ], 26 "properties": { 27 "alt": { 28 "type": "string", 29 "description": "Alt text description of the image, for accessibility." 30 }, 31 "aspectRatio": { 32 "type": "ref", 33 "ref": "#aspectRatio" 34 }, 35 "image": { 36 "type": "blob", 37 "accept": [ 38 "image/*" 39 ], 40 "maxSize": 1000000 41 } 42 } 43 } 44 } 45}