diff --git a/src/configuration/review-incentivizer-config.ts b/src/configuration/review-incentivizer-config.ts index a1c181e2..440add8d 100644 --- a/src/configuration/review-incentivizer-config.ts +++ b/src/configuration/review-incentivizer-config.ts @@ -2,8 +2,20 @@ import { Static, Type } from "@sinclair/typebox"; export const reviewIncentivizerConfigurationType = Type.Object( { - baseRate: Type.Number(), - conclusiveReviewCredit: Type.Number(), + /** + * Number of lines of code that equals $1 in review credit + */ + baseRate: Type.Number({ + default: 100, + description: "Number of lines of code that equals $1 in review credit", + }), + /** + * Flat rate bonus in dollars for completing a conclusive review i.e (Approved or Changes Requested) + */ + conclusiveReviewCredit: Type.Number({ + default: 25, + description: "Flat rate bonus in dollars for completing a conclusive review i.e (Approved or Changes Requested)", + }), }, { default: {} } );