# com.alizardguy.motd

> Published by [alizard.gay](https://lexicon.garden/identity/did:plc:nblqefnc2qwy7nt5misrkuqs)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:nblqefnc2qwy7nt5misrkuqs/com.alizardguy.motd)
- [Documentation](https://lexicon.garden/lexicon/did:plc:nblqefnc2qwy7nt5misrkuqs/com.alizardguy.motd/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:nblqefnc2qwy7nt5misrkuqs/com.alizardguy.motd/examples)

## Definitions

### `com.alizardguy.motd`

**Type**: `record`

Record containing a motd.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes |  |
| `createdAt` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "com.alizardguy.motd",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 2560,
            "maxGraphemes": 256
          },
          "createdAt": {
            "type": "string",
            "maxLength": 2560,
            "maxGraphemes": 256
          }
        }
      },
      "description": "Record containing a motd."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
