Hi,
I am attempting to create a Google Doc from a Template, from a JSON. I’m first parsing the JSON, and then using the Google Doc from a Template module to map the variables into the Doc. I am getting the error below:
Below is the sample JSON, as well as the google docs template I am using
{
“optimizedResume”: {
“name”: “John Doe”,
“email”: “johndoe123@gmail.com”,
“phoneNumber”: “+1234567890”,
“location”: “New York, USA”,
“summary”: “Experienced Business Process Analyst with a strong background in data analysis and process improvement. Proficient in Lean Six Sigma principles and skilled in Gap Analysis. Adept at leveraging data analytics to drive operational efficiencies and support strategic initiatives. Committed to fostering a data-driven culture and collaborating with stakeholders to achieve transformative outcomes.”,
“skills”: [
“Data Analytics and Visualisation”,
“Business Process Improvement”,
“Lean Six Sigma Principles”,
“Gap Analysis”,
“Stakeholder Management”,
“Agile Project Management”,
“Advanced Excel Skills”,
“Process Documentation and Design”
],
“education”: [
{
“id”: “1”,
“name”: “BSc Industrial Engineering, First Class Honours”,
“startDate”: “2017-09”,
“endDate”: “2021-06”
}
],
“workExperience”: [
{
“id”: “1”,
“companyName”: “TechConsult Group”,
“roleTitle”: “Senior Business Analyst”,
“startDate”: “2022-02”,
“endDate”: “present”,
“location”: “USA”,
“bulletPoints”: [
“Led the delivery of efficient asset management solutions, integrating SAP with an Enterprise Asset Management (EAM) platform for a North American utilities company, demonstrating expertise in digital transformation and asset technology deployment.”,
“Conducted comprehensive testing including module testing, System Integration Testing (SIT), and User Acceptance Testing (UAT) for asset management solutions to ensure solutions were fit for purpose.”,
“Proposed and implemented automation into client weekly reporting, boosting operational efficiency and saving workstream leads 5+ hours weekly.”,
“Facilitated cross-functional workshops to define and prioritize requirements, aligning stakeholder needs with technological capabilities and industry best practices.”,
“Leveraged expertise in asset and product lifecycle management software such as Maximo and Teamcenter.”
]
},
{
“id”: “2”,
“companyName”: “Enterprise Solutions Inc.”,
“roleTitle”: “Consultant”,
“startDate”: “2020-01”,
“endDate”: “2022-01”,
“location”: “USA”,
“bulletPoints”: [
“Developed and executed a comprehensive project plan for a complex digital transformation initiative, aligning key objectives with organizational asset management strategy and ensuring efficient resource allocation.”,
“Implemented an agile project management approach, breaking down activities into manageable work packages and establishing an effective execution strategy, resulting in a 25% improvement in project delivery timelines.”,
“Led discovery workshops to map existing operational processes, leveraging this insight to design optimized digital workflows that enhanced asset utilization and operational efficiency.”,
“Orchestrated weekly stakeholder meetings and maintained seamless communication with the development team, ensuring alignment between business requirements and technical solutions in a large-scale digital transformation project.”,
“Conducted an extensive audit of physical assets across multiple sites, gathering critical data on locations and associated resources to inform strategic asset management decisions and improve resource allocation.”
]
}
],
“projects”: ,
“certifications”: [
{
“id”: “1”,
“title”: “AWS Certified Cloud Practitioner”,
“description”: “AWS Certified Cloud Practitioner”
},
{
“id”: “2”,
“title”: “Google Data Analytics Professional Certificate”,
“description”: “Google Data Analytics Professional Certificate”
},
{
“id”: “3”,
“title”: “Professional Scrum Master (PSM I)”,
“description”: “Professional Scrum Master”
},
{
“id”: “4”,
“title”: “Certified SAFe Agilist”,
“description”: “Certified SAFe Agilist”
}
],
“extracurriculars”:
},
“explanation”: [
“Enhanced the summary to reflect a focus on data analysis and strategic initiatives relevant to the job description.”,
“Reordered skills to prioritize data analytics and advanced Excel skills, aligning with the job requirements.”,
“Adjusted bullet points in work experience to emphasize analytical skills and data-driven decision-making.”,
“Removed less relevant skills to focus on those that match the job description.”
]
}
This is how I’ve done the mapping:
Any help is appreciated