A user review of an AlternativeProto project
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when the review was created
projectId
string
Required
The project ID being reviewed (matches id field from project data)
rating
integer
Required
Rating value from 1-5 stars
minimum: 1maximum: 5text
string
Required
The review text describing thoughts on the project
maxLength: 3000 bytesmaxGraphemes: 1000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"projectId",
"rating",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 3000,
"description": "The review text describing thoughts on the project",
"maxGraphemes": 1000
},
"rating": {
"type": "integer",
"maximum": 5,
"minimum": 1,
"description": "Rating value from 1-5 stars"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the review was created"
},
"projectId": {
"type": "string",
"description": "The project ID being reviewed (matches id field from project data)"
}
}
},
"description": "A user review of an AlternativeProto project"
}