# us.polhem.atproto-starter.post

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

## Description

Example lexicon schema for https://atproto-starter.glitch.me/

## Links

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

## Definitions

### `us.polhem.atproto-starter.post`

**Type**: `record`

Record describing a simple text post for atproto-starter app.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `content` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "us.polhem.atproto-starter.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "content",
          "createdAt"
        ],
        "properties": {
          "content": {
            "type": "string",
            "maxLength": 100000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Record describing a simple text post for atproto-starter app."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Example lexicon schema for https://atproto-starter.glitch.me/"
}
```
