Execute Workflow Trigger Doesn't get triggered and data doesn't get passed

I didn’t find this seemingly simple answer…

I am trying to pass json to from one workflow to a sub the but sub workflow never triggers… never receives the data. What am I doing wrong?

When you execute the workflow do you seen any items being passed to the “Enrich Company Data” node? I’m assuming that’s the one that’s not being executed.

No that’s the weird part… the only time there is something is when it passes an empty array even thought the input has plenty of data from the parent workflow

n8n team any update on this?

{
“properties”: {
“jobListings”: {
“type”: “array”,
“items”: {
“type”: “object”,
“properties”: {
“id”: { “type”: “string” },
“createdTime”: { “type”: “string” },
“fields”: {
“type”: “object”,
“properties”: {
“Lead Status”: { “type”: “string” },
“Title”: { “type”: “string” },
“Company Name”: { “type”: “string” },
“Location”: { “type”: “string” },
“LinkedIn Company URL”: { “type”: “string” },
“LInkedIn Job Posting URL”: { “type”: “string” },
“LinkedInJobID”: { “type”: “string” },
“Salary Text”: { “type”: “string” }
}
}
}
}
}
}
}

error:

{
“errorMessage”: “Invalid JSON schema. Missing key properties in schema”,
“errorDetails”: {},
“n8nDetails”: {
“nodeName”: “Execute Company Data Sub Workflow”,
“nodeType”: “n8n-nodes-base.executeWorkflowTrigger”,
“nodeVersion”: 1.1,
“time”: “5/1/2025, 5:39:49 PM”,
“n8nVersion”: “1.78.1 (Cloud)”,
“binaryDataMode”: “filesystem”,
“stackTrace”: [
“NodeOperationError: Invalid JSON schema. Missing key properties in schema”,
" at getFieldEntries (/usr/local/lib/node_modules/n8n/node_modules/n8n-nodes-base/dist/utils/workflowInputsResourceMapping/GenericFunctions.js:77:11)“,
" at ExecuteContext.execute (/usr/local/lib/node_modules/n8n/node_modules/n8n-nodes-base/dist/nodes/ExecuteWorkflow/ExecuteWorkflowTrigger/ExecuteWorkflowTrigger.node.js:173:70)”,
" at WorkflowExecute.runNode (/usr/local/lib/node_modules/n8n/node_modules/n8n-core/dist/execution-engine/workflow-execute.js:633:42)“,
" at /usr/local/lib/node_modules/n8n/node_modules/n8n-core/dist/execution-engine/workflow-execute.js:882:62”,
" at /usr/local/lib/node_modules/n8n/node_modules/n8n-core/dist/execution-engine/workflow-execute.js:1216:20"
]
}
}