A better Rust ATProto crate
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 50 lines 1.0 kB view raw
1{ 2 "lexicon": 1, 3 "id": "app.blebbit.authr.folder.updateFolder", 4 "revision": 1, 5 "description": "update a folder", 6 "defs": { 7 "main": { 8 "type": "procedure", 9 "parameters": { 10 "type": "params", 11 "properties": { 12 "id": { 13 "type": "string" 14 } 15 } 16 }, 17 "input": { 18 "encoding": "application/json", 19 "schema": { 20 "type": "object", 21 "properties": { 22 "name": { 23 "type": "string" 24 }, 25 "public": { 26 "type": "boolean" 27 } 28 } 29 } 30 }, 31 "output": { 32 "encoding": "application/json", 33 "schema": { 34 "type": "object", 35 "properties": { 36 "cuid": { 37 "type": "string" 38 }, 39 "name": { 40 "type": "string" 41 }, 42 "public": { 43 "type": "boolean" 44 } 45 } 46 } 47 } 48 } 49 } 50}