# us.polhem.blog.media

> Published by [polhem.us](https://lexicon.garden/identity/did:plc:p5a4pydyirvdkmc3lhw2iykp)

✓ This is the authoritative definition for this NSID.

## Description

Media for my personal blog (https://polhem.us)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:p5a4pydyirvdkmc3lhw2iykp/us.polhem.blog.media)
- [Documentation](https://lexicon.garden/lexicon/did:plc:p5a4pydyirvdkmc3lhw2iykp/us.polhem.blog.media/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:p5a4pydyirvdkmc3lhw2iykp/us.polhem.blog.media/examples)

## Definitions

### `us.polhem.blog.media`

**Type**: `record`

Record describing a piece of media.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `image` | `ref` → `app.bsky.embed.images#image` | Yes |  |
| `filename` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "us.polhem.blog.media",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "filename",
          "image",
          "createdAt"
        ],
        "properties": {
          "image": {
            "ref": "app.bsky.embed.images#image",
            "type": "ref"
          },
          "filename": {
            "type": "string",
            "maxLength": 1000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Record describing a piece of media."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Media for my personal blog (https://polhem.us)"
}
```
