atproto blogging
at main 38 lines 877 B view raw
1{ 2 "lexicon": 1, 3 "id": "tools.ozone.set.deleteSet", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Delete an entire set. Attempting to delete a set that does not exist will result in an error.", 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": "Name of the set to delete" 19 } 20 } 21 } 22 }, 23 "output": { 24 "encoding": "application/json", 25 "schema": { 26 "type": "object", 27 "properties": {} 28 } 29 }, 30 "errors": [ 31 { 32 "description": "set with the given name does not exist", 33 "name": "SetNotFound" 34 } 35 ] 36 } 37 } 38}