aboutsummaryrefslogtreecommitdiffstats
path: root/packages/connect/src/schemas/websocket_orderbook_channel_config_schema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/connect/src/schemas/websocket_orderbook_channel_config_schema.ts')
-rw-r--r--packages/connect/src/schemas/websocket_orderbook_channel_config_schema.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/connect/src/schemas/websocket_orderbook_channel_config_schema.ts b/packages/connect/src/schemas/websocket_orderbook_channel_config_schema.ts
index 2e9987e63..81c0cac9c 100644
--- a/packages/connect/src/schemas/websocket_orderbook_channel_config_schema.ts
+++ b/packages/connect/src/schemas/websocket_orderbook_channel_config_schema.ts
@@ -2,6 +2,9 @@ export const webSocketOrderbookChannelConfigSchema = {
id: '/WebSocketOrderbookChannelConfig',
type: 'object',
properties: {
- heartbeatIntervalMs: { type: 'number' },
+ heartbeatIntervalMs: {
+ type: 'number',
+ minimum: 10,
+ },
},
};