Add OrderWatcherPartialConfigSchema

This commit is contained in:
Leonid Logvinov
2018-07-13 17:44:00 +02:00
parent 6f4fd06d38
commit ca59528a32

View File

@@ -0,0 +1,13 @@
export const orderWatcherPartialConfigSchema = {
id: '/OrderWatcherPartialConfigSchema',
properties: {
stateLayer: { $ref: '/BlockParam' },
orderExpirationCheckingIntervalMs: { type: 'number' },
eventPollingIntervalMs: { type: 'number' },
expirationMarginMs: { type: 'number' },
cleanupJobIntervalMs: { type: 'number' },
isVerbose: { type: 'boolean' },
},
type: 'object',
required: [],
};