Interface IRiskValidation

Risk validation configuration. Defines validation logic with optional documentation.

interface IRiskValidation {
    note?: string;
    validate: IRiskValidationFn;
}

Properties

Properties

note?: string

Optional description for documentation purposes. Aids in understanding the purpose or behavior of the validation.

The validation function to apply to the risk check parameters.