mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2025-11-20 17:48:34 +00:00
Use fruits and vegetable names
This commit is contained in:
parent
f8912cc87c
commit
478304bee0
@ -29,15 +29,15 @@ In n8n, the data that is passed between nodes is an array of objects with the fo
|
||||
// Any kind of JSON data is allowed. So arrays and the data being deeply nested is fine.
|
||||
json: { // The actual data n8n operates on (required)
|
||||
// This data is only an example it could be any kind of JSON data
|
||||
alfa: 'bravo',
|
||||
charlie: {
|
||||
delta: 1
|
||||
apple: 'beets',
|
||||
carrot: {
|
||||
dill: 1
|
||||
}
|
||||
},
|
||||
// Binary data of item. The most items in n8n do not contain any (optional)
|
||||
binary: {
|
||||
// The key-name "alfa" is only an example. Any kind of key-name is possible.
|
||||
alfa: {
|
||||
// The key-name "apple" is only an example. Any kind of key-name is possible.
|
||||
apple: {
|
||||
data: '....', // Base64 encoded binary data (required)
|
||||
mimeType: 'image/png', // Optional but should be set if possible (optional)
|
||||
fileExtension: 'png', // Optional but should be set if possible (optional)
|
||||
|
||||
@ -9,16 +9,16 @@ In n8n, all data passed between nodes is an array of objects. It has the followi
|
||||
// Wrap each item in another object, with the key 'json'
|
||||
"json": {
|
||||
// Example data
|
||||
"alfa": "bravo",
|
||||
"charlie": {
|
||||
"delta": 1
|
||||
"apple": "beets",
|
||||
"carrot": {
|
||||
"dill": 1
|
||||
}
|
||||
},
|
||||
// For binary data:
|
||||
// Wrap each item in another object, with the key 'binary'
|
||||
"binary": {
|
||||
// Example data
|
||||
"alfa": {
|
||||
"apple": {
|
||||
"data": "....", // Base64 encoded binary data (required)
|
||||
"mimeType": "image/png", // Best practice to set if possible (optional)
|
||||
"fileExtension": "png", // Best practice to set if possible (optional)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user