# pub.leaflet.blocks.membersOnlyDelimiter

> Published by [leaflet.pub](https://lexicon.garden/identity/did:plc:btxrwcaeyodrap5mnjw2fvmz)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:btxrwcaeyodrap5mnjw2fvmz/pub.leaflet.blocks.membersOnlyDelimiter)
- [Documentation](https://lexicon.garden/lexicon/did:plc:btxrwcaeyodrap5mnjw2fvmz/pub.leaflet.blocks.membersOnlyDelimiter/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:btxrwcaeyodrap5mnjw2fvmz/pub.leaflet.blocks.membersOnlyDelimiter/examples)

## Definitions

### `pub.leaflet.blocks.membersOnlyDelimiter`

**Type**: `object`

Marks where members-only content begins and declares which publication members can read past it.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tierIds` | `array` | No | Paid tier ids that grant access when audience is tiers. An empty selection grants no membership access. |
| `audience` | `string` | Yes | Whether access is available to all subscribers, all paid members, or selected paid tiers. |

## Raw Schema

```json
{
  "id": "pub.leaflet.blocks.membersOnlyDelimiter",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "audience"
      ],
      "properties": {
        "tierIds": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Paid tier ids that grant access when audience is tiers. An empty selection grants no membership access."
        },
        "audience": {
          "type": "string",
          "description": "Whether access is available to all subscribers, all paid members, or selected paid tiers.",
          "knownValues": [
            "subscribers",
            "paid",
            "tiers"
          ]
        }
      },
      "description": "Marks where members-only content begins and declares which publication members can read past it."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
