atproto blogging
1{
2 "lexicon": 1,
3 "id": "com.atproto.sync.requestCrawl",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Request a service to persistently crawl hosted repos. Expected use is new PDS instances declaring their existence to Relays. Does not require auth.",
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 (eg, PDS) that is requesting to be crawled."
19 }
20 }
21 }
22 },
23 "errors": [
24 {
25 "name": "HostBanned"
26 }
27 ]
28 }
29 }
30}