@Andrew_J , I am getting below error in Parse JSON "
ValidationFailed
The schema validation failed"
I wrote the below schema, can you please check anything is wrong with that..
{
"type": "array",
"items": {
"type": "object",
"properties": {
"ID": {
"type": "integer"
},
"GRVNumber": {
"type": "string"
},
"GRVDate": {
"type": "string",
"format": "date-time"
},
"Department": {
"type": "string"
},
"SupplierName": {
"type": "string"
},
"GRVStatus": {
"type": "string"
},
"CreatedBy": {
"type": "string"
},
"PONumber": {
"type": "string"
}
},
"required": ["ID", "GRVNumber", "GRVDate", "Department", "SupplierName", "GRVStatus", "CreatedBy", "PONumber"]
}
}
Thank You
Manoj