-
-
Notifications
You must be signed in to change notification settings - Fork 233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ResolverError while processing bundled schema #376
Comments
Does creating a custom http resolver fix this? Like if you provide your own version of canRead and readFile for http? |
Thanks for the hint @jonluca Even though I had give it a good read, I missed that So if I read your suggestion correctly, we should implement a custom resolver that is called before the standard
Is this what you have in mind? |
@jonluca I have investigated my issue and completed a dirty work-around using the below resolvers with @apidevtools/json-schema-ref-parser 11.9.3. resolve: {
definitions: {
order: 1,
canRead(file: FileInfo, callback: Callback, $refs: $Refs) {
console.log('resolve.definitions.canRead', typeof file, typeof callback, typeof $refs);
return true;
},
read(file: FileInfo, callback: Callback, $refs: $Refs) {
console.log('resolve.definitions.read', typeof file, typeof callback, typeof $refs);
const {url: $id} = file;
const {definitions} = $refs._root$Ref.value;
if (definitions) {
const definition = definitions[$id];
if (definition) {
return JSON.stringify(definition);
}
}
return 'bad resolve';
},
},
http: {
order: 2000,
canRead(file: FileInfo, callback: Callback, $refs: $Refs) {
console.log('resolve.http.canRead', typeof file, typeof callback, typeof $refs);
return false;
},
},
}, When processing the schema from above original post, the console outputs the following.
Some remarks:
|
We have to process a bunch of json schemas produced by another team and bundled using
@hyperjump/json-schema
.For reference (pun intended) here is a simple sample of such bundles.
Above bundle references four schemas which are plainly defined under
#/definitions
with matching$id
s."$id": "http://common-schemas.redacted.com/date-in-milliseconds"
"$id": "http://common-schemas.redacted.com/monetary"
"$id": "http://common-schemas.redacted.com/reference"
"$id": "http://common-schemas.redacted.com/reference-with-external-id"
Whenever we attempt to process it (initially via json-schema-to-typescript or using
json-schema-ref-parser
'sdereference()
function) we get the bellowResolverError
.We are probably missing something obvious, but couldn't find how to prevent "bundled" references to be (wrongfully) processed by the
http
parser while already referenced under#/definitions
.Any advice?
Thanks in advance,
The text was updated successfully, but these errors were encountered: