action truora_create_score_config { label: "Create Score Configurations" description: "Create a custom score configuration selecting the weight for each background check dataset and the country where it applies. Weights are numbers between 0 and 1 that represent how impactful the dataset is for the score. Keep in mind that the sum of all weights must equal 1." provider: truora method: POST path: "/v1/config" encoding: form output: { type: "object" description: "Represents a list of score configurations that apply in the country" properties: { ScoreConfigByCountry: { type: "array" description: "List of score configs that apply for the country" items: { type: "object" description: "Represents a set of configurations to determine the background check score" required: ["data_set", "weight"] properties: { data_set: { type: "string" description: "Background check dataset" } weight: { type: "string" description: "Dataset weight for score calculation" } } } } } } }