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
Is there currently functionality to transform a JSON Schema with $ref properties into a dereferenced JSON Schema (with sub-schema containing $ref properties replaced by the referenced schema)? e.g.
Behavior for recursive references. I have a use case when it will be useful to inline all non-recursive references and leave recursive ones as they are. But I guess there could be other strategies too - return an error, cut at some recursion level if possible (e.g. if there is a place where the recursive branch is optional). Or maybe even a custom callback.
I am not 100% sure about the behavior on $dynamicRef, but it should probably work in a similar way
Is there currently functionality to transform a JSON Schema with
$ref
properties into a dereferenced JSON Schema (with sub-schema containing$ref
properties replaced by the referenced schema)? e.g.The text was updated successfully, but these errors were encountered: