# fm.teal.actor.status

> Published by [teal.fm](https://lexicon.garden/identity/did:plc:iwhuynr6mm6xxuh25o4do2tx)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:iwhuynr6mm6xxuh25o4do2tx/fm.teal.actor.status)
- [Documentation](https://lexicon.garden/lexicon/did:plc:iwhuynr6mm6xxuh25o4do2tx/fm.teal.actor.status/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:iwhuynr6mm6xxuh25o4do2tx/fm.teal.actor.status/examples)

## Definitions

### `fm.teal.actor.status`

**Type**: `record`

This lexicon is in a not officially released state. It is subject to change. | A declaration of the status of the actor. Only one can be shown at a time. If there are multiple, the latest record should be picked and earlier records should be deleted or tombstoned.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `item` | `ref` → `fm.teal.feed.defs#playView` | Yes |  |
| `time` | `string` (datetime) | Yes | The datetime at which the status was recorded. |
| `expiry` | `string` (datetime) | No | The datetime after which the status is no longer current. If unavailable, default to 10 minutes after the start time. |

## Raw Schema

```json
{
  "id": "fm.teal.actor.status",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "time",
          "item"
        ],
        "properties": {
          "item": {
            "ref": "fm.teal.feed.defs#playView",
            "type": "ref"
          },
          "time": {
            "type": "string",
            "format": "datetime",
            "description": "The datetime at which the status was recorded."
          },
          "expiry": {
            "type": "string",
            "format": "datetime",
            "description": "The datetime after which the status is no longer current. If unavailable, default to 10 minutes after the start time."
          }
        }
      },
      "description": "This lexicon is in a not officially released state. It is subject to change. | A declaration of the status of the actor. Only one can be shown at a time. If there are multiple, the latest record should be picked and earlier records should be deleted or tombstoned."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
