Hello All,
This is my first post and would value some help please. Thanks.
I want to convert this json (this is output from a parse json module)
[
{
“milestone-1”: “Market Analysis and Strategy Conceptualization”,
“timeline-1”: “2025-08-20T00:00:00.000Z”,
“milestone-2”: “Design and Development of Lead Generation Workflow”,
“timeline-2”: “2025-09-05T00:00:00.000Z”,
“milestone-3”: “Integration and Adaptation of make.com and airtable”,
“timeline-3”: “2025-09-20T00:00:00.000Z”,
“milestone-4”: “Testing, Validation, and Deployment of New Lead Generation Flow”,
“timeline-4”: “2025-09-30T00:00:00.000Z”
}
]
I want to create this structure and have tried for hours using “Create Json” module but no luck.
[
{
“milestone”: “Sample Milestone 1”,
“timeline”: “2025-01-01”
},
{
“milestone”: “Sample Milestone 2”,
“timeline”: “2025-02-01”
},
{
“milestone”: “Sample Milestone 3”,
“timeline”: “2025-03-01”
},
{
“milestone”: “Sample Milestone 4”,
“timeline”: “2025-04-01”
}
]