@CFernandes . Thank you so much, I believe yours will work. Can you tell me how I can go about this? below is my Parsed Jason
{
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"link": {
"type": "string"
},
"id": {
"type": "string"
},
"type": {},
"size": {
"type": "integer"
},
"referenceId": {
"type": "string"
},
"driveId": {
"type": "string"
},
"status": {
"type": "integer"
},
"uploadSessionUrl": {}
},
"required": [
"name",
"link",
"id",
"type",
"size",
"referenceId",
"driveId",
"status",
"uploadSessionUrl"
]
}
}
Below is what I tried after your answer. still did not work
{
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": ["string", "null"]
},
"link": {
"type": ["string", "null"]
},
"id": {
"type": ["string", "null"]
},
"type": {
"type": ["string", "null"]
},
"size": {
"type": ["integer", "null"]
},
"referenceId": {
"type": ["string", "null"]
},
"driveId": {
"type": ["string", "null"]
},
"status": {
"type": ["integer", "null"]
},
"uploadSessionUrl": {
"type": ["string", "null"]
}
},
"required": [
"name",
"link",
"id",
"type",
"size",
"referenceId",
"driveId",
"status",
"uploadSessionUrl"
]
}
}