forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1{
2 "lexicon": 1,
3 "id": "app.rocksky.apikey.getApikeys",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Get a list of API keys for the authenticated user",
8 "parameters": {
9 "type": "params",
10 "properties": {
11 "offset": {
12 "type": "integer",
13 "description": "The number of API keys to skip before starting to collect the result set."
14 },
15 "limit": {
16 "type": "integer",
17 "description": "The number of API keys to return per page."
18 }
19 }
20 },
21 "output": {
22 "encoding": "application/json",
23 "schema": {
24 "type": "object",
25 "properties": {
26 "apiKeys": {
27 "type": "array",
28 "items": {
29 "type": "ref",
30 "ref": "app.rocksky.apikey.defs#apikeyView"
31 }
32 }
33 }
34 }
35 }
36 }
37 }
38}