Type Alias: DnsMonitorSchemaType
type DnsMonitorSchemaType = MonitorSchema<{
expectedValue: z.ZodOptional<z.ZodString>;
host: z.ZodString;
recordType: DnsRecordEnum;
type: z.ZodLiteral<"dns">;
}>;
Defined in: shared/types/schemaTypes.ts:30
Zod schema describing DNS monitor payloads.