Skip to content

workflow.validate_context

Operation: workflow.validate_context
Category: workflow
Tags: control-flow, validation

Check that required context keys exist before proceeding

Type: Native (built-in)
Timeout: 300s
Retries: 3 (ExponentialWithJitter)

NameTypeDescription
validatedBooleanWhether all required keys were present
{
"required_keys": []
}
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("workflow-validate-context", "transform", (n) =>
n.config({
operation: "workflow.validate_context",
// ... node-specific config
})
)
.build();