flow
(required): The input flow that triggers the creation of the new object.flow
: The output flow after the object has been created, allowing you to chain further actions.object
: The newly created JavaScript object.hiddenProperties
: An array of property names that should be hidden from the node’s configuration interface. By default, this includes ["hiddenProperties", "valueTypes", "valueTypeOptions"]
.socketValues
: An array specifying the types of values that can be added as properties to the object. The default value is ["string", "array", "boolean", "integer"]
.socketInputs
: An array where you can define the names and types of the object’s properties. Each array element should be an object with name
and valueType
properties.flow
to the desired trigger or previous node’s output.object
output to other nodes that need to use the created object.flow
output to the next action you want to perform after the object is created.name
(string): “John Doe”age
(integer): 30email
(string): “john@example.com”subscribed
(boolean): trueobject
output to a Debug node to log the created user object.flow
input can prevent the object from being created.socketValues
configuration array.