prototypey.org - atproto lexicon typescript toolkit - mirror https://github.com/tylersayshi/prototypey
1{
2 "type": "subscription",
3 "description": "Repository event stream, aka Firehose endpoint",
4 "parameters": {
5 "type": "params",
6 "properties": {
7 "cursor": {
8 "type": "integer"
9 }
10 }
11 },
12 "message": {
13 "description": "Represents an update of repository state",
14 "schema": {
15 "type": "union",
16 "refs": [
17 "#commit",
18 "#identity",
19 "#account",
20 "#handle",
21 "#migrate",
22 "#tombstone",
23 "#info"
24 ]
25 }
26 },
27 "errors": [
28 {
29 "name": "FutureCursor"
30 },
31 {
32 "name": "ConsumerTooSlow"
33 }
34 ]
35}