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