Sha256: 8cf39b44ae2c17412b1cdce226eeb5e3be2a44aa8eab91f05d0884e807aa94b0

Contents?: true

Size: 557 Bytes

Versions: 26

Compression:

Stored size: 557 Bytes

Contents

module JSON
  class Schema
    class MaxLengthAttribute < Attribute
      def self.validate(current_schema, data, fragments, processor, validator, options = {})
        if data.is_a?(String)
          if data.length > current_schema.schema['maxLength']
            message = "The property '#{build_fragment(fragments)}' was not of a maximum string length of #{current_schema.schema['maxLength']}"
            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.2.5 lib/json-schema/attributes/maxlength.rb
json-schema-2.2.4 lib/json-schema/attributes/maxlength.rb
json-schema-2.2.3 lib/json-schema/attributes/maxlength.rb
json-schema-2.2.2 lib/json-schema/attributes/maxlength.rb
json-schema-2.2.1 lib/json-schema/attributes/maxlength.rb
json-schema-1.2.1 lib/json-schema/attributes/maxlength.rb
json-schema-2.2.0 lib/json-schema/attributes/maxlength.rb
json-schema-1.2.0 lib/json-schema/attributes/maxlength.rb
json-schema-2.1.9 lib/json-schema/attributes/maxlength.rb
json-schema-2.1.8 lib/json-schema/attributes/maxlength.rb
json-schema-2.1.7 lib/json-schema/attributes/maxlength.rb
json-schema-2.1.6 lib/json-schema/attributes/maxlength.rb
json-schema-2.1.5 lib/json-schema/attributes/maxlength.rb
json-schema-2.1.4 lib/json-schema/attributes/maxlength.rb
json-schema-2.1.3 lib/json-schema/attributes/maxlength.rb
json-schema-2.1.2 lib/json-schema/attributes/maxlength.rb
json-schema-2.1.1 lib/json-schema/attributes/maxlength.rb
json-schema-2.1.0 lib/json-schema/attributes/maxlength.rb
json-schema-2.0.5 lib/json-schema/attributes/maxlength.rb
json-schema-2.0.4 lib/json-schema/attributes/maxlength.rb