Type Alias: HttpMonitorSchemaType
type HttpMonitorSchemaType = MonitorSchema<{
followRedirects: z.ZodOptional<z.ZodBoolean>;
type: z.ZodLiteral<"http">;
url: z.ZodString;
}>;
Defined in: shared/types/schemaTypes.ts:112
Zod schema describing HTTP monitor payloads stored in persisted state.