net.meowmeowbeenz.rating

meowmeowbeenz.net

Documentation

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.

main record

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

createdAt string datetime Required

An RFC 3339 formatted timestamp.

subject string did Required

DID of the account being rated. MUST NOT be the rater's own DID.

value integer Required

Rating from 1 (terrible person) to 5 (a true 5).

minimum: 1maximum: 5
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."
}

Lexicon Garden

@