1{
2 "lexicon": 1,
3 "id": "app.blebbit.authr.folder.createFolder",
4 "revision": 1,
5 "description": "create a folder",
6 "defs": {
7 "main": {
8 "type": "procedure",
9 "input": {
10 "encoding": "application/json",
11 "schema": {
12 "type": "object",
13 "properties": {
14 "name": {
15 "type": "string"
16 },
17 "public": {
18 "type": "boolean"
19 }
20 }
21 }
22 },
23 "output": {
24 "encoding": "application/json",
25 "schema": {
26 "type": "object",
27 "properties": {
28 "cuid": {
29 "type": "string"
30 },
31 "name": {
32 "type": "string"
33 },
34 "public": {
35 "type": "boolean"
36 }
37 }
38 }
39 }
40 }
41 }
42}