I am trying to get a list of project from an HTTP request in power automate and use the return as a "database" to search my followup question.
When the Action is called and Power Automate fires i get the following error on the return
evaluated to type ‘TableDataType’ , expected type ‘StringDataType’ Error Code: FlowActionBadRequest
and the flow does not even get to the Parse value


here is the output of the Power Automate flow

raw outpuy
{
"statusCode": "200",
"schema": {
"type": "object",
"properties": {
"json": {
"title": "JSON",
"type": "string",
"x-ms-content-hint": "TEXT",
"x-ms-dynamically-added": true
}
},
"additionalProperties": {}
},
"body": {
"json": [
{
"project name": "check floating culvert",
"project responsible": "ABC",
"lead engineer": "ABC"
},
{
"project name": "transportation East Coast USA",
"project responsible": "ABC",
"lead engineer": "ABC"
},
{
"project name": "Cost optimization",
"project responsible": "ABC",
"lead engineer": "ABC"
},
{
"project name": "Lab",
"project responsible": "ABC",
"lead engineer": "ABC"
}
]
}
}