Type Alias: ReplicationMonitorSchemaType
type ReplicationMonitorSchemaType = MonitorSchema<{
maxReplicationLagSeconds: z.ZodNumber;
primaryStatusUrl: z.ZodString;
replicaStatusUrl: z.ZodString;
replicationTimestampField: z.ZodString;
type: z.ZodLiteral<"replication">;
}>;
Defined in: shared/types/schemaTypes.ts:201
Zod schema describing replication monitor payloads.