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
{{ message }}
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
C:\Users\trajano\AppData\Local\Volta\tools\image\packages\json-schema-faker-cli\node_modules\json-schema-faker-cli\node_modules\json-schema-faker\dist\main.cjs:2646
throw new Error(`${e.message} in /${e.path.join("/")}`);
^
Error: Error: Reference not found: ./XXXXStudent.schema.json
at recursiveUtil.resolveSchema (C:\Users\trajano\AppData\Local\Volta\tools\image\packages\json-schema-faker-cli\node_modules\json-schema-faker-cli\node_modules\json-schema-faker\dist\main.cjs:2497:21)
I verified that ./XXXXStudent.schema.json exists in the same folder.
I tried to use this with a JSON that contains local references which resolve using json-to-typescript
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Completed Quiz", "type": "object", "required": ["studentInfo", "evaluationInfo", "completedQuiz"], "properties": { "studentInfo": { "type": "object", "oneOf": [{ "$ref": "./XXXXStudent.schema.json" }] } } }But I get
I verified that
./XXXXStudent.schema.jsonexists in the same folder.