Sha256: a5b448e217b6e46bb4479c6d166dbbeee7db1c108ff4ac7cce8657fe3a3188b4
Contents?: true
Size: 715 Bytes
Versions: 26
Compression:
Stored size: 715 Bytes
Contents
module JSON class Schema class DivisibleByAttribute < Attribute def self.validate(current_schema, data, fragments, processor, validator, options = {}) if data.is_a?(Numeric) if current_schema.schema['divisibleBy'] == 0 || current_schema.schema['divisibleBy'] == 0.0 || (BigDecimal.new(data.to_s) % BigDecimal.new(current_schema.schema['divisibleBy'].to_s)).to_f != 0 message = "The property '#{build_fragment(fragments)}' was not divisible by #{current_schema.schema['divisibleBy']}" 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