We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See ajv-validator/ajv#278
This should work:
{ id: 'schema.json#', definitions: { foo: { properties: { str: { type: 'string' } } } }, $merge: { source: { $ref: '#/definitions/foo' }, with: { properties: { int: { type: 'integer' } } } } }
At the moment it needs source: { $ref: 'schema.json#/definitions/foo' } in order to work.
source: { $ref: 'schema.json#/definitions/foo' }
The text was updated successfully, but these errors were encountered:
That would require adding baseId parameter to custom keyword functions in Ajv, see ajv-validator/ajv#280
Sorry, something went wrong.
docs: note about using only absolute $refs, #3
dfc2006
test: allow relative $refs, #3
c774c98
5fc705f
No branches or pull requests
See ajv-validator/ajv#278
This should work:
At the moment it needs
source: { $ref: 'schema.json#/definitions/foo' }
in order to work.The text was updated successfully, but these errors were encountered: