You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description":"Multipart field name to bind to this input. Defaults to 'media' when only one http_input node exists; otherwise defaults to the node id."
126
+
},
127
+
"fields":{
128
+
"type":"array",
129
+
"description":"Optional list of multipart fields for this node. When set, the node exposes one output pin per entry (pin name matches the field name). Entries may be strings or objects with { name, required }.",
130
+
"items":{
131
+
"oneOf":[
132
+
{"type":"string"},
133
+
{
134
+
"type":"object",
135
+
"additionalProperties":false,
136
+
"properties":{
137
+
"name":{"type":"string"},
138
+
"required":{"type":"boolean","default":true}
139
+
},
140
+
"required":["name"]
141
+
}
142
+
]
143
+
}
144
+
},
145
+
"required":{
146
+
"type":"boolean",
147
+
"description":"If true (default), the request must include this field.",
0 commit comments