A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at fix/spotify 25 lines 578 B view raw
1amends "../../schema/lexicon.pkl" 2 3lexicon = 1 4id = "app.rocksky.dropbox.getMetadata" 5defs = new Mapping<String, Query> { 6 ["main"] { 7 type = "query" 8 description = "Retrieve metadata of a file or folder in Dropbox" 9 parameters { 10 required = List("path") 11 properties { 12 ["path"] = new StringType { 13 description = "Path to the file or folder in Dropbox" 14 } 15 } 16 } 17 output { 18 encoding = "application/json" 19 schema = new Ref { 20 type = "ref" 21 ref = "app.rocksky.dropbox.defs#fileView" 22 } 23 } 24 } 25}