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
As per my use case, there are multiple schema files to validate against, based on the category to validate. Each category schema has multiple common components which are referenced in the schema using the $ref property.
In order to validate the data, I use the RefResolver to resolve the $ref properties across multiple subschema files.
In few cases, I need to know the final schema for a category, resolved using RefResolver that was used to validate the data.
How can I print the resolved schema ($ref replaced) after using the RefResolver?
As per my use case, there are multiple schema files to validate against, based on the category to validate. Each category schema has multiple common components which are referenced in the schema using the
$ref
property.In order to validate the data, I use the
RefResolver
to resolve the$ref
properties across multiple subschema files.In few cases, I need to know the final schema for a category, resolved using
RefResolver
that was used to validate the data.How can I print the resolved schema (
$ref
replaced) after using theRefResolver
?My basic implementation is
The text was updated successfully, but these errors were encountered: