# space.priiv.post

> Published by [samuel.fm](https://lexicon.garden/identity/did:plc:p2cp5gopk7mgjegy6wadk3ep)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:p2cp5gopk7mgjegy6wadk3ep/space.priiv.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:p2cp5gopk7mgjegy6wadk3ep/space.priiv.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:p2cp5gopk7mgjegy6wadk3ep/space.priiv.post/examples)

## Definitions

### `space.priiv.post`

**Type**: `record`

A short post in the author's Priiv space. Only records authored by the space authority are posts in that space.

**Key**: `tid`

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

## Raw Schema

```json
{
  "id": "space.priiv.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 12000,
            "minLength": 1,
            "maxGraphemes": 120
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A short post in the author's Priiv space. Only records authored by the space authority are posts in that space."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
