From c8082e6a0d302420920455b672fbc1c86b956f8b Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Tue, 26 Nov 2024 12:48:19 +0000 Subject: [PATCH] fix(config): add descriptions to JSON schema properties --- src/types/plugin-inputs.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/types/plugin-inputs.ts b/src/types/plugin-inputs.ts index 0c17250..a8ae05c 100644 --- a/src/types/plugin-inputs.ts +++ b/src/types/plugin-inputs.ts @@ -9,9 +9,9 @@ import { StaticDecode, Type as T } from "@sinclair/typebox"; */ export const pluginSettingsSchema = T.Object( { - matchThreshold: T.Number({ default: 0.95 }), - warningThreshold: T.Number({ default: 0.75 }), - jobMatchingThreshold: T.Number({ default: 0.75 }), + matchThreshold: T.Number({ default: 0.95, description: "The minimum similarity score when considering existing issues to be duplicates." }), + warningThreshold: T.Number({ default: 0.75, description: "" }), + jobMatchingThreshold: T.Number({ default: 0.75, description: "The minimum similarity score when considering users to be suitable for a job." }), }, { default: {} } );