# work.lexical.action.watch

> Published by [lexical.work](https://lexicon.garden/identity/did:plc:6acm263n23glqje6xrd2mgbt)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:6acm263n23glqje6xrd2mgbt/work.lexical.action.watch)
- [Documentation](https://lexicon.garden/lexicon/did:plc:6acm263n23glqje6xrd2mgbt/work.lexical.action.watch/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:6acm263n23glqje6xrd2mgbt/work.lexical.action.watch/examples)

## Definitions

### `work.lexical.action.watch`

**Type**: `record`

A record representing a watch of a film or video work.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `work` | `string` (at-uri) | Yes | AT URI of the work that was watched. |
| `medium` | `string` | No | The medium through which the work was watched. |
| `rewatch` | `boolean` | No | Whether this was a rewatch rather than a first viewing. |
| `actionType` | `string` | Yes | Identifies this record as a watch. |
| `occurredAt` | `string` (datetime) | No | When the watch occurred. |

## Raw Schema

```json
{
  "id": "work.lexical.action.watch",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "work",
          "actionType"
        ],
        "properties": {
          "work": {
            "type": "string",
            "format": "at-uri",
            "required": true,
            "maxLength": 2048,
            "description": "AT URI of the work that was watched."
          },
          "medium": {
            "type": "string",
            "maxLength": 64,
            "description": "The medium through which the work was watched.",
            "knownValues": [
              "theatrical",
              "streaming",
              "physical"
            ],
            "maxGraphemes": 64
          },
          "rewatch": {
            "type": "boolean",
            "description": "Whether this was a rewatch rather than a first viewing."
          },
          "actionType": {
            "type": "string",
            "const": "watch",
            "required": true,
            "maxLength": 64,
            "description": "Identifies this record as a watch.",
            "maxGraphemes": 64
          },
          "occurredAt": {
            "type": "string",
            "format": "datetime",
            "maxLength": 64,
            "description": "When the watch occurred."
          }
        }
      },
      "description": "A record representing a watch of a film or video work."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
