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 { response {
failures { type: object
type: array properties {
item { failures {
type: object type: array
id: { items {
description: ID of the failed entity
type: string
}
error: {
description: Error info
type: object type: object
properties { properties {
codes { id: {
type: array description: ID of the failed entity
item {type: integer}
}
msg {
type: string type: string
} }
data { error: {
description: Error info
type: object type: object
additionalProperties: True properties {
codes {
type: array
items {type: integer}
}
msg {
type: string
}
data {
type: object
additionalProperties: True
}
}
} }
} }
} }