# app.rocksky.actor.status

> Published by [rocksky.app](https://lexicon.garden/identity/did:plc:vegqomyce4ssoqs7zwqvgqty)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.status)
- [Documentation](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.status/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.status/examples)

## Definitions

### `app.rocksky.actor.status`

**Type**: `record`

The current listening status of the actor. Only one can be active at a time (rkey: self).

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `track` | `ref` → `app.rocksky.actor.defs#trackView` | Yes | The track currently being played. |
| `expiresAt` | `string` (datetime) | No | When the status expires. Defaults to startedAt plus track duration plus idle time. |
| `startedAt` | `string` (datetime) | Yes | When the track started playing. |

## Raw Schema

```json
{
  "id": "app.rocksky.actor.status",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "track",
          "startedAt"
        ],
        "properties": {
          "track": {
            "ref": "app.rocksky.actor.defs#trackView",
            "type": "ref",
            "description": "The track currently being played."
          },
          "expiresAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the status expires. Defaults to startedAt plus track duration plus idle time."
          },
          "startedAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the track started playing."
          }
        }
      },
      "description": "The current listening status of the actor. Only one can be active at a time (rkey: self)."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
