No description available.
Properties
pinned
boolean
Optional
No description available.
post
string
at-uri
Required
The linked app.bsky.feed.post URI. Clients hydrate it through their authenticated Bluesky AppView.
removedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
removedBy
string
did
Optional
A decentralized identifier (DID).
removedReason
string
Optional
Present only for the post author and Community moderators.
maxLength: 1000 bytesstatus
string
Optional
Community-level state; absent means visible. `removed` is a moderator removal scoped to this Community; the underlying app.bsky.feed.post remains live on the network. Only the author and Community moderators receive removed items.
visible, removedView raw schema
{
"type": "object",
"required": [
"post"
],
"properties": {
"post": {
"type": "string",
"format": "at-uri",
"description": "The linked app.bsky.feed.post URI. Clients hydrate it through their authenticated Bluesky AppView."
},
"pinned": {
"type": "boolean",
"default": false
},
"status": {
"type": "string",
"description": "Community-level state; absent means visible. `removed` is a moderator removal scoped to this Community; the underlying app.bsky.feed.post remains live on the network. Only the author and Community moderators receive removed items.",
"knownValues": [
"visible",
"removed"
]
},
"removedAt": {
"type": "string",
"format": "datetime"
},
"removedBy": {
"type": "string",
"format": "did"
},
"removedReason": {
"type": "string",
"maxLength": 1000,
"description": "Present only for the post author and Community moderators."
}
}
}