Sha256: 5e929386e12103fda0bcdb7260b5b5f5e59d70484823cc9077a58bae615251c8
Contents?: true
Size: 744 Bytes
Versions: 26
Compression:
Stored size: 744 Bytes
Contents
module JSON class Schema class MinimumInclusiveAttribute < Attribute def self.validate(current_schema, data, fragments, processor, validator, options = {}) if data.is_a?(Numeric) if (current_schema.schema['minimumCanEqual'] == false ? data <= current_schema.schema['minimum'] : data < current_schema.schema['minimum']) message = "The property '#{build_fragment(fragments)}' did not have a minimum value of #{current_schema.schema['minimum']}, " message += current_schema.schema['exclusiveMinimum'] ? 'exclusively' : 'inclusively' validation_error(processor, message, fragments, current_schema, self, options[:record_errors]) end end end end end end
Version data entries
26 entries across 26 versions & 1 rubygems