Agent Tool Selection
Choose the next tool and decide whether a person should review the action.
Local developer tool
Define Choice and Boolean questions visually, then copy a validated generic schema as JSON or JavaScript.
Everything runs in your browser. This tool does not call Jev or generate an external API payload.
Start from an example
Load a generic example, then adapt it to your own decision workflow.
Choose the next tool and decide whether a person should review the action.
Route a support request and flag cases that need human escalation.
Choose a deployment outcome and determine whether approval is required.
Define the decision
Decision name is required.
Resolve 4 issues to generate output.
Live output
Decision schema basics
A decision schema is a structured description of the questions a workflow needs to answer. It gives each question a defined type and a known set of allowed answers.
Structured decisions make AI workflows easier to validate, route, and connect to later steps because downstream code receives predictable values instead of unstructured prose.
Generic Schema
Illustrative ExampleThis example is a tool-neutral format, not an official Jev API payload.
{
"schemaVersion": 1,
"name": "Code review gate",
"questions": [
{
"type": "choice",
"question": "Should this code be deployed?",
"options": [
"Deploy",
"Review",
"Reject"
]
},
{
"type": "boolean",
"question": "Does this change need human approval?",
"options": [
true,
false
]
}
]
}Common uses
How it works
Give the decision a name, add questions, select each question type, and fill in Choice options. The preview updates when the schema is valid.
Supported types
Choice questions accept two or more unique text options. Boolean questions use fixed true and false values.
Limitations
V1 does not support scoring, ranking, advanced rules, saved history, external integrations, or provider-specific payloads.
Evidence
The source establishes the broader typed-decision context. The builder's generic schema and examples are explicitly illustrative and are not copied from an API contract.
Last verified: