Is it possible to use AJV to reference a schema that was previously not added through addSchema()?
I want to resolve a reference like this:
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"$ref": "project-id.schema.json#/definitions/id"
}
}
}
without explicitly adding project-id.schema.json first.