aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-watcher/src/schemas/order_watcher_partial_config_schema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/order-watcher/src/schemas/order_watcher_partial_config_schema.ts')
-rw-r--r--packages/order-watcher/src/schemas/order_watcher_partial_config_schema.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/order-watcher/src/schemas/order_watcher_partial_config_schema.ts b/packages/order-watcher/src/schemas/order_watcher_partial_config_schema.ts
new file mode 100644
index 000000000..bc7d40524
--- /dev/null
+++ b/packages/order-watcher/src/schemas/order_watcher_partial_config_schema.ts
@@ -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: [],
+};