We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec41abb commit 2e340a4Copy full SHA for 2e340a4
src/parsing/v2/errorItem.ts
@@ -1,8 +1,11 @@
1
import { StringDict } from "../common";
2
3
+/**
4
+ * Explicit details on a problem.
5
+ */
6
export class ErrorItem {
7
/**
- * The HTTP status code returned by the server.
8
+ * A JSON Pointer to the location of the body property.
9
*/
10
public pointer?: string;
11
src/parsing/v2/errorResponse.ts
@@ -19,7 +19,7 @@ export interface ErrorDetails {
19
20
code: string;
21
22
- * A machine-readable code specific to the occurrence of the problem.
+ * A list of explicit error details.
23
24
errors: ErrorItem[];
25
}
0 commit comments