Hi,
I have this schema for ParseJson but I don't now why doesn't works.
{
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": [
"string",
"null"
]
},
"link": {
"type": [
"string",
"null"
]
},
"id": {
"type": [
"string",
"null"
]
},
"type": {},
"size": {
"type": [
"integer",
"null"
]
},
"referenceId": {
"type": [
"string",
"null"
]
},
"driveId": {
"type": [
"string",
"null"
]
},
"status": {
"type": [
"integer",
"null"
]
},
"uploadSessionUrl": {}
},
"required": [
"name",
"link",
"id",
"type",
"size",
"referenceId",
"driveId",
"status",
"uploadSessionUrl"
]
}
}
I get this issue:
[
{
"message": "Invalid type. Expected Object but got Array.",
"lineNumber": 0,
"linePosition": 0,
"path": "",
"schemaId": "#",
"errorType": "type",
"childErrors": []
}
]