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