It says SCHEMA VALIDATION FAILED.

I have used the following query:
Content:
{
"type": "array",
"items": {
"type": "object",
"properties": {
"Region": {
"type": ["string", "null"]
},
"Retailer": {
"type": ["string", "null"]
},
"Global Location ID": {
"type": ["string", "null"]
},
"Total Revenue": {
"type": ["number", "string", "null"]
}
}
}
}
Schema:
{
"type": "array",
"items": {
"type": "object",
"properties": {
"Region": {
"type": [
"string",
"null"
]
},
"Retailer": {
"type": [
"string",
"null"
]
},
"Global Location ID": {
"type": [
"string",
"null"
]
},
"Total Revenue": {
"type": [
"string",
"number",
"null"
]
}
}
}
}
I'm getting the error that Action 'Parse_JSON' failed and displays this error in the output:
[
{
"message": "Invalid type. Expected Array but got Object.",
"lineNumber": 0,
"linePosition": 0,
"path": "",
"schemaId": "#",
"errorType": "type",
"childErrors": []
}
]