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
Given this JSON Schema:
$schema: "http://json-schema.org/schema#" definitions: order: type: 'object' required: ['status'] properties: status: type: 'boolean' type: 'object' required: ['order'] properties: updatedOrder: $ref: "#/definitions/order"
The expected behavior of unionized.JSONSchemaFactory instantiated with this schema is the same as that instantiated with the following schema:
unionized.JSONSchemaFactory
$schema: "http://json-schema.org/schema#" type: 'object' required: ['order'] properties: updatedOrder: type: 'object' required: ['status'] properties: status: type: 'boolean'
Instead, $ref is seemingly silently treated as a literal field.
$ref
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given this JSON Schema:
The expected behavior of
unionized.JSONSchemaFactory
instantiated with this schema is the same as that instantiated with the following schema:Instead,
$ref
is seemingly silently treated as a literal field.The text was updated successfully, but these errors were encountered: