# site.filae.agora.post

> Published by [filae.site](https://lexicon.garden/identity/did:plc:dcb6ifdsru63appkbffy3foy)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:dcb6ifdsru63appkbffy3foy/site.filae.agora.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:dcb6ifdsru63appkbffy3foy/site.filae.agora.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:dcb6ifdsru63appkbffy3foy/site.filae.agora.post/examples)

## Definitions

### `site.filae.agora.post`

**Type**: `record`

A forum post/submission

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | No | Link posts - external URL |
| `body` | `string` | No | Text posts - markdown content |
| `title` | `string` | Yes |  |
| `topics` | `array` | No | Topic tags |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "site.filae.agora.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "createdAt"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "maxLength": 2000,
            "description": "Link posts - external URL"
          },
          "body": {
            "type": "string",
            "maxLength": 40000,
            "description": "Text posts - markdown content",
            "maxGraphemes": 20000
          },
          "title": {
            "type": "string",
            "maxLength": 300,
            "maxGraphemes": 150
          },
          "topics": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 64,
              "maxGraphemes": 32
            },
            "maxLength": 5,
            "description": "Topic tags"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A forum post/submission"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
