onepin nodes

Discover workflow node types and their config schemas from the CLI.

Discover the node types available in workflow definitions — the same data the canvas node-config panels are built from.


list

Synopsis

onepin nodes list [--json]

Description

Lists every node type with its input/output port definitions (GET /api/v1/nodes).

$onepin nodes list --json | jq '.[].node_type'
"source_script"
"processing_translator"
"processing_generator"
"processing_booster"
"validator_error_rate"
"sink_preview"

show

Synopsis

onepin nodes show <NODE_TYPE> [--json]

Description

Returns the full node definition plus runtime options for one node type (GET /api/v1/nodes/{node_type}) — including the complete config schema you need when editing a definition.

$# What can I configure on the voice generator?
$onepin nodes show processing_generator --json | jq '.config_schema'
$
$# Export format options
$onepin nodes show sink_preview --json | jq '.config_schema.format'
  • Workflow Definition — how node configs fit together
  • onepin workflows definition-schema — the JSON Schema for the whole definition