[WIP] A (somewhat barebones) atproto app for creating custom sites without hosting!
at main 664 B view raw
1{ 2 "lexicon": 1, 3 "id": "dev.atcities.route", 4 "description": "Define the route for a given page. Page content is a blob", 5 "defs": { 6 "main": { 7 "type": "record", 8 "description": "Page URL maps directly to a record key", 9 "key": "any", 10 "record": { 11 "type": "object", 12 "properties": { 13 "page": { 14 "type": "union", 15 "refs": ["#blob"] 16 } 17 }, 18 "required": ["page"] 19 } 20 }, 21 22 "blob": { 23 "type": "object", 24 "properties": { 25 "blob": { 26 "type": "blob", 27 "accept": ["*/*"] 28 } 29 }, 30 "required": ["blob"] 31 } 32 } 33}