Node Inputs
NodeInput is a sub-object inside a node object describing how the node connects to other nodes.
{
"name" : String,
"index" : Integer,
"configuration" : NodeInputConfig,
"status" : NodeInputStatus
}
| Member name | Type | Description |
|---|---|---|
| name | String | Input name, allowable values depend on node type |
| index | Integer | Index of the input with the given name (inputs are indexed individually by name) |
| configuration | NodeInputConfig | Input configuration |
| status | NodeInputStatus | Input status |
Node input configuration
NodeInputConfig{
"source" : SourceSelection
}
| Member name | Type | Description |
|---|---|---|
| source | SourceSelection | (Optional) Selection of the input source. This member is only present if the input source is configurable on this specific input. |
Node input status
NodeInputStatus{
"source" : SourceReference
}
| Member name | Type | Description |
|---|---|---|
| source | SourceReference | Current input source |