Sha256: 5cd2977fc6c72f33aa88ac1968e6b50eab5ff5c60d7fc9f5fbb029f8536fdb9e
Contents?: true
Size: 314 Bytes
Versions: 15
Compression:
Stored size: 314 Bytes
Contents
require 'json-schema/attributes/limits/length' module JSON class Schema class MaxLengthAttribute < LengthLimitAttribute def self.limit_name 'maxLength' end def self.error_message(schema) "was not of a maximum string length of #{limit(schema)}" end end end end
Version data entries
15 entries across 14 versions & 3 rubygems