forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1amends "../../schema/lexicon.pkl"
2
3lexicon = 1
4id = "app.rocksky.googledrive.getFile"
5defs = new Mapping<String, Query> {
6 ["main"] {
7 type = "query"
8 description = "Get a file from Google Drive by its unique identifier"
9 parameters = new Params {
10 required = List("fileId")
11 properties {
12 ["fileId"] = new StringType {
13 description = "The unique identifier of the file to retrieve"
14 }
15 }
16 }
17 output {
18 encoding = "application/json"
19 schema = new Ref {
20 ref = "app.rocksky.googledrive.defs#fileView"
21 }
22 }
23 }
24}