Trying to understand where the issue is with the JSON on the parse JSON step.
Full Error: The 'content' property of actions of type 'ParseJson' must be valid JSON. The provided value cannot be parsed: 'Error parsing Infinity value. Path '', line 1, position 1.'.
JSON response in body:
{
"@odata.context": "$metadata#Students(studentID,domainID,orgID,lastName,firstName,notActive,roleID)",
"@odata.metadataEtag": "W/\"705e7fea-6c73-4b97-9aeb-9be57bfa2033\"",
"value": [
{
"studentID": "68818",
"domainID": "XXX",
"orgID": "TD1701MC1132",
"lastName": "SMITH",
"firstName": "ABEL",
"notActive": "no",
"roleID": "EMPLOYEE_XXX"
}
]
}
The Parse JSON schema is below:
{
"type": "object",
"properties": {
"value": {
"type": "array",
"items": {
"type": "object",
"properties": {
"studentID": {
"type": "string"
},
"domainID": {
"type": "string"
},
"orgID": {
"type": "string"
},
"lastName": {
"type": "string"
},
"firstName": {
"type": "string"
},
"notActive": {
"type": "string"
},
"roleID": {
"type": "string"
}
},
"required": [
"studentID",
"domainID",
"orgID",
"lastName",
"firstName",
"notActive",
"roleID"
]
}
},
"@odata.context": {
"type": "string"
},
"@odata.metadataEtag": {
"type": "string"
}
}
}
I copied and pasted the JSON to generate the schema and it recognized it. However, when running the flow, it keeps hanging on this parse JSON step. What does 'Error parsing Infinity value' mean?
Thanks in advance.