Record containing a review of something.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
The timestamp when this review was originally written.
facets
array
of
ref
app.bsky.richtext.facet
Optional
Annotations of text (Bluesky-compatible richtext).
langs
array
of
string
language
Optional
Indicates natural language of text.
maxLength: 3 itemssubject
union
Required
No description available.
Known types:
summary
string
Optional
A short summary of the review (perhaps a score).
maxLength: 1000 bytesmaxGraphemes: 96 graphemestext
string
Required
The text of the review.
maxLength: 768000 bytesmaxGraphemes: 64000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt",
"subject",
"text"
],
"properties": {
"text": {
"type": "string",
"maxLength": 768000,
"description": "The text of the review.",
"maxGraphemes": 64000
},
"langs": {
"type": "array",
"items": {
"type": "string",
"format": "language"
},
"maxLength": 3,
"description": "Indicates natural language of text."
},
"facets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
},
"description": "Annotations of text (Bluesky-compatible richtext)."
},
"subject": {
"refs": [
"how.bun.reviews.subject#wikidataObject"
],
"type": "union"
},
"summary": {
"type": "string",
"maxLength": 1000,
"description": "A short summary of the review (perhaps a score).",
"maxGraphemes": 96
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The timestamp when this review was originally written."
}
}
},
"description": "Record containing a review of something."
}