Currently this tool only supports $ref values which point to local schemas (i.e. are just JSON Pointers to somewhere within the same document).
This can easily be resolved by accepting a base_uri (or inferring it from the input document's $id), and resolving those references at the initial de-referencing stage.
Its likely that the jsonschema library can be used to help with this.
Currently this tool only supports
$ref
values which point to local schemas (i.e. are just JSON Pointers to somewhere within the same document).This can easily be resolved by accepting a base_uri (or inferring it from the input document's
$id
), and resolving those references at the initial de-referencing stage.Its likely that the jsonschema library can be used to help with this.