Record containing a nblr post.
Record Key
tid
Timestamp-based ID
Properties
aspectRatio
ref
#aspectRatio
Optional
Approximate aspect ratio of the image (width:height).
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
Optional description for the post
maxLength: 2560 bytesmaxGraphemes: 256 graphemesimage
blob
Optional
Optional image for the post
maxSize: 1.0 MBtitle
string
Optional
Optional title for the post
maxLength: 640 bytesmaxGraphemes: 64 graphemesuri
string
uri
Optional
The URI of the linked resource; a web URL or AT URI
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt"
],
"properties": {
"uri": {
"type": "string",
"format": "uri",
"description": "The URI of the linked resource; a web URL or AT URI"
},
"image": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 1000000,
"description": "Optional image for the post"
},
"title": {
"type": "string",
"maxLength": 640,
"description": "Optional title for the post",
"maxGraphemes": 64
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"aspectRatio": {
"ref": "#aspectRatio",
"type": "ref",
"description": "Approximate aspect ratio of the image (width:height)."
},
"description": {
"type": "string",
"maxLength": 2560,
"description": "Optional description for the post",
"maxGraphemes": 256
}
}
},
"description": "Record containing a nblr post."
}