# app.standard-reader.read

> Published by [standard-reader.app](https://lexicon.garden/identity/did:plc:f4os2wz5fjl56xpwcvtnqu7m)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.read)
- [Documentation](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.read/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.read/examples)

## Definitions

### `app.standard-reader.read`

**Type**: `record`

Marks a site.standard.document as read by the reader. Presence of the record means read; deleting it marks the article unread again.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (at-uri) | Yes | AT URI of the site.standard.document record that was read. |
| `createdAt` | `string` (datetime) | Yes | When the reader opened / marked the article read. |

## Raw Schema

```json
{
  "id": "app.standard-reader.read",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI of the site.standard.document record that was read."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the reader opened / marked the article read."
          }
        }
      },
      "description": "Marks a site.standard.document as read by the reader. Presence of the record means read; deleting it marks the article unread again."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
