# am.noz.mecenas.post

> Published by [noz.am](https://lexicon.garden/identity/did:plc:lmkzmvv6sdxntwtyxpg7fqqq)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.mecenas.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.mecenas.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.mecenas.post/examples)

## Definitions

### `am.noz.mecenas.post`

**Type**: `record`

A Mecenas creator post. Repository or Space placement determines its access boundary.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `body` | `string` | Yes |  |
| `tier` | `string` (at-uri) | No | Public tier record associated with a member-only post. |
| `title` | `string` | Yes |  |
| `excerpt` | `string` | No |  |
| `audience` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | No |  |
| `publishedAt` | `string` (datetime) | Yes |  |
| `formatVersion` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "am.noz.mecenas.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "formatVersion",
          "title",
          "body",
          "audience",
          "createdAt",
          "publishedAt"
        ],
        "properties": {
          "body": {
            "type": "string",
            "maxGraphemes": 30000,
            "minGraphemes": 1
          },
          "tier": {
            "type": "string",
            "format": "at-uri",
            "description": "Public tier record associated with a member-only post."
          },
          "title": {
            "type": "string",
            "maxGraphemes": 200,
            "minGraphemes": 1
          },
          "excerpt": {
            "type": "string",
            "maxGraphemes": 500
          },
          "audience": {
            "type": "string",
            "maxLength": 16,
            "knownValues": [
              "public",
              "members"
            ]
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "publishedAt": {
            "type": "string",
            "format": "datetime"
          },
          "formatVersion": {
            "type": "integer",
            "const": 1
          }
        }
      },
      "description": "A Mecenas creator post. Repository or Space placement determines its access boundary."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
