# org.radlib.private.post

> Published by [gmt8cjvm52.pds.edriffles.us](https://lexicon.garden/identity/did:plc:7ricu3knhcyiym64d752vmeo)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7ricu3knhcyiym64d752vmeo/org.radlib.private.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7ricu3knhcyiym64d752vmeo/org.radlib.private.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7ricu3knhcyiym64d752vmeo/org.radlib.private.post/examples)

## Definitions

### `org.radlib.private.post`

**Type**: `record`

A fork-owned post stored in a permissioned account or community space. It is never a public app.bsky.feed.post record.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes |  |
| `embed` | `unknown` | No |  |
| `langs` | `array` | No |  |
| `reply` | `unknown` | No |  |
| `facets` | `array` | No |  |
| `community` | `string` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "org.radlib.private.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 3000
          },
          "embed": {
            "type": "unknown"
          },
          "langs": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "maxLength": 3
          },
          "reply": {
            "type": "unknown"
          },
          "facets": {
            "type": "array",
            "items": {
              "type": "unknown"
            },
            "maxLength": 256
          },
          "community": {
            "type": "string"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A fork-owned post stored in a permissioned account or community space. It is never a public app.bsky.feed.post record."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
