Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 8 additions & 20 deletions notifications/generated/notifications.json
Original file line number Diff line number Diff line change
Expand Up @@ -904,16 +904,10 @@
"rec-2"
]
},
"errors": {
"type": "array",
"description": "Error messages for records that failed during the asynchronous write operation.",
"items": {
"type": "string"
},
"example": [
"field validation failed",
"duplicate record"
]
"error": {
"type": "string",
"description": "The error that occurred during the asynchronous write operation. When multiple records fail, their error messages are joined into a single string.",
"example": "field validation failed; duplicate record"
}
}
}
Expand Down Expand Up @@ -2634,16 +2628,10 @@
"rec-2"
]
},
"errors": {
"type": "array",
"description": "Error messages for records that failed during the asynchronous write operation.",
"items": {
"type": "string"
},
"example": [
"field validation failed",
"duplicate record"
]
"error": {
"type": "string",
"description": "The error that occurred during the asynchronous write operation. When multiple records fail, their error messages are joined into a single string.",
"example": "field validation failed; duplicate record"
}
}
}
Expand Down
12 changes: 6 additions & 6 deletions notifications/notifications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -263,12 +263,12 @@ components:
items:
type: string
example: ["rec-1", "rec-2"]
errors:
type: array
description: Error messages for records that failed during the asynchronous write operation.
items:
type: string
example: ["field validation failed", "duplicate record"]
error:
type: string
description: >-
The error that occurred during the asynchronous write operation. When multiple
records fail, their error messages are joined into a single string.
example: "field validation failed; duplicate record"

# Subscribe create error event data
SubscribeCreateErrorData:
Expand Down
Loading