We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The files generated by the tool are all lowercase file names because of this .lower() (and the subsequent ones?):
.lower()
openapi2jsonschema/openapi2jsonschema/command.py
Line 130 in d697cbf
But the $refs are the case of the input, in my case mixed case:
$ref
Line 222 in d697cbf
The result is a schema that doesn't load properly.
This tool pretty much did exactly what I needed, thanks!
As a workaround, I lowercased the $ref lines in all the json files.
The text was updated successfully, but these errors were encountered:
This is the sed I use after running the generator:
sed -i '-es,\($ref.*\),\L\1,' schemas/*.json
Sorry, something went wrong.
No branches or pull requests
The files generated by the tool are all lowercase file names because of this
.lower()
(and the subsequent ones?):openapi2jsonschema/openapi2jsonschema/command.py
Line 130 in d697cbf
But the
$ref
s are the case of the input, in my case mixed case:openapi2jsonschema/openapi2jsonschema/command.py
Line 222 in d697cbf
The result is a schema that doesn't load properly.
This tool pretty much did exactly what I needed, thanks!
As a workaround, I lowercased the
$ref
lines in all the json files.The text was updated successfully, but these errors were encountered: