A user review of an AT Store directory listing. Subject must be the at:// URI of a fyi.atstore.listing.detail record.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
rating
integer
Required
Star rating 1–5.
minimum: 1maximum: 5subject
string
at-uri
Required
AT URI of the fyi.atstore.listing.detail record being reviewed.
text
string
Optional
Optional written review; omit for a stars-only rating.
maxLength: 8000 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"rating",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 8000,
"description": "Optional written review; omit for a stars-only rating."
},
"rating": {
"type": "integer",
"maximum": 5,
"minimum": 1,
"description": "Star rating 1–5."
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the fyi.atstore.listing.detail record being reviewed."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A user review of an AT Store directory listing. Subject must be the at:// URI of a fyi.atstore.listing.detail record."
}