@@ -4,14 +4,14 @@ import { Draft04, type Draft, type JsonError } from "json-schema-library";
4
4
5
5
import { getJSONSchema , schemaStateField } from "./state.js" ;
6
6
import { joinWithOr } from "./utils/formatting.js" ;
7
- import { JSONMode , JSONPointerData } from "./types.js" ;
7
+ import { JSONMode , JSONPointerData , RequiredPick } from "./types.js" ;
8
8
import { parseJSONDocumentState } from "./utils/parseJSONDocument.js" ;
9
- import { RequiredPick } from "./types.js" ;
10
9
import { el } from "./utils/dom.js" ;
11
10
import { renderMarkdown } from "./utils/markdown.js" ;
12
11
import { MODES } from "./constants.js" ;
13
12
import { parseYAMLDocumentState } from "./utils/parse-yaml-document.js" ;
14
13
import { parseJSON5DocumentState } from "./utils/parseJSON5Document.js" ;
14
+ import { debug } from "./utils/debug.js" ;
15
15
16
16
const getDefaultParser = ( mode : JSONMode ) : typeof parseJSONDocumentState => {
17
17
switch ( mode ) {
@@ -96,7 +96,7 @@ export class JSONValidation {
96
96
const errors = errorData ?. errors as string [ ] ;
97
97
if ( error . code === "one-of-error" && errors ?. length ) {
98
98
return `Expected one of ${ joinWithOr (
99
- errors as string [ ] ,
99
+ errors ,
100
100
( data ) => data . data . expected
101
101
) } `;
102
102
}
@@ -110,6 +110,7 @@ export class JSONValidation {
110
110
const message = error . message
111
111
// don't mention root object
112
112
. replaceAll ( "in `#` " , "" )
113
+ . replaceAll ( "at `#`" , "" )
113
114
. replaceAll ( "/" , "." )
114
115
. replaceAll ( "#." , "" ) ;
115
116
return message ;
@@ -135,9 +136,10 @@ export class JSONValidation {
135
136
try {
136
137
errors = this . schema . validate ( json . data ) ;
137
138
} catch { }
139
+ debug . log ( "xxx" , "validation errors" , errors , json . data ) ;
138
140
if ( ! errors . length ) return [ ] ;
139
141
// reduce() because we want to filter out errors that don't have a pointer
140
- return errors . reduce ( ( acc , error ) => {
142
+ return errors . reduce < Diagnostic [ ] > ( ( acc , error ) => {
141
143
const pushRoot = ( ) => {
142
144
const errorString = this . rewriteError ( error ) ;
143
145
acc . push ( {
@@ -156,12 +158,11 @@ export class JSONValidation {
156
158
const errorPath = getErrorPath ( error ) ;
157
159
const pointer = json . pointers . get ( errorPath ) as JSONPointerData ;
158
160
if (
159
- error . name === "MaxPropertiesError" ??
161
+ error . name === "MaxPropertiesError" ||
160
162
error . name === "MinPropertiesError"
161
163
) {
162
164
pushRoot ( ) ;
163
- }
164
- if ( pointer ) {
165
+ } else if ( pointer ) {
165
166
// if the error is a property error, use the key position
166
167
const isKeyError = positionalErrors . includes ( error . name ) ;
167
168
const errorString = this . rewriteError ( error ) ;
@@ -182,8 +183,10 @@ export class JSONValidation {
182
183
source : this . schemaTitle ,
183
184
} ) ;
184
185
}
186
+ } else {
187
+ pushRoot ( ) ;
185
188
}
186
189
return acc ;
187
- } , [ ] as Diagnostic [ ] ) ;
190
+ } , [ ] ) ;
188
191
}
189
192
}
0 commit comments