aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-watcher/src/schemas/websocket_utf8_message_schema.ts
blob: 0a0eed407b2a08072898a687453f2076681ef6fa (plain) (blame)
1
2
3
4
5
6
7
8
export const webSocketUtf8MessageSchema = {
    id: '/WebSocketUtf8MessageSchema',
    properties: {
        utf8Data: { type: 'string' },
    },
    type: 'object',
    required: ['utf8Data'],
};