at main 28 lines 667 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": ["upload", "path"], 12 "properties": { 13 "path": { 14 "type": "string", 15 "description": "relative path to the blob", 16 "minLength": 1 17 }, 18 "upload": { 19 "type": "blob", 20 "description": "Reference to the uploaded file", 21 "accept": ["*/*"], 22 "maxSize": 10000000 23 } 24 } 25 } 26 } 27 } 28}