I have a JSON schema with 2 properties, minimumTolerance and maximumTolerance. I need to make sure that the value of maximumTolerance is not smaller than minimumTolerance &a
Yes, but it may not be the dynamic answer you are looking for...put in the values of min and max for the range expected:
"MinimumTolerance": { "type": "number", "minimum": 0, "maximum": 6000, }, "MaximumTolerance": { "type": "number", "minimum": 6001, },