# live.voxport.podcast.creator

> Published by [voxport.live](https://lexicon.garden/identity/did:plc:hhtgwctzcuhlkqrxu526sco5)

✓ This is the authoritative definition for this NSID.

## Description

Public podcast creator profile declaration on VoxPort

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:hhtgwctzcuhlkqrxu526sco5/live.voxport.podcast.creator)
- [Documentation](https://lexicon.garden/lexicon/did:plc:hhtgwctzcuhlkqrxu526sco5/live.voxport.podcast.creator/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:hhtgwctzcuhlkqrxu526sco5/live.voxport.podcast.creator/examples)

## Definitions

### `live.voxport.podcast.creator`

**Type**: `record`

Public podcast creator profile declaration on VoxPort

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No | Creator bio/summary |
| `series` | `array` | No | Public series by this creator (AT Protocol URIs) |
| `website` | `string` (uri) | No | Creator website URL |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | No |  |
| `donationUrl` | `string` (uri) | No | Link for tips/support/donations |

## Raw Schema

```json
{
  "id": "live.voxport.podcast.creator",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "bio": {
            "type": "string",
            "maxLength": 500,
            "description": "Creator bio/summary"
          },
          "series": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            },
            "maxLength": 100,
            "description": "Public series by this creator (AT Protocol URIs)"
          },
          "website": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "Creator website URL"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "donationUrl": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "Link for tips/support/donations"
          }
        }
      },
      "description": "Public podcast creator profile declaration on VoxPort"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Public podcast creator profile declaration on VoxPort"
}
```
