@Pstork1 I was able to return a result set once I provided a JSON sample with a smaller data set. I guess my original was too large. However, I'm still unable to return the fields from the resultset to powerapps. It's only returning two unknown columns "items" & "type".



If I try to parse and then use "Respond To Power Apps" step, I can only see "type" as a field and not my actual fields from my stored procedure:

here is my JSON schema:
{
"type": "object",
"properties": {
"ResultSets": {
"type": "object",
"properties": {
"Table1": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Id_TraineeSignedTask": {
"type": "integer"
},
"Trainee_Id": {
"type": "integer"
},
"Task_Id": {
"type": "integer"
},
"TrainerAtTimeOfTraineeSignature": {
"type": "string"
},
"CourseVersion_Id": {
"type": "integer"
},
"Note": {
"type": "string"
},
"Id_TrainerSignedTask": {
"type": "integer"
},
"TraineeSignedTask_Id": {
"type": "integer"
},
"TrainerSignatureTime": {
"type": "string"
},
"TrainerName": {
"type": "string"
},
"TaskStatus": {
"type": "string"
}
},
"required": [
"Id_TraineeSignedTask",
"Trainee_Id",
"Task_Id",
"TrainerAtTimeOfTraineeSignature",
"CourseVersion_Id",
"Note",
"Id_TrainerSignedTask",
"TraineeSignedTask_Id",
"TrainerSignatureTime",
"TrainerName",
"TaskStatus"
]
}
}
}
},
"OutputParameters": {
"type": "object",
"properties": {}
}
}
}