ValidationErrorData
Which fields failed validation, and why.
- issuesType: array object[] …100
Every field that failed validation, up to 100 per response. Absent when the request was rejected for a reason other than validation —
messagesays why.- fieldType: stringrequired
The field that failed, as a dotted path —
listing.price.amountfor a nested field,lines.3.quantityfor the fourth entry of an array. Empty when the problem is with the request body as a whole. - messageType: stringrequired
What is wrong with the value you sent.
Examples
{
"issues": [
{
"field": "productIds",
"message": "Too big: expected array to have <=200 items"
},
{
"field": "lines.3.quantity",
"message": "Too small: expected number to be >=1"
}
]
}