lib/json-schema/attributes/maxitems.rb in json-schema-0.9.12 vs lib/json-schema/attributes/maxitems.rb in json-schema-1.0.0
- old
+ new
@@ -2,10 +2,10 @@
class Schema
class MaxItemsAttribute < Attribute
def self.validate(current_schema, data, fragments, validator, options = {})
if data.is_a?(Array) && (data.compact.size > current_schema.schema['maxItems'])
message = "The property '#{build_fragment(fragments)}' did not contain a minimum number of items #{current_schema.schema['minItems']}"
- raise ValidationError.new(message, fragments, current_schema)
+ validation_error(message, fragments, current_schema, options[:record_errors])
end
end
end
end
end
\ No newline at end of file