A declaration of a Bluesky account status.
Record Key
literal:self
Fixed literal value
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
durationMinutes
integer
Optional
The duration of the status in minutes. Applications can choose to impose minimum and maximum limits.
minimum: 1embed
union
Optional
An optional embed associated with the status.
Known types:
status
string
Required
The status for the account.
Known values:
app.bsky.actor.status#liveView raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"status",
"createdAt"
],
"properties": {
"embed": {
"refs": [
"app.bsky.embed.external"
],
"type": "union",
"description": "An optional embed associated with the status."
},
"status": {
"type": "string",
"description": "The status for the account.",
"knownValues": [
"app.bsky.actor.status#live"
]
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"durationMinutes": {
"type": "integer",
"minimum": 1,
"description": "The duration of the status in minutes. Applications can choose to impose minimum and maximum limits."
}
}
},
"description": "A declaration of a Bluesky account status."
}