From 4d0573424be7d241d4181b5238de695e1823481a Mon Sep 17 00:00:00 2001 From: mtaylorfsmb <38144840+mtaylorfsmb@users.noreply.github.com> Date: Mon, 10 Aug 2026 11:45:04 -0500 Subject: [PATCH] Update errors.md --- docs/errors.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/docs/errors.md b/docs/errors.md index 5abcc68..6cbd944 100644 --- a/docs/errors.md +++ b/docs/errors.md @@ -25,20 +25,3 @@ Newer FSMB APIs implement the Problem Details pattern for errors. ``` If the error stems from argument exception(s), the `errors` property contains a dictionary for the argument error messages. - - -Other FSMB APIs not implementing Problem Details will return the following error object when returning 4xx or 5xx errors in most cases. - -```json -{ - "code": "Error code", - "message": "Descriptive message", - "target": "Optional target of the error", - "logId": "The ID of the log entry associated with the error, if any", - "innerError": { }, - "data": { } -} -``` - -If the error was caused by a lower level error, then `innerError` contains the error detail of the child error. Some errors may return additional data in the `data` property. The `code` field identifies the underlying error that occurred while the `message` field provides a developer friendly message. -