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