Type Alias: HttpLatencyMonitorSchemaType
type HttpLatencyMonitorSchemaType = MonitorSchema<{
followRedirects: z.ZodOptional<z.ZodBoolean>;
maxResponseTime: z.ZodNumber;
type: z.ZodLiteral<"http-latency">;
url: z.ZodString;
}>;
Defined in: shared/types/schemaTypes.ts:100
Zod schema describing HTTP latency monitor payloads.