# zone.zephyra.screens.profile

> Published by [zephyra.zone](https://lexicon.garden/identity/did:plc:qdzngsk72vcfytwvuhbm7z6g)

✓ This is the authoritative definition for this NSID.

## Description

Profile describing the TV show or other media a bot account posts frames from. One record per repository.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:qdzngsk72vcfytwvuhbm7z6g/zone.zephyra.screens.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:qdzngsk72vcfytwvuhbm7z6g/zone.zephyra.screens.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:qdzngsk72vcfytwvuhbm7z6g/zone.zephyra.screens.profile/examples)

## Definitions

### `zone.zephyra.screens.profile`

**Type**: `record`

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | No | Poster, logo, or other representative image for the media. |
| `createdAt` | `string` (datetime) | Yes | Timestamp the profile was first published. |
| `mediaName` | `string` | Yes | Name of the show, film, or other media this account posts frames from. |
| `updatedAt` | `string` (datetime) | No | Timestamp the profile was last edited. |
| `externalLinks` | `array` | No | Links to external databases or sites describing this media (e.g. TVDB, Wikidata, IMDB). |

### `zone.zephyra.screens.profile#externalLink`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (uri) | Yes | URL of the media's page on the external source. |
| `name` | `string` | Yes | Human-readable name of the external source (e.g. "TVDB", "Wikidata", "IMDB"). |

## Raw Schema

```json
{
  "id": "zone.zephyra.screens.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "mediaName",
          "createdAt"
        ],
        "properties": {
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1048576,
            "description": "Poster, logo, or other representative image for the media."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp the profile was first published."
          },
          "mediaName": {
            "type": "string",
            "maxLength": 640,
            "description": "Name of the show, film, or other media this account posts frames from."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp the profile was last edited."
          },
          "externalLinks": {
            "type": "array",
            "items": {
              "ref": "#externalLink",
              "type": "ref"
            },
            "description": "Links to external databases or sites describing this media (e.g. TVDB, Wikidata, IMDB)."
          }
        }
      }
    },
    "externalLink": {
      "type": "object",
      "required": [
        "name",
        "uri"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "uri",
          "description": "URL of the media's page on the external source."
        },
        "name": {
          "type": "string",
          "description": "Human-readable name of the external source (e.g. \"TVDB\", \"Wikidata\", \"IMDB\")."
        }
      }
    }
  },
  "lexicon": 1,
  "description": "Profile describing the TV show or other media a bot account posts frames from. One record per repository."
}
```
