Sha256: 9e5300df63ee34dbacd00b2e196916cfcb8159af297129d3602fefd910eaa2d5

Contents?: true

Size: 557 Bytes

Versions: 26

Compression:

Stored size: 557 Bytes

Contents

module JSON
  class Schema
    class MinLengthAttribute < Attribute
      def self.validate(current_schema, data, fragments, processor, validator, options = {})
        if data.is_a?(String)
          if data.length < current_schema.schema['minLength']
            message = "The property '#{build_fragment(fragments)}' was not of a minimum string length of #{current_schema.schema['minLength']}"
            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

Version Path
json-schema-2.0.3 lib/json-schema/attributes/minlength.rb
json-schema-2.0.2 lib/json-schema/attributes/minlength.rb
json-schema-2.0.1 lib/json-schema/attributes/minlength.rb
json-schema-2.0.0 lib/json-schema/attributes/minlength.rb
json-schema-1.1.1 lib/json-schema/attributes/minlength.rb
json-schema-1.1.0 lib/json-schema/attributes/minlength.rb