A story record for the Flashes app - ephemeral content that expires after a specified duration
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
expiresInMinutes
integer
Optional
Number of minutes until this story expires (default: 24 hours)
minimum: 1maximum: 10080Default:
1440facets
array
of
ref
app.bsky.richtext.facet
Optional
Rich text facets for mentions, links, and tags
image
blob
Required
No description available.
maxSize: 10.5 MBtext
string
Optional
Optional text overlay on the story
maxLength: 2000 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"image",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 2000,
"description": "Optional text overlay on the story"
},
"image": {
"type": "blob",
"accept": [
"image/jpeg",
"image/png",
"image/webp"
],
"maxSize": 10485760
},
"facets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
},
"description": "Rich text facets for mentions, links, and tags"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"expiresInMinutes": {
"type": "integer",
"default": 1440,
"maximum": 10080,
"minimum": 1,
"description": "Number of minutes until this story expires (default: 24 hours)"
}
}
},
"description": "A story record for the Flashes app - ephemeral content that expires after a specified duration"
}