/** * This file was auto-generated by Fern from our API Definition. */ /** * The input for a JSON variable in a Workflow. */ export interface WorkflowRequestJsonInputRequest { /** The variable's name, as defined in the Workflow. */ name: string; type: "JSON"; value?: unknown; }