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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
$defs
We use the Parser to bundle a JSON Schema. In this process references to definitions in $defs get encoded to %24defs.
%24defs
Example: before bundling
"signature": { "$ref": "#/$defs/signature" },
after bundling
"signature": { "$ref": "#/properties/contentStructure/%24defs/signature" },
Unfortunately, the code generator won't eat the %24, so we have to uneconde it manually.
%24
Is there a chance to avoid the encoding?
The text was updated successfully, but these errors were encountered:
Note the notice in the readme file. #285
Sorry, something went wrong.
I dont believe this is happening anymore on latest - let me know with an example if it is
$def
No branches or pull requests
We use the Parser to bundle a JSON Schema. In this process references to definitions in
$defs
get encoded to%24defs
.Example: before bundling
after bundling
Unfortunately, the code generator won't eat the
%24
, so we have to uneconde it manually.Is there a chance to avoid the encoding?
The text was updated successfully, but these errors were encountered: