Good Day all,
I'm having issue with building a simple flow that Parses JSON generated by an AI Worker.
The Input is simple:
{
"Invoice Status": "New Invoice",
"Company Name": "hooperhere.co.uk",
"Sender Forename": "Jon",
"Sender Surname": "Hooper"
}
and the Parse JSON tool looks like it has worked:
As each of the fields is filled.
However when I access or use any of the parsed fields, they are empty.
The Schema I'm using in Parsed JSON is:
{
"type": "object",
"properties": {
"body": {
"type": "object",
"properties": {
"Invoice Status": {
"type": "string"
},
"Company Name": {
"type": "string"
},
"Sender Forename": {
"type": "string"
},
"Sender Surname": {
"type": "string"
}
}
}
}
}
Any Ideas?