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
feat: Accept multiple schemas if external definitions are used
* A schema can be a string|object or an array pf them.
* The main schema, if there is such, should be passed as the first one
to be immediately compiled.
* Fix multivalue argument parsing to accept both comma-delimited items
and multiple arguments. Unfortunately, data arguments have to be
separated by "--".
* Accept schemas either as strings or as already parsed objects.
* Update the readme with the extended JSON Schema support.
-f, --config [file] read options from a custom configuration file
121
-
-F, --no-config disable searching for configuration file
121
+
-f, --config <file> read options from a custom configuration file
122
+
-F, --no-config disable searching for configuration files
122
123
-s, --sort-keys sort object keys (not when prettifying)
123
-
-E, --extensions [ext] file extensions to process for directory walk
124
-
(default: ["json","JSON"])
124
+
-E, --extensions <ext...> file extensions to process for directory walk (default: ["json","JSON"])
125
125
-i, --in-place overwrite the input files
126
126
-j, --diff print difference instead of writing the output
127
127
-k, --check check that the input is equal to the output
128
-
-t, --indent [num|char] number of spaces or specific characters
129
-
to use for indentation (default: 2)
128
+
-t, --indent <num|char> number of spaces or specific characters to use for indentation (default: 2)
130
129
-c, --compact compact error display
131
-
-M, --mode [mode] set other parsing flags according to a format
132
-
type (default: "json")
130
+
-M, --mode <mode> set other parsing flags according to a format type (default: "json")
133
131
-B, --bom ignore the leading UTF-8 byte-order mark
134
132
-C, --comments recognize and ignore JavaScript-style comments
135
133
-S, --single-quoted-strings support single quotes as string delimiters
136
134
-T, --trailing-commas ignore trailing commas in objects and arrays
137
135
-D, --no-duplicate-keys report duplicate object keys as an error
138
-
-V, --validate [file] JSON Schema file to use for validation
139
-
-e, --environment [env] which specification of JSON Schema the
140
-
validation file uses
141
-
-x, --context [num] line count used as the diff context (default: 3)
136
+
-V, --validate <file...> JSON Schema file(s) to use for validation (default: [])
137
+
-e, --environment <env> which specification of JSON Schema the validation file uses
138
+
-x, --context <num> line count used as the diff context (default: 3)
142
139
-l, --log-files print only the parsed file names to stdout
143
140
-q, --quiet do not print the parsed json to stdout
144
141
-n, --continue continue with other files if an error occurs
145
-
-p, --pretty-print prettify the input instead of stringifying
146
-
the parsed object
142
+
-p, --pretty-print prettify the input instead of stringifying the parsed object
147
143
-P, --pretty-print-invalid force pretty-printing even for invalid input
148
144
-r, --trailing-newline ensure a line break at the end of the output
149
145
-R, --no-trailing-newline ensure no line break at the end of the output
150
146
--prune-comments omit comments from the prettified output
151
-
--strip-object-keys strip quotes from object keys if possible
152
-
(JSON5)
147
+
--strip-object-keys strip quotes from object keys if possible (JSON5)
153
148
--enforce-double-quotes surrounds all strings with double quotes
154
-
--enforce-single-quotes surrounds all strings with single quotes
155
-
(JSON5)
156
-
--trim-trailing-commas omit trailing commas from objects and arrays
157
-
(JSON5)
149
+
--enforce-single-quotes surrounds all strings with single quotes (JSON5)
150
+
--trim-trailing-commas omit trailing commas from objects and arrays (JSON5)
158
151
-v, --version output the version number
159
-
-h, --help output usage information
152
+
-h, --help display help for command
160
153
161
154
You can use BASH patterns for including and excluding files (only files).
162
155
Patterns are case-sensitive and have to use slashes as directory separators.
@@ -169,6 +162,9 @@ for JSON Schema validation are "draft-04", "draft-06", "draft-07",
169
162
with "json-schema-". JSON Type Definition can be selected by "rfc8927",
170
163
"json-type-definition" or "jtd". If not specified, it will be "draft-07".
171
164
165
+
If you specify schemas using the "-V" parameter, you will have to separate
166
+
files to test with "--".
167
+
172
168
### Configuration
173
169
174
170
In addition to the command line parameters, the options can be supplied from the following files:
@@ -274,7 +270,7 @@ The `mode` parameter (string) sets parsing options to match a common format of i
274
270
275
271
### Schema Validation
276
272
277
-
You can validate the input against a JSON Schema using the `lib/validator` module. The `validate` method accepts either an earlier parsed JSON data or a string with the JSON input:
273
+
You can validate the input against a JSON Schema using the `lib/validator` module. The `compile` method accepts either an earlier parsed JSON Schema or a string with it:
If a string is passed to the `validate` method, the same options as for parsing JSON data can be passed as the second parameter. Compiling JSON Schema supports the same options as parsing JSON data too (except for `reviver`). They can be passed as the second (object) parameter. The optional second `environment` parameter can be passed either as a string or as an additional property in the options object too:
282
+
If a string is passed to the `compile` method, the same options as for parsing JSON data can be passed as the second parameter. Compiling JSON Schema supports the same options as parsing JSON data too (except for `reviver`). They can be passed as the second (object) parameter. The optional second `environment` parameter (the default value is `draft-07`) ) can be passed either as a string or as an additional property in the options object too:
287
283
288
284
```js
289
285
constvalidate=compile('string with JSON Schema', { environment:'draft-2020-12' })
290
286
```
291
287
288
+
If you use external definitions in multiple schemas, you have to pass an array of all schemas to `compile`. The `$id` properties have to be set in each sub-schema according to the `$ref` references in the main schema. The main schema is usually sent as the first one to be compiled immediately, so that the errors in any sub-schema would be reported right away:
289
+
290
+
```js
291
+
constvalidate=compile(['string with main schema', 'string with a sub-schema'])
292
+
```
293
+
292
294
### Pretty-Printing
293
295
294
296
You can parse a JSON string to an array of tokens and print it back to a string with some changes applied. It can be unification of whitespace, reformatting or stripping comments, for example. (Raw token values must be enabled when tokenizing the JSON input.)
@@ -372,11 +374,11 @@ If you want to retain comments or whitespace for pretty-printing, for example, s
372
374
373
375
### Performance
374
376
375
-
This is a part of an output from the [parser benchmark], when parsing a 4.2 KB formatted string ([package.json](./package.json)) with Node.js 12.14.0:
377
+
This is a part of an output from the [parser benchmark], when parsing a 4.68 KB formatted string ([package.json](./package.json)) with Node.js 18.14.2:
376
378
377
-
jsonlint using native JSON.parse x 97,109 ops/sec ±0.81% (93 runs sampled)
378
-
jsonlint using hand-coded parser x 7,256 ops/sec ±0.54% (90 runs sampled)
379
-
jsonlint using tokenising parser x 6,387 ops/sec ±0.44% (88 runs sampled)
379
+
the standard jsonlint parser x 78,998 ops/sec ±0.48% (95 runs sampled)
380
+
the extended jsonlint parser x 7,923 ops/sec ±0.51% (93 runs sampled)
381
+
the tokenising jsonlint parser x 6,281 ops/sec ±0.71% (91 runs sampled)
380
382
381
383
A custom JSON parser is [a lot slower] than the built-in one. However, it is more important to have a [clear error reporting] than the highest speed in scenarios like parsing configuration files. (For better error-reporting, the speed can be preserved by using the native parser initially and re-parsing with another parser only in case of failure.) Features like comments or JSON5 are also helpful in configuration files. Tokens preserve the complete input and can be used for pretty-printing without losing the comments.
382
384
@@ -429,6 +431,7 @@ Licensed under the [MIT License].
0 commit comments