I have a backend endpoint which listen to the request and gives a JSON object
which is as below
{
"id": "f4c0be70-7329-4f7e-8e57-dfaf598e3735",
"created": "2023-05-25T06:32:56.633Z",
"completed": "2023-05-25T06:33:20.698Z",
"status": "COMPLETE",
"type": "instruct_basics",
"configuration": "resume",
"environment": "development",
"page_count": 2,
"webhook": {
"payload": "1684903244279x419306702443118600",
"url": "https://some.bubbleapps.io/version-test/api/2.2/wf/some_webhook/"
},
"parsed_document": {
"work_experience": {
"columns": [
{
"id": "company_name",
"values": [
{
"value": "facebook",
"type": "string"
},
{
"value": "google",
"type": "string"
},
{
"value": "Tesla",
"type": "string"
}
]
},
{
"id": "start_date",
"values": [
{
"value": "August '16",
"type": "string"
},
{
"value": "July '14",
"type": "string"
},
{
"value": "January '14",
"type": "string"
}
]
},
{
"id": "end_date",
"values": [
{
"value": "Present",
"type": "string"
},
{
"value": "June '16",
"type": "string"
},
{
"value": "June '14",
"type": "string"
}
]
},
{
"id": "job_title",
"values": [
{
"value": "Software Engineering Intern",
"type": "string"
},
{
"value": "Developer Community Manager",
"type": "string"
},
{
"value": "Experience Design & Development Intern",
"type": "string"
}
]
},
{
"id": "summary_of_responsibilities",
"values": [
{
"value": "Building a monitoring dashboard for datacenter, host, and application visualization; Building a library of reusable Angular 2 components",
"type": "string"
},
{
"value": "Created the developer program; Assisted the design, spec'ing, and testing of the WebRTC solution, RTCP Monitoring, and SMS API; Designed and developed the developer portal; Creation and growth of a developer community",
"type": "string"
},
{
"value": "Development of internal modes of communications; Working with the API team to develop a Developer Evangelism plan; Development of the developer documentation platform",
"type": "string"
}
]
}
]
},
"programming_languages": {
"columns": [
{
"id": "skill",
"values": [
{
"value": "HTML5",
"type": "string"
},
{
"value": "CSS/Sass",
"type": "string"
},
{
"value": "Angular 2",
"type": "string"
},
{
"value": "Typescript",
"type": "string"
},
{
"value": "Jasmin",
"type": "string"
},
{
"value": "NodeJS",
"type": "string"
},
{
"value": "Express",
"type": "string"
},
{
"value": "MongoDB",
"type": "string"
},
{
"value": "Git",
"type": "string"
},
{
"value": "REST API Design",
"type": "string"
},
{
"value": "Docker",
"type": "string"
},
{
"value": "Vagrant",
"type": "string"
},
{
"value": "IBM Bluemix",
"type": "string"
}
]
}
]
},
"email": null
},
"validations": [],
"validation_summary": {
"fields": 3,
"fields_present": 2,
"errors": 0,
"warnings": 0,
"skipped": 0
},
"classification_summary": [
{
"configuration": "resume",
"score": {
"value": 2,
"fields_present": 2,
"penalties": 0
}
}
],
"errors": [],
"payload": "1681234544279x123456702443118600"
}
then i want to run a node.js script to go through this JSON object and iterate through
Parsed_document_experience columns
I want to iterate through column and generate an array of object like below
Job Title: Global Marketing Manager
Company: blu Advertising
Start Date: October 2017
End Date: Present
Description: Enhanced open rate for online customer campaigns by 32%, developed four additional market territories in the Mid-West, established effective working relationships with sales managers and agency teams
Job Title: Marketing Manager
Company: Gree Advertising
Start Date: December 2013
End Date: September 2017
Description: Executed a Facebook-based marketing program which resulted in a 28% increase of in leads, 30% new subscribers to weekly blog
Job Title: Assistant Marketing Manager
Company: Online Shopping
Start Date: September 2010
End Date: September 2013
Description: Assisted senior manager in developing annual marketing plans and implementing marketing strategies, project management of marketing initiatives, created marketing strategies
unfortunately i have 0 knowledge of Node.js so asking help