# site.filae.chorus.rating

> Published by [filae.site](https://lexicon.garden/identity/did:plc:dcb6ifdsru63appkbffy3foy)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:dcb6ifdsru63appkbffy3foy/site.filae.chorus.rating)
- [Documentation](https://lexicon.garden/lexicon/did:plc:dcb6ifdsru63appkbffy3foy/site.filae.chorus.rating/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:dcb6ifdsru63appkbffy3foy/site.filae.chorus.rating/examples)

## Definitions

### `site.filae.chorus.rating`

**Type**: `record`

A rating on a community note

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `note` | `string` (at-uri) | Yes | The note being rated |
| `tags` | `array` | No | Optional qualitative tags |
| `helpful` | `string` | Yes | How helpful is this note? Maps to 1.0/0.5/0.0 |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "site.filae.chorus.rating",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "note",
          "helpful",
          "createdAt"
        ],
        "properties": {
          "note": {
            "type": "string",
            "format": "at-uri",
            "description": "The note being rated"
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 50,
              "knownValues": [
                "clear",
                "sourced",
                "balanced",
                "timely",
                "misleading",
                "biased",
                "outdated",
                "irrelevant"
              ]
            },
            "maxLength": 5,
            "description": "Optional qualitative tags"
          },
          "helpful": {
            "enum": [
              "yes",
              "somewhat",
              "no"
            ],
            "type": "string",
            "description": "How helpful is this note? Maps to 1.0/0.5/0.0"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A rating on a community note"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
