Hey @Jcook,
I solved the problem on my own, but thanks for your tip to use a compose action.
Every time I was use the 'Parse JSON' action, i cliked on the 'Use sample payload to generate schema' and copy the schema of the variable. That didn't go well in the JSON.
Later on I manually typed in the values between the "" and the action worked.
Thanks to you, i added the text variable into the JSON with success.
For everyone else that wants to use a variable from something else (like MS Forms):
Load the (Form) details in a variable first before use the Parse JSON action.
Use the example of the details below in the Parse JSON action:
{
"type": "array",
"items": {
"type": "object",
"properties": {
"Number": {
"type": "string"
},
"Date": {
"type": "string"
},
"Note": {
"type": "string"
}
},
"required": [
"Number",
"Date",
"Note"
]
}
}
Good luck everyone!