Error Types in the External Database Collections Service Plugin

Some endpoints in the external database service plugin must respond with errors if the request is invalid or cannot be successfully fulfilled. In such cases, your service must respond with an error specific to the particular issue in the request.

Error structure

Each error type conforms to a predefined structure. It includes an error code, an error message, and a data object with additional error handling information. In addition, each error type has a corresponding HTTP code.

Error objects have the following properties:

FieldTypeDescription
errorCodeStringA code that indicates why the request failed.
errorMessageStringA human-readable error message.
dataObjectAdditional error data specific to the error type.

For example, your service might receive a request to query a collection that does not exist. In this case, your service must respond with the relevant error code, a descriptive message, and a data object with the collectionId of the collection that was not found. This type of error looks like this:

Copy
1

Types of errors

The following table lists the errors your service must return based on the issue in the request:

Error CodeHTTP Status CodeDescription
ITEM_NOT_FOUNDNot Found (404)Item was not found in the specified collection. See corresponding data object.
ITEM_ALREADY_EXISTSConflict (409)Item with the same id already exists in the specified collection. See corresponding data object
COLLECTION_NOT_FOUNDNot Found (404)Collection was not found. See corresponding data object.
COLLECTION_ALREADY_EXISTSConflict (409)Collection with the same id already exists. See corresponding data object.
COLLECTION_CHANGE_NOT_SUPPORTEDBad Request (400)The service does not allow modifications to the specified collection. The corresponding data object lists the fields that caused the error.
REFERENCE_NOT_FOUNDNot Found (404)Reference was not found for the specified item. See corresponding data object.
REFERENCE_ALREADY_EXISTSConflict (409)Reference already exists for the specified item. See corresponding data object.
VALIDATION_ERRORBad Request (400)One or more fields in the request are not valid. The corresponding data object lists the validation errors caused by the request.
BAD_REQUESTBad Request (400)Generic error indicating an invalid request. Use the errorMessage field to provide more information.

Error data object structures

Each error object type has a unique data property structure. This section details the data structure associated with each type.

Item not found

FieldTypeDescription
itemIdStringID of the item that was not found.
Copy
1

Item already exists

FieldTypeDescription
itemIdStringID of the item that already exists.
Copy
1

Collection not found

FieldTypeDescription
collectionIdStringID of the collection that was not found.
Copy
1

Collection already exists

FieldTypeDescription
collectionIdStringID of the collection that already exists.
Copy
1

Collection changes not supported

This data property of this error lists all fields that the request attempted, but failed, to change. Each such attempt causes an individual Collection Change Not Supported error.

FieldTypeDescription
errorsArray of collection change not supported errorsAn array of unsupported collection change errors caused by the request. One error is produced for each unmodifiable field the caller attempts to change.

Collection change not supported

Each individual Collection Change not Supported error has the following structure:

FieldTypeDescription
fieldKeyStringKey of the field that cannot be changed.
messageStringError message explaining why the field cannot be changed.
Copy
1

Reference not found

FieldTypeDescription
referringItemIdStringID of the referring item.
referencedItemIdStringID of the referenced item.
Copy
1

Reference already exists

FieldTypeDescription
referringItemIdStringID of the referring item.
referencedItemIdStringID of the referenced item.
Copy
1

Validation violations

This data property of this error lists all individual validation violations caused by the request.

FieldTypeDescription
violationsArray of validation violations.An array of all validation violations caused by the request.

Validation violation

Each individual validation violation has the following structure:

FieldTypeDescription
fieldPathStringPath to the invalid field.
rejectedValueStringThe invalid value.
messageStringError message that describes the violation.
Copy
1
Was this helpful?
Yes
No