Offer Approval with Compensation and Equal Pay Coruless
Recruiters need to extend offers quickly while ensuring compensation is within band and does not violate equal pay principles.
Das Problem
Compensation offers are validated before extending to candidates. Corules checks the proposed salary against the role's pay band for the location, flags offers significantly below market median (potential bias signal), and escalates offers exceeding recruiter authority to the compensation committee. Every offer decision logs the band data version used.
So löst Corules es
ESCALATE: Proposed salary $72K below p25 ($78K) for role/location. Flagging for compensation review — potential equity concern.
Richtlinienbeispiel
// Offer approval policy (CEL)
context.proposed_salary >= params.pay_bands[context.role][context.location].min
&& context.proposed_salary <= params.pay_bands[context.role][context.location].max
&& context.proposed_salary >= params.pay_bands[context.role][context.location].p25Integrationsoptionen
Frequently Asked Questions
Why does a below-band offer escalate instead of block?
Low offers may indicate bias risk (requiring human review) rather than a clear policy violation. Escalation preserves human judgment while ensuring the pattern is surfaced.
How often are pay bands updated?
Bands are stored as parameters and can be updated on any cadence (annually, semi-annually) without redeploying policy logic.