Opens a WebSocket stream that transmits relevant events for the authenticated user.
View raw schema
{
"type": "subscription",
"errors": [
{
"name": "AuthRequired"
}
],
"message": {
"schema": {
"refs": [
"lex:social.colibri.sync.subscribeEvents#ack",
"lex:social.colibri.sync.subscribeEvents#communityEvent",
"lex:social.colibri.sync.subscribeEvents#memberEvent",
"lex:social.colibri.sync.subscribeEvents#categoryEvent",
"lex:social.colibri.sync.subscribeEvents#channelEvent",
"lex:social.colibri.sync.subscribeEvents#messageEvent",
"lex:social.colibri.sync.subscribeEvents#reactionEvent",
"lex:social.colibri.sync.subscribeEvents#userEvent",
"lex:social.colibri.sync.subscribeEvents#typingEvent"
],
"type": "union"
}
},
"description": "Opens a WebSocket stream that transmits relevant events for the authenticated user."
}
Sent in response to a heartbeat message.
Properties
No description available.
View raw schema
{
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"const": "ack"
}
},
"description": "Sent in response to a heartbeat message."
}
Sent when a category has been created, updated, or deleted.
Properties
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"data": {
"ref": "lex:social.colibri.sync.subscribeEvents#categoryEventData",
"type": "ref"
},
"type": {
"type": "string",
"const": "category_event"
}
},
"description": "Sent when a category has been created, updated, or deleted."
}
No description available.
Properties
No description available.
No description available.
Known values: upsert, delete
No description available.
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"type": "object",
"required": [
"event",
"uri",
"community"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"name": {
"type": "string"
},
"event": {
"type": "string",
"knownValues": [
"upsert",
"delete"
]
},
"community": {
"type": "string",
"format": "at-uri"
},
"channelOrder": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
Sent when a channel has been created, updated, or deleted.
Properties
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"data": {
"ref": "lex:social.colibri.sync.subscribeEvents#channelEventData",
"type": "ref"
},
"type": {
"type": "string",
"const": "channel_event"
}
},
"description": "Sent when a channel has been created, updated, or deleted."
}
No description available.
Properties
No description available.
No description available.
Known values: upsert, delete
No description available.
No description available.
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"type": "object",
"required": [
"event",
"uri",
"community"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"event": {
"type": "string",
"knownValues": [
"upsert",
"delete"
]
},
"community": {
"type": "string",
"format": "at-uri"
},
"description": {
"type": "string"
}
}
}
Sent when a member has joined or left a community.
Properties
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"data": {
"ref": "lex:social.colibri.sync.subscribeEvents#memberEventData",
"type": "ref"
},
"type": {
"type": "string",
"const": "member_event"
}
},
"description": "Sent when a member has joined or left a community."
}
No description available.
Properties
No description available.
Known values: join, leave
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"type": "object",
"required": [
"event",
"community",
"membership"
],
"properties": {
"event": {
"type": "string",
"knownValues": [
"join",
"leave"
]
},
"community": {
"type": "string",
"format": "at-uri"
},
"membership": {
"type": "string",
"format": "at-uri"
}
}
}
Sent when a message has been sent, edited, or deleted.
Properties
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"data": {
"ref": "lex:social.colibri.sync.subscribeEvents#messageEventData",
"type": "ref"
},
"type": {
"type": "string",
"const": "message_event"
}
},
"description": "Sent when a message has been sent, edited, or deleted."
}
No description available.
Properties
No description available.
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
An RFC 3339 formatted timestamp.
No description available.
No description available.
Known values: upsert, delete
No description available.
An RFC 3339 formatted timestamp.
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
No description available.
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"type": "object",
"required": [
"event",
"uri",
"channel"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"text": {
"type": "string"
},
"event": {
"type": "string",
"knownValues": [
"upsert",
"delete"
]
},
"edited": {
"type": "boolean"
},
"facets": {
"type": "array",
"items": {
"ref": "lex:social.colibri.richtext.facet",
"type": "ref"
}
},
"parent": {
"type": "string",
"format": "at-uri"
},
"channel": {
"type": "string",
"format": "at-uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"indexedAt": {
"type": "string",
"format": "datetime"
},
"attachments": {
"type": "array",
"items": {
"type": "blob"
}
}
}
}
Sent when a reaction has been added to or removed from a message.
Properties
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"data": {
"ref": "lex:social.colibri.sync.subscribeEvents#reactionEventData",
"type": "ref"
},
"type": {
"type": "string",
"const": "reaction_event"
}
},
"description": "Sent when a reaction has been added to or removed from a message."
}
No description available.
Properties
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
No description available.
No description available.
Known values: added, removed
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"type": "object",
"required": [
"event",
"uri",
"emoji",
"target",
"channel"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"emoji": {
"type": "string"
},
"event": {
"type": "string",
"knownValues": [
"added",
"removed"
]
},
"target": {
"type": "string",
"format": "at-uri"
},
"channel": {
"type": "string",
"format": "at-uri"
}
}
}
Sent when a user is typing in a channel the client is viewing.
Properties
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"data": {
"ref": "lex:social.colibri.sync.subscribeEvents#typingEventData",
"type": "ref"
},
"type": {
"type": "string",
"const": "typing_event"
}
},
"description": "Sent when a user is typing in a channel the client is viewing."
}
No description available.
Properties
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
A decentralized identifier (DID).
No description available.
Known values: start, stop
View raw schema
{
"type": "object",
"required": [
"event",
"channel",
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"event": {
"type": "string",
"knownValues": [
"start",
"stop"
]
},
"channel": {
"type": "string",
"format": "at-uri"
}
}
}
Sent when a known user has updated their profile or Colibri status.
Properties
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"type",
"data"
],
"properties": {
"data": {
"ref": "lex:social.colibri.sync.subscribeEvents#userEventData",
"type": "ref"
},
"type": {
"type": "string",
"const": "user_event"
}
},
"description": "Sent when a known user has updated their profile or Colibri status."
}
No description available.
Properties
A decentralized identifier (DID).
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"did",
"profile"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"status": {
"ref": "lex:social.colibri.sync.subscribeEvents#userStatus",
"type": "ref"
},
"profile": {
"ref": "lex:social.colibri.sync.subscribeEvents#userProfile",
"type": "ref"
}
}
}
No description available.
Properties
No description available.
No description available.
No description available.
No description available.
An AT Protocol handle (e.g., alice.bsky.social).
View raw schema
{
"type": "object",
"required": [
"handle"
],
"properties": {
"avatar": {
"type": "blob"
},
"banner": {
"type": "blob"
},
"handle": {
"type": "string",
"format": "handle"
},
"description": {
"type": "string"
},
"displayName": {
"type": "string"
}
}
}
No description available.
Properties
No description available.
No description available.
Known values: online, away, dnd, offline
No description available.
View raw schema
{
"type": "object",
"required": [
"state",
"text"
],
"properties": {
"text": {
"type": "string"
},
"emoji": {
"type": "string"
},
"state": {
"type": "string",
"knownValues": [
"online",
"away",
"dnd",
"offline"
]
}
}
}