Record describing a blog post.
Record Key
tid
Timestamp-based ID
Properties
content
string
Required
No description available.
maxLength: 100000 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
excerpt
string
Optional
No description available.
maxLength: 1000 bytesfeaturedImage
ref
app.bsky.embed.images#image
Optional
No description available.
images
array
of
ref
app.bsky.embed.images#image
Optional
No description available.
slug
string
Required
No description available.
maxLength: 100 bytestags
array
of
string
at-uri
Optional
No description available.
title
string
Required
No description available.
maxLength: 1000 bytesvisibility
string
Optional
Tells the visibility of the article to AppView.
Allowed:
public, url, authorDefault:
publicView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"content",
"slug",
"createdAt"
],
"properties": {
"slug": {
"type": "string",
"maxLength": 100
},
"tags": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri",
"description": "Reference (AT-URI) to a tag record (us.polhem.blog.tag)."
}
},
"title": {
"type": "string",
"maxLength": 1000
},
"images": {
"type": "array",
"items": {
"ref": "app.bsky.embed.images#image",
"type": "ref"
}
},
"content": {
"type": "string",
"maxLength": 100000
},
"excerpt": {
"type": "string",
"maxLength": 1000
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"visibility": {
"enum": [
"public",
"url",
"author"
],
"type": "string",
"default": "public",
"description": "Tells the visibility of the article to AppView."
},
"featuredImage": {
"ref": "app.bsky.embed.images#image",
"type": "ref"
}
}
},
"description": "Record describing a blog post."
}