Type Alias: SslMonitorSchemaType
type SslMonitorSchemaType = MonitorSchema<{
certificateWarningDays: z.ZodNumber;
host: z.ZodString;
port: z.ZodNumber;
type: z.ZodLiteral<"ssl">;
}>;
Defined in: shared/types/schemaTypes.ts:240
Zod schema describing SSL certificate monitor payloads.