atproto blogging
1{
2 "lexicon": 1,
3 "id": "com.atproto.sync.notifyOfUpdate",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Notify a crawling service of a recent update, and that crawling should resume. Intended use is after a gap between repo stream events caused the crawling service to disconnect. Does not require auth; implemented by Relay. DEPRECATED: just use com.atproto.sync.requestCrawl",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": [
13 "hostname"
14 ],
15 "properties": {
16 "hostname": {
17 "type": "string",
18 "description": "Hostname of the current service (usually a PDS) that is notifying of update."
19 }
20 }
21 }
22 }
23 }
24 }
25}