A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/feed-generator 29 lines 639 B view raw
1{ 2 "lexicon": 1, 3 "id": "app.rocksky.dropbox.getMetadata", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Retrieve metadata of a file or folder in Dropbox", 8 "parameters": { 9 "type": "params", 10 "required": [ 11 "path" 12 ], 13 "properties": { 14 "path": { 15 "type": "string", 16 "description": "Path to the file or folder in Dropbox" 17 } 18 } 19 }, 20 "output": { 21 "encoding": "application/json", 22 "schema": { 23 "type": "ref", 24 "ref": "app.rocksky.dropbox.defs#fileView" 25 } 26 } 27 } 28 } 29}