Retrieve the complete schema and input requirements for a workflow
workflow_id.
The response includes the workflow’s name, description, blueprint, and most importantly, the jobPayloadSchema object that defines all workflow inputs.
jobPayloadSchema object defines all workflow inputs, their unique variable names (e.g., workflow_input_we4tej0ly), and their data types.
| Type | Description | Example Value |
|---|---|---|
str | Text string | "Hello World" |
float | Numeric value | 45.8 |
bool | Boolean | true or false |
date | Date string | "2025-11-09" |
file | Single file URL | "https://files.opus.com/..." |
array | List of values | ["item1", "item2"] |
array_files | Multiple file URLs | ["url1", "url2"] |
object | Nested object | {"key": "value"} |