Skip to main content

Type Alias: HttpLatencyMonitorSchemaType

HttpLatencyMonitorSchemaType = z.ZodObject<{ activeOperations: ActiveOperationsArray; checkInterval: z.ZodNumber; history: HistoryArray; id: z.ZodString; lastChecked: z.ZodOptional<z.ZodDate>; maxResponseTime: z.ZodNumber; monitoring: z.ZodBoolean; responseTime: z.ZodNumber; retryAttempts: z.ZodNumber; status: MonitorStatusEnum; timeout: z.ZodNumber; type: z.ZodLiteral<"http-latency">; url: z.ZodString; }>

Defined in: shared/types/schemaTypes.ts:171

Zod schema describing HTTP latency monitor payloads.