Public, community feedback on a creation (like a review). PRIVATE bug reports from the FAB closed-loop stay in fab-api/D1 — they are NOT records, because federated repo records are world-readable.
Record Key
tid
Timestamp-based ID
Properties
body
string
Optional
The feedback text.
maxLength: 4096 bytescreatedAt
string
datetime
Required
ISO 8601 timestamp of the feedback.
rating
integer
Optional
Optional 1-5 star rating.
minimum: 1maximum: 5subject
ref
com.atproto.repo.strongRef
Required
strongRef to the build.clovernight.creation.app the feedback is about.
type
string
Required
Kind of feedback.
Known values:
praise, feature, bug, designView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"type",
"createdAt"
],
"properties": {
"body": {
"type": "string",
"maxLength": 4096,
"description": "The feedback text."
},
"type": {
"type": "string",
"description": "Kind of feedback.",
"knownValues": [
"praise",
"feature",
"bug",
"design"
]
},
"rating": {
"type": "integer",
"maximum": 5,
"minimum": 1,
"description": "Optional 1-5 star rating."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "strongRef to the build.clovernight.creation.app the feedback is about."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "ISO 8601 timestamp of the feedback."
}
}
},
"description": "Public, community feedback on a creation (like a review). PRIVATE bug reports from the FAB closed-loop stay in fab-api/D1 — they are NOT records, because federated repo records are world-readable."
}