aboutsummaryrefslogtreecommitdiff
path: root/dev/schema-validate.js
diff options
context:
space:
mode:
Diffstat (limited to 'dev/schema-validate.js')
-rw-r--r--dev/schema-validate.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/schema-validate.js b/dev/schema-validate.js
index 57faf96c..d4e977e1 100644
--- a/dev/schema-validate.js
+++ b/dev/schema-validate.js
@@ -62,6 +62,6 @@ class JsonSchemaAjv {
export function createJsonSchema(mode, schema) {
switch (mode) {
case 'ajv': return new JsonSchemaAjv(schema);
- default: return new JsonSchema(/** @type {import('json-schema').Schema} */ (schema));
+ default: return new JsonSchema(/** @type {import('ext/json-schema').Schema} */ (schema));
}
}