You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Guidelines.md
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -392,6 +392,31 @@ Error responses MAY contain [annotations][odata-json-annotations] in any of thei
392
392
393
393
We recommend that for any transient errors that may be retried, services SHOULD include a Retry-After HTTP header indicating the minimum number of seconds that clients SHOULD wait before attempting the operation again.
394
394
395
+
##### ErrorResponse : Object
396
+
397
+
Property | Type | Required | Description
398
+
-------- | ---- | -------- | -----------
399
+
`error` | Error | ✔ | The error object.
400
+
401
+
##### Error : Object
402
+
403
+
Property | Type | Required | Description
404
+
-------- | ---- | -------- | -----------
405
+
`code` | String (enumerated) | ✔ | One of a server-defined set of error codes.
406
+
`message` | String | ✔ | A human-readable representation of the error.
407
+
`target` | String | | The target of the error.
408
+
`details` | Error[] | | An array of details about specific errors that led to this reported error.
409
+
`innererror` | InnerError | | An object containing more specific information than the current object about the error.
410
+
411
+
##### InnerError : Object
412
+
413
+
Property | Type | Required | Description
414
+
-------- | ---- | -------- | -----------
415
+
`code` | String | | A more specific error code than was provided by the containing error.
416
+
`innererror` | InnerError | | An object containing more specific information than the current object about the error.
0 commit comments