-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbest-practice-scoring-policy.schema.json
More file actions
53 lines (53 loc) · 2.2 KB
/
Copy pathbest-practice-scoring-policy.schema.json
File metadata and controls
53 lines (53 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Best Practice Scoring Policy",
"description": "Sidecar schema validating the top-level shape of best-practice-scoring-policy.json. Describes composite score weights, evidence quality modifiers, freshness and contradiction penalties, confidence adjustments, quality-gate penalties, clamps, recommendation thresholds, eligibility criteria, tier-assignment rules, and per-stage-class scoring rules.",
"type": "object",
"required": [
"schemaVersion",
"compositeScoreWeights",
"evidenceQuality",
"freshness",
"contradiction",
"confidenceLevelAdjustments",
"qualityGatePenalties",
"adjustmentClamp",
"finalScoreClamp",
"defaultRecommendationThreshold",
"winMarginByConfidence",
"defaultEligibilityCriteria",
"tierAssignmentRules",
"stageClassRules"
],
"properties": {
"schemaVersion": { "type": "string" },
"compositeScoreWeights": {
"type": "object",
"required": ["defaultSuitability", "robustness", "adoption", "operationalFit", "specMatch"],
"properties": {
"defaultSuitability": { "type": "number" },
"robustness": { "type": "number" },
"adoption": { "type": "number" },
"operationalFit": { "type": "number" },
"specMatch": { "type": "number" },
"renormalizeWhenAxisMissing": {
"type": "array",
"items": { "type": "string" },
"description": "Axes whose weight is redistributed proportionally when the axis has no input source. Absent or empty preserves the pre-2026-05-27 literal-multiplication behaviour."
}
}
},
"evidenceQuality": { "type": "object" },
"freshness": { "type": "object" },
"contradiction": { "type": "object" },
"confidenceLevelAdjustments": { "type": "object" },
"qualityGatePenalties": { "type": "object" },
"adjustmentClamp": { "type": "object" },
"finalScoreClamp": { "type": "object" },
"defaultRecommendationThreshold": { "type": "number" },
"winMarginByConfidence": { "type": "object" },
"defaultEligibilityCriteria": { "type": "array" },
"tierAssignmentRules": { "type": "object" },
"stageClassRules": { "type": "array" }
}
}