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
I have multiple yml files, but they use some of the same components. I wanted to extract those components and put them into shared files that would be used as references in the main files (following the swagger documentation : https://swagger.io/docs/specification/v3_0/using-ref/ )
but when I do, I get the following error :
"Can't resolve test.yml#/components/schemas/Account, only internal refs are supported."
Error loading OpenAPI Glue: 44 | async parse(specification, options = {}) {
45 | const supportedVersions = new Set(["2.0", "3.0", "3.1"]);
46 |
47 | const res = await this.preProcessSpec(specification);
48 | if (!(res.valid && supportedVersions.has(res.version))) {
49 | throw new Error(
^
Is there a way to use those references anyway ?
Thank you for your answer !
Best regards,
Pierre
Edit : Using validator.addSpecRef, I managed to get something working.
But it doesn't work at all with the swagger documentation because it looks for the refs directly, and I couldn't find a workaround for this...
The text was updated successfully, but these errors were encountered:
Hello,
I have multiple yml files, but they use some of the same components. I wanted to extract those components and put them into shared files that would be used as references in the main files (following the swagger documentation : https://swagger.io/docs/specification/v3_0/using-ref/ )
but when I do, I get the following error :
Is there a way to use those references anyway ?
Thank you for your answer !
Best regards,
Pierre
Edit : Using validator.addSpecRef, I managed to get something working.
But it doesn't work at all with the swagger documentation because it looks for the refs directly, and I couldn't find a workaround for this...
The text was updated successfully, but these errors were encountered: