A file attached to a message.
Properties
No description available.
Pixel height of the attachment's intrinsic dimensions, when it is a decodable image or video.
No description available.
Pixel width of the attachment's intrinsic dimensions, when it is a decodable image or video. Lets a client reserve the correct box before the bytes arrive.
View raw schema
{
"type": "object",
"required": [
"blob"
],
"properties": {
"blob": {
"type": "blob"
},
"name": {
"type": "string"
},
"width": {
"type": "integer",
"description": "Pixel width of the attachment's intrinsic dimensions, when it is a decodable image or video. Lets a client reserve the correct box before the bytes arrive."
},
"height": {
"type": "integer",
"description": "Pixel height of the attachment's intrinsic dimensions, when it is a decodable image or video."
}
},
"description": "A file attached to a message."
}
A hydrated message as served by the AppView.
Properties
No description available.
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.
URLs whose embed a moderator suppressed, derived from the community's moderation log. Only the moderator who can hide messages may clear these.
The message this one replies to, if any. Never itself nested (the parent's own parent is omitted).
No description available.
URLs whose embed the author suppressed, mirrored from the message record.
No description available.
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"type": "object",
"required": [
"uri",
"text",
"facets",
"channel",
"community",
"author",
"attachments",
"reactions",
"createdAt",
"edited"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"text": {
"type": "string"
},
"author": {
"ref": "lex:social.colibri.actor.defs#actorView",
"type": "ref"
},
"edited": {
"type": "boolean"
},
"facets": {
"type": "array",
"items": {
"ref": "lex:social.colibri.richtext.facet",
"type": "ref"
}
},
"parent": {
"ref": "lex:social.colibri.channel.defs#message",
"type": "ref",
"description": "The message this one replies to, if any. Never itself nested (the parent's own parent is omitted)."
},
"channel": {
"type": "string",
"format": "at-uri"
},
"community": {
"type": "string",
"format": "at-uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"reactions": {
"type": "array",
"items": {
"ref": "lex:social.colibri.channel.defs#reactionView",
"type": "ref"
}
},
"attachments": {
"type": "array",
"items": {
"ref": "lex:social.colibri.channel.defs#attachment",
"type": "ref"
}
},
"suppressedEmbeds": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"description": "URLs whose embed the author suppressed, mirrored from the message record."
},
"modSuppressedEmbeds": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"description": "URLs whose embed a moderator suppressed, derived from the community's moderation log. Only the moderator who can hide messages may clear these."
}
},
"description": "A hydrated message as served by the AppView."
}
An aggregated reaction on a message.
Properties
No description available.
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"emoji",
"count",
"reactorDIDs"
],
"properties": {
"count": {
"type": "integer"
},
"emoji": {
"type": "string"
},
"reactorDIDs": {
"type": "array",
"items": {
"type": "string",
"format": "did"
}
}
},
"description": "An aggregated reaction on a message."
}
The authenticated user's read cursor for a channel.
Properties
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": [
"uri",
"cursor",
"channel"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"cursor": {
"type": "string"
},
"channel": {
"type": "string",
"format": "at-uri"
}
},
"description": "The authenticated user's read cursor for a channel."
}
Per-channel unread state for the authenticated user.
Properties
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"channelUri",
"hasUnreadMessages",
"unreadPingCount"
],
"properties": {
"channelUri": {
"type": "string",
"format": "at-uri"
},
"unreadPingCount": {
"type": "integer"
},
"hasUnreadMessages": {
"type": "boolean"
}
},
"description": "Per-channel unread state for the authenticated user."
}