NIP-22 ====== Connection Limitations ---------------------- `draft` `optional` Upon connection, and at any point during the connection, the Relay can send a `LIMITS` payload to the Client reflecting the current state of the user's rights in the relay. ```json ["LIMITS", { }] ``` Where `limit_properties` includes properties that are specifically designed to change the way Clients communicate. Options are: - `can_write: `, If false, Clients MUST NOT publish events to the relay. - `can_read: `, If false, Clients MUST NOT send `REQ` commands to the relay.

- `accepted_event_kinds: [, , ...]`, Clients MUST filter publishing events by these types. - `blocked_event_kinds: [, , ...]`, Clients MUST remove these types from publishing actions.

- `min_pow_difficulty: `: Clients MUST filter publishing events to have PoW (number of bits equal to zero) >= this value

- `max_message_length: `, Clients MUST filter publishing events and crop/chunk `REQ` filters by this length. - `max_subscriptions: `, Clients MUST reduce the number of subscriptions to this amount. - `max_filters: `, Clients MUST crop/chunk `REQ` filters by this amount. - `max_limit: `, Clients MUST clump each filter's `limit` value to this number and use `since` and `until` to get additional results. - `max_event_tags: `, Clients MUST filter publishing events by this `.tags` length. - `max_content_length: `, Clients MUST filter publishing events by this `.content` length.

- `created_at_msecs_ago: `, Clients MUST only send events whose `.created_at` is > than now - this number - `created_at_msecs_ahead: `, Clients MUST only send events whose `.created_at` is < than now + this number

- `filter_rate_limit: `: Clients MUST debounce filter changes after this amount in milliseconds. - `publishing_rate_limit: `: Clients MUST debounce publishing events by this amount in milliseconds.

- `required_tags: [ [ , ], [ , ] ]`, Clients MUST filter publishing events to contain all listed tag names and values. This payload SHOULD be cached in the Client's Relay connection object and updated as many times as the relay requests. Clients should use the information here to apply filters when sending events and `REQs` to the relay.