@v-yetonggu-msft please see below, i copied it from the earlier post that you have sent.
This is the schema in the failed run:
{
"type": "object",
"properties": {
"d": {
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"__metadata": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"uri": {
"type": "string"
},
"type": {
"type": "string"
}
}
},
"text": {
"type": "string"
}
},
"required": [
"__metadata",
"text"
]
}
},
"__next": {
"type": "string"
}
}
}
}
}And this is the schema in the actual flow:
{
"type": "object",
"properties": {
"d": {
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"__metadata": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"uri": {
"type": "string"
},
"type": {
"type": "string"
}
}
},
"text": {
"type": "string"
}
},
"required": [
"__metadata",
"text"
]
}
},
"__next": {
"type": "string"
}
}
}
}
}