ERROR: Inconsistent item format
What does this mean?
I’m getting this error in my code node, but I don’t know what it means. Looking at the data arriving at the node, it seems fine to me. What should I be looking for to resolve this?
The incoming data is 2 items. The items each have a json property containing some json data, and a binary file containing a pdf file.
Workflow:
This code node is the first node after an “Execute Workflow Trigger” node.
Output returned by the last node
These are the json items coming from the previous workflow:
[
{
“cm_c”: “36d0fefa-b950-47e1-ab34-ef3a61ae5faf”,
“cm_l”: “523c13a5-2768-464c-aa89-01dc4487edd2”,
“path”: “/36d0fefa-b950-47e1-ab34-ef3a61ae5faf/523c13a5-2768-464c-aa89-01dc4487edd2/Correspondence Others/”,
“filename”: “230727094713 11300 Preliminary Notification of Claim Joe Smith.pdf” },
{
“cm_c”: “36d0fefa-b950-47e1-ab34-ef3a61ae5faf”,
“cm_l”: “523c13a5-2768-464c-aa89-01dc4487edd2”,
“path”: “/36d0fefa-b950-47e1-ab34-ef3a61ae5faf/523c13a5-2768-464c-aa89-01dc4487edd2/Correspondence Others/”,
“filename”: “230727094713 11300 Preliminary Notification of Claim Joanne Smith.pdf”
}
]
There is a pdf with each item as well.
I’m looking at the data and thinking it looks just as it should. I want to delete the binary files as they have already been stored in our file storage in the previous workflow, and I want to ensure that they don’t get used for anything else now, but I do have more to do using the json data in following nodes.
So glad to have someone to ask about this, and grateful for any help or advice,
Thanks, D