I am currently trying to connect Airtables → PandaDocs through Make and despite validating my JSON structure to an online validator, it still returns the error “Invalid JSON”. Would appreciate any help for this project.
After that last thing is to share your text output as a file or using a code block.
P.S.: Always search first, Check Make Academy. If this is helpful, mark it as a solution and Need expert help or have questions? Contact or comment below!
Hello @Robin_Hahn,
There are a couple of things you need to follow while handling JSON.
Make sure you use proper regular quotation marks (") not this ” or “.
Another thing is to remove unnecessary line breaks at the end of the line.
For example, on your every Description key there are line breaks at the end.
See this working example created.
[
{
"options":{
"optional":true,
"optional_selected":true,
"qty_editable":true
},
"data":{
"Name":"Prep place and finish",
"Description":"Pump truck, place and finish",
"Price":"4500",
"QTY":"1"
}
},
{
"options":{
"optional":true,
"optional_selected":true,
"qty_editable":true
},
"data":{
"Name":"Scan floor",
"Description":"Have scantec scan area prior to cutting",
"Price":"750",
"QTY":"1"
}
},
{
"options":{
"optional":true,
"optional_selected":true,
"qty_editable":true
},
"data":{
"Name":"Remove",
"Description":"Chip old section and haul away",
"Price":"1250",
"QTY":"1"
}
},
{
"options":{
"optional":true,
"optional_selected":true,
"qty_editable":true
},
"data":{
"Name":"Saw cut",
"Description":"Have Doncore in for sawcut",
"Price":"600",
"QTY":"1"
}
}
]
Hello @Robin_Hahn ,
If this helps you and solves your problems then please mark this topic as complete
Then later other makers also get more help based on this topic.