# place.pod.subscription

> Published by [pod.place](https://lexicon.garden/identity/did:plc:djyfh7w2dpxt7w7cpagfeyie)

✓ This is the authoritative definition for this NSID.

## Description

A listener subscribing to a show.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:djyfh7w2dpxt7w7cpagfeyie/place.pod.subscription)
- [Documentation](https://lexicon.garden/lexicon/did:plc:djyfh7w2dpxt7w7cpagfeyie/place.pod.subscription/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:djyfh7w2dpxt7w7cpagfeyie/place.pod.subscription/examples)

## Definitions

### `place.pod.subscription`

**Type**: `record`

A listener subscribing to a show.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `showUri` | `string` (uri) | Yes | AT Protocol URI of the place.pod.show record being subscribed to. |
| `subscribedAt` | `string` (datetime) | Yes | ISO 8601 timestamp of when the subscription was created. |

## Raw Schema

```json
{
  "id": "place.pod.subscription",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "showUri",
          "subscribedAt"
        ],
        "properties": {
          "showUri": {
            "type": "string",
            "format": "uri",
            "description": "AT Protocol URI of the place.pod.show record being subscribed to."
          },
          "subscribedAt": {
            "type": "string",
            "format": "datetime",
            "description": "ISO 8601 timestamp of when the subscription was created."
          }
        }
      },
      "description": "A listener subscribing to a show."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A listener subscribing to a show."
}
```
