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
var autocorrectRef = function autocorrectRef(ref) {
return decodeURI(ref[1] === "/" ? ref : "#/" + ref.slice(1));
};
should be like:
var autocorrectRef = function autocorrectRef(ref) {
return decodeURI(ref[1] === "/" ? ref : "#/" + ref.slice(1));
};
And nested refs ain't resolved:
Error: Schema #/components/schemas/consolidation/properties/Command not found
The text was updated successfully, but these errors were encountered:
NikitaFedorov1
changed the title
uri ref is broken, if property name is "MyGeneric<Temp>" then ref is "MyGeneric%3Temp%3E" and it's not resolved.
uri ref is broken, if property name is "MyGeneric<Temp>" then ref is "MyGeneric%3CTemp%3E" and it's not resolved.
Jun 1, 2024
current:
should be like:
And nested refs ain't resolved:
The text was updated successfully, but these errors were encountered: