A MeowMeowBeenz rating awarded by one user to another. Values 1–5. The rkey of the record SHOULD be a TID (timestamp identifier). The most recent rating from a given rater to a given subject is considered authoritative. As in the show, ratings are pure numbers — no comments, no justifications, no nuance. You're a 4 or you're not.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"value",
"createdAt"
],
"properties": {
"value": {
"type": "integer",
"maximum": 5,
"minimum": 1,
"description": "Rating from 1 (terrible person) to 5 (a true 5)."
},
"subject": {
"type": "string",
"format": "did",
"description": "DID of the account being rated. MUST NOT be the rater's own DID."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A MeowMeowBeenz rating awarded by one user to another. Values 1–5. The rkey of the record SHOULD be a TID (timestamp identifier). The most recent rating from a given rater to a given subject is considered authoritative. As in the show, ratings are pure numbers — no comments, no justifications, no nuance. You're a 4 or you're not."
}