Fix schema

This commit is contained in:
allegroai 2021-05-03 18:01:29 +03:00
parent 9ae2943f7d
commit 66cc49313b

View File

@ -44,28 +44,33 @@ batch_operation {
}
}
response {
failures {
type: array
item {
type: object
id: {
description: ID of the failed entity
type: string
}
error: {
description: Error info
type: object
properties {
failures {
type: array
items {
type: object
properties {
codes {
type: array
item {type: integer}
}
msg {
id: {
description: ID of the failed entity
type: string
}
data {
error: {
description: Error info
type: object
additionalProperties: True
properties {
codes {
type: array
items {type: integer}
}
msg {
type: string
}
data {
type: object
additionalProperties: True
}
}
}
}
}