forked from
grain.social/native
this repo has no description
1{
2 "lexicon": 1,
3 "id": "social.grain.comment.deleteComment",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Delete a comment. Requires auth.",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": ["uri"],
13 "properties": {
14 "uri": {
15 "type": "string",
16 "format": "at-uri",
17 "description": "AT URI of the comment to delete"
18 }
19 }
20 }
21 },
22 "output": {
23 "encoding": "application/json",
24 "schema": {
25 "type": "object",
26 "properties": {
27 "success": {
28 "type": "boolean",
29 "description": "True if the comment was deleted"
30 }
31 }
32 }
33 }
34 }
35 }
36}