# net.meowmeowbeenz.rating

> Published by [meowmeowbeenz.net](https://lexicon.garden/identity/did:plc:xxcjbq54rj2mrm3tfpthclb6)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:xxcjbq54rj2mrm3tfpthclb6/net.meowmeowbeenz.rating)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xxcjbq54rj2mrm3tfpthclb6/net.meowmeowbeenz.rating/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xxcjbq54rj2mrm3tfpthclb6/net.meowmeowbeenz.rating/examples)

## Definitions

### `net.meowmeowbeenz.rating`

**Type**: `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.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `value` | `integer` | Yes | Rating from 1 (terrible person) to 5 (a true 5). |
| `subject` | `string` (did) | Yes | DID of the account being rated. MUST NOT be the rater's own DID. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "net.meowmeowbeenz.rating",
  "defs": {
    "main": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
