# at.glean.annotation

> Published by [glean.at](https://lexicon.garden/identity/did:plc:7fx3svzgnlvzighbczz3mmsd)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7fx3svzgnlvzighbczz3mmsd/at.glean.annotation)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7fx3svzgnlvzighbczz3mmsd/at.glean.annotation/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7fx3svzgnlvzighbczz3mmsd/at.glean.annotation/examples)

## Definitions

### `at.glean.annotation`

**Type**: `record`

Reading note on a specific RSS article.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `note` | `string` | No |  |
| `tags` | `array` | No |  |
| `quote` | `string` | No |  |
| `rating` | `integer` | No |  |
| `feedUrl` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | No |  |
| `articleUrl` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "at.glean.annotation",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "feedUrl",
          "articleUrl"
        ],
        "properties": {
          "note": {
            "type": "string",
            "maxGraphemes": 500
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxGraphemes": 50
            },
            "maxLength": 10
          },
          "quote": {
            "type": "string",
            "maxGraphemes": 5000
          },
          "rating": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1
          },
          "feedUrl": {
            "type": "string"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "articleUrl": {
            "type": "string"
          }
        }
      },
      "description": "Reading note on a specific RSS article."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
