J.

Jev Vulnerability relevance Code Example

Prioritize findings that match the deployed environment.

Windows-only privilege escalation

Advisory Windows-only privilege escalation
Deployment Linux containers
Affected Package Yes

What exposure review is appropriate?

0% Confirm platform exclusion.
Confirm platform exclusion 83%
Urgent remediation 12%
Need inventory 5%

Let the application confirm platform exclusion.

Code
Conceptual pseudocode — not official Jev SDK syntax
// Conceptual pseudocode — not Jev SDK syntax
const state = {
  "advisory": "Windows-only privilege escalation",
  "deployment": "Linux containers",
  "affected_package": true
};

const decision = await evaluateDecision({
  state,
  question: "What exposure review is appropriate?",
  options: ["Confirm platform exclusion","Urgent remediation","Need inventory"],
});

// Your adapter normalizes the provider response.
// Tune this example threshold on labelled data.
if (decision.outcome === "Confirm platform exclusion"
    && decision.probability >= 0.85) {
  queueExposureReview(decision);
} else {
  queueForReview(decision);
}

This adapter illustrates the decision boundary. Check the official Jev docs for current API syntax.