Class: JSON::Schema::MaxItemsAttribute
- Defined in:
- lib/json-schema/attributes/maxitems.rb
Class Method Summary collapse
Methods inherited from Attribute
build_fragment, validation_error, validation_errors
Class Method Details
.validate(current_schema, data, fragments, processor, validator, options = {}) ⇒ Object
4 5 6 7 8 9 |
# File 'lib/json-schema/attributes/maxitems.rb', line 4 def self.validate(current_schema, data, fragments, processor, validator, = {}) if data.is_a?(Array) && (data.compact.size > current_schema.schema['maxItems']) = "The property '#{build_fragment(fragments)}' did not contain a minimum number of items #{current_schema.schema['minItems']}" validation_error(processor, , fragments, current_schema, self, [:record_errors]) end end |