atproto blogging
1{
2 "lexicon": 1,
3 "id": "com.whtwnd.blog.notifyOfNewEntry",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Notify AppView of existence of new entry and request indexing",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": [
13 "entryUri"
14 ],
15 "properties": {
16 "entryUri": {
17 "type": "string",
18 "format": "at-uri"
19 }
20 }
21 }
22 },
23 "output": {
24 "encoding": "application/json",
25 "schema": {
26 "type": "object",
27 "required": [],
28 "properties": {}
29 }
30 },
31 "errors": []
32 }
33 }
34}