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.createApikey",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Create a new API key for the authenticated user",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": [
13 "name"
14 ],
15 "properties": {
16 "name": {
17 "type": "string",
18 "description": "The name of the API key."
19 },
20 "description": {
21 "type": "string",
22 "description": "A description for the API key."
23 }
24 }
25 }
26 },
27 "output": {
28 "encoding": "application/json",
29 "schema": {
30 "type": "ref",
31 "ref": "app.rocksky.apikey.defs#apiKey"
32 }
33 }
34 }
35 }
36}