Skip to main content

Type Alias: PingMonitorSchemaType

PingMonitorSchemaType = z.ZodObject<{ activeOperations: ActiveOperationsArray; checkInterval: z.ZodNumber; history: HistoryArray; host: z.ZodString; id: z.ZodString; lastChecked: z.ZodOptional<z.ZodDate>; monitoring: z.ZodBoolean; responseTime: z.ZodNumber; retryAttempts: z.ZodNumber; status: MonitorStatusEnum; timeout: z.ZodNumber; type: z.ZodLiteral<"ping">; }>

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

Zod schema describing ICMP ping monitor payloads.