meltingsand
Member
I have some data which Chat GPT is outputting in this format:
[
{"Category" : "Home", "Task" : "Wash Car", "Date" : "Feb 23, 2025"},
{"Category" : "Church", "Task" : "Send new report to the Bishop", "Date" : ""}
{"Category" : "Work", "Task" : "Email new client data", "Date" : "Feb 28, 2025"}
]
This seems like a valid array format, but when I make the output non simple it puts everything in one variable like this: https://share.zight.com/eDubJ7A5
If I feed it to Iterator in that format it just puts the whole array in a single field like this: https://share.zight.com/OAudejEN
How should I alter the output format so it can be parsed by Iterator and loop through one element at a time?
You can check this out in my account: [email protected]
[
{"Category" : "Home", "Task" : "Wash Car", "Date" : "Feb 23, 2025"},
{"Category" : "Church", "Task" : "Send new report to the Bishop", "Date" : ""}
{"Category" : "Work", "Task" : "Email new client data", "Date" : "Feb 28, 2025"}
]
This seems like a valid array format, but when I make the output non simple it puts everything in one variable like this: https://share.zight.com/eDubJ7A5
If I feed it to Iterator in that format it just puts the whole array in a single field like this: https://share.zight.com/OAudejEN
How should I alter the output format so it can be parsed by Iterator and loop through one element at a time?
You can check this out in my account: [email protected]