Skip to main content

Type Alias: HttpStatusMonitorSchemaType

HttpStatusMonitorSchemaType = z.ZodObject<{ activeOperations: ActiveOperationsArray; checkInterval: z.ZodNumber; expectedStatusCode: z.ZodNumber; history: HistoryArray; 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<"http-status">; url: z.ZodString; }>

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

Zod schema describing HTTP status monitor payloads.