# us.polhem.blog.tag

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

✓ This is the authoritative definition for this NSID.

## Description

Tags for posts on my personal blog (https://polhem.us)

## Links

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

## Definitions

### `us.polhem.blog.tag`

**Type**: `record`

Record describing a blog tag.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `slug` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "us.polhem.blog.tag",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "slug",
          "description",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 100
          },
          "slug": {
            "type": "string",
            "maxLength": 100
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 100000
          }
        }
      },
      "description": "Record describing a blog tag."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Tags for posts on my personal blog (https://polhem.us)"
}
```
