Skip to content

Fix: Resolve escaped "/" and "~" in JSON references#1725

Merged
RicoSuter merged 1 commit into
RicoSuter:masterfrom
nntzuekai:fix/escaped-char-in-json-ref
Nov 19, 2024
Merged

Fix: Resolve escaped "/" and "~" in JSON references#1725
RicoSuter merged 1 commit into
RicoSuter:masterfrom
nntzuekai:fix/escaped-char-in-json-ref

Conversation

@nntzuekai

Copy link
Copy Markdown
Contributor

Fixes #1573 and #1703

In JSON references, the character "~" and "/" should be escaped as "~0" and "~1", respectively (RFC 6901). The current version of JsonReferenceResolver would fail on resolving these references.

This fix adds support to ref paths containing these special chars by substituting them with "/" and "~" for each reference segment. Note that it replaces "~1" first to avoid transforming "~01" to "/" incorrectly (which should be "~1").

@RicoSuter RicoSuter merged commit ade92a0 into RicoSuter:master Nov 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

JsonReferenceResolver does not support paths containing '/' escaped with '~1'

2 participants