aboutsummaryrefslogtreecommitdiffstats
path: root/packages/connect/src/schemas/websocket_orderbook_channel_config_schema.ts
blob: 81c0cac9ce8c3f2a496c3f50b49917c1f73091a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export const webSocketOrderbookChannelConfigSchema = {
    id: '/WebSocketOrderbookChannelConfig',
    type: 'object',
    properties: {
        heartbeatIntervalMs: {
            type: 'number',
            minimum: 10,
        },
    },
};