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
In a JSON schema you can have 2 props
{ type: 'object', properties: { start: { type: number enum: [1,2,3,4] }, end : { type: number enum: [1,2,3,4] } } }
When rendered with react-jsonschema-form these props are independent. So having start=4 and end=1 is allowed.
It would be nice to enforce that the value of the end prop is always greater then the value of the start prop and the reverse.
Spin-off from #62 (review)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In a JSON schema you can have 2 props
When rendered with react-jsonschema-form these props are independent. So having start=4 and end=1 is allowed.
It would be nice to enforce that the value of the end prop is always greater then the value of the start prop and the reverse.
Spin-off from #62 (review)
The text was updated successfully, but these errors were encountered: