Sha256: a4ea06ee925ac7d40dbb2ca50e48d1878365df8d90a63fe8b514c38b56bc577a

Contents?: true

Size: 528 Bytes

Versions: 20

Compression:

Stored size: 528 Bytes

Contents

module JSON
  class Schema
    class MaxItemsAttribute < Attribute
      def self.validate(current_schema, data, fragments, processor, validator, options = {})
        if data.is_a?(Array) && (data.compact.size > current_schema.schema['maxItems'])
          message = "The property '#{build_fragment(fragments)}' had more items than the allowed #{current_schema.schema['maxItems']}"
          validation_error(processor, message, fragments, current_schema, self, options[:record_errors])
        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
json-schema-2.2.5 lib/json-schema/attributes/maxitems.rb
json-schema-2.2.4 lib/json-schema/attributes/maxitems.rb
json-schema-2.2.3 lib/json-schema/attributes/maxitems.rb
json-schema-2.2.2 lib/json-schema/attributes/maxitems.rb
json-schema-2.2.1 lib/json-schema/attributes/maxitems.rb
json-schema-2.2.0 lib/json-schema/attributes/maxitems.rb
json-schema-2.1.9 lib/json-schema/attributes/maxitems.rb
json-schema-2.1.8 lib/json-schema/attributes/maxitems.rb
json-schema-2.1.7 lib/json-schema/attributes/maxitems.rb
json-schema-2.1.6 lib/json-schema/attributes/maxitems.rb
json-schema-2.1.5 lib/json-schema/attributes/maxitems.rb
json-schema-2.1.4 lib/json-schema/attributes/maxitems.rb
json-schema-2.1.3 lib/json-schema/attributes/maxitems.rb
json-schema-2.1.2 lib/json-schema/attributes/maxitems.rb
json-schema-2.1.1 lib/json-schema/attributes/maxitems.rb
json-schema-2.1.0 lib/json-schema/attributes/maxitems.rb
json-schema-2.0.5 lib/json-schema/attributes/maxitems.rb
json-schema-2.0.4 lib/json-schema/attributes/maxitems.rb
json-schema-2.0.3 lib/json-schema/attributes/maxitems.rb
json-schema-2.0.2 lib/json-schema/attributes/maxitems.rb