Please help! I've done this quite a few times in the past and not sure where I'm going wrong this time. I have a Parse JSON action which takes the values from a GET HTTP request and I'm trying to pass the array of excludeUsers values to a Compose action. The Flow runs successfully, but the compose box just shows me the option to download the Inputs and Outputs and loads a blank page when I click either one.

From the screenshot below you can see there are values returned from excludeUsers:

My JSON Schema is below:
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"displayName": {
"type": "string"
},
"createdDateTime": {
"type": "string"
},
"modifiedDateTime": {
"type": "string"
},
"state": {
"type": "string"
},
"sessionControls": {},
"conditions": {
"type": "object",
"properties": {
"userRiskLevels": {
"type": "array"
},
"signInRiskLevels": {
"type": "array"
},
"clientAppTypes": {
"type": "array",
"items": {
"type": "string"
}
},
"servicePrincipalRiskLevels": {
"type": "array"
},
"platforms": {},
"times": {},
"deviceStates": {},
"devices": {},
"clientApplications": {},
"applications": {
"type": "object",
"properties": {
"includeApplications": {
"type": "array",
"items": {
"type": "string"
}
},
"excludeApplications": {
"type": "array"
},
"includeUserActions": {
"type": "array"
},
"includeAuthenticationContextClassReferences": {
"type": "array"
}
}
},
"users": {
"type": "object",
"properties": {
"includeUsers": {
"type": "array",
"items": {
"type": "string"
}
},
"excludeUsers": {
"type": "array",
"items": {
"type": "string"
}
},
"includeGroups": {
"type": "array"
},
"excludeGroups": {
"type": "array"
},
"includeRoles": {
"type": "array"
},
"excludeRoles": {
"type": "array"
},
"includeGuestsOrExternalUsers": {},
"excludeGuestsOrExternalUsers": {}
}
},
"locations": {
"type": "object",
"properties": {
"includeLocations": {
"type": "array",
"items": {
"type": "string"
}
},
"excludeLocations": {
"type": "array"
}
}
}
}
},
"grantControls": {
"type": "object",
"properties": {
"operator": {
"type": "string"
},
"builtInControls": {
"type": "array",
"items": {
"type": "string"
}
},
"customAuthenticationFactors": {
"type": "array"
},
"termsOfUse": {
"type": "array"
},
"authenticationStrength@odata.context": {
"type": "string"
},
"authenticationStrength": {}
}
}
}
}