I recently joined Lambda and have been attempting to create a simple JSON object. However, I keep encountering an error that says "parsing error, unexpected token."
Here is my code, which I have verified to be valid JSON:
{
"metadata": {
"version": "1"
},
"content": [
{
"elementType": "html",
"focal": false,
"html": "<div>My Lambda Object</div>"
}
]
}
This issue is puzzling as even their own examples result in the same error message. Could it be something that I am overlooking?