No description available.
Record Key
tid
Timestamp-based ID
Properties
aliases
array
of
string
Optional
Alternative names for [[alias]] resolution
maxLength: 20 itemscontent
string
Required
No description available.
maxLength: 100000 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
lastUpdated
string
datetime
Required
An RFC 3339 formatted timestamp.
slug
string
Required
URL-safe identifier for [[slug]] linking
maxLength: 128 bytesstatus
string
Optional
No description available.
Known values:
draft, stable, deprecatedDefault:
stablesummary
string
Optional
No description available.
maxLength: 512 bytessupersedes
string
at-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
tags
array
of
string
Optional
No description available.
maxLength: 20 itemstitle
string
Required
No description available.
maxLength: 256 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"slug",
"content",
"createdAt",
"lastUpdated"
],
"properties": {
"slug": {
"type": "string",
"maxLength": 128,
"description": "URL-safe identifier for [[slug]] linking"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"maxLength": 20
},
"title": {
"type": "string",
"maxLength": 256
},
"status": {
"type": "string",
"default": "stable",
"knownValues": [
"draft",
"stable",
"deprecated"
]
},
"aliases": {
"type": "array",
"items": {
"type": "string"
},
"maxLength": 20,
"description": "Alternative names for [[alias]] resolution"
},
"content": {
"type": "string",
"maxLength": 100000
},
"summary": {
"type": "string",
"maxLength": 512
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"supersedes": {
"type": "string",
"format": "at-uri"
},
"lastUpdated": {
"type": "string",
"format": "datetime"
}
}
}
}