# space.dailyreads.read

> Published by [dailyreads.space](https://lexicon.garden/identity/did:plc:hdfb5gylivnmaqmwfcyzer6d)

✓ This is the authoritative definition for this NSID.

## Description

A record indicating the user has read an item from a feed.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:hdfb5gylivnmaqmwfcyzer6d/space.dailyreads.read)
- [Documentation](https://lexicon.garden/lexicon/did:plc:hdfb5gylivnmaqmwfcyzer6d/space.dailyreads.read/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:hdfb5gylivnmaqmwfcyzer6d/space.dailyreads.read/examples)

## Definitions

### `space.dailyreads.read`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes | URL of the item that was read. |
| `feed` | `string` (at-uri) | Yes | AT-URI of the user's space.dailyreads.feed record this item came from. |
| `tags` | `array` | No | User-defined tags for organizing reads. |
| `title` | `string` | Yes | Title of the item that was read. |
| `readAt` | `string` (datetime) | Yes | When the user marked this item as read. |

## Raw Schema

```json
{
  "id": "space.dailyreads.read",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "feed",
          "title",
          "url",
          "readAt"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "URL of the item that was read."
          },
          "feed": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the user's space.dailyreads.feed record this item came from."
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 320,
              "minLength": 1,
              "maxGraphemes": 64
            },
            "maxLength": 16,
            "description": "User-defined tags for organizing reads."
          },
          "title": {
            "type": "string",
            "maxLength": 2500,
            "minLength": 1,
            "description": "Title of the item that was read.",
            "maxGraphemes": 500
          },
          "readAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the user marked this item as read."
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A record indicating the user has read an item from a feed."
}
```
