Skip to content
Open
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
14 changes: 14 additions & 0 deletions authzed/api/v1/error_reason.proto
Original file line number Diff line number Diff line change
Expand Up @@ -413,4 +413,18 @@ enum ErrorReason {
// }
// }
ERROR_REASON_TRANSACTION_METADATA_TOO_LARGE = 29;

// The request failed because a deprecated relation or namespace was used.
//
// Example of an ErrorInfo:
//
// {
// "reason": "ERROR_REASON_DEPRECATED_RELATION_OR_NAMESPACE",
// "domain": "authzed.com",
// "metadata": {
// "deprecation_type": "somedeprecationtype",
// "deprecation_comments": "somecomments",
// }
// }
ERROR_REASON_DEPRECATED_RELATION_OR_NAMESPACE = 30;
}