Main definition for a frame image
Record Key
tid
Timestamp-based ID
Properties
aspect
string
Optional
No description available.
Allowed:
9:16, original, othercreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
embed
union
Required
No description available.
Known types:
expiresAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
text
string
Optional
No description available.
maxLength: 240 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt",
"embed"
],
"properties": {
"text": {
"type": "string",
"maxLength": 240
},
"embed": {
"refs": [
"lex:app.bsky.embed.images"
],
"type": "union"
},
"aspect": {
"enum": [
"9:16",
"original",
"other"
],
"type": "string"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"expiresAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Main definition for a frame image"
}