# File lib/json-schema/attributes/limit.rb, line 53 def self.acceptable_type String end
# File lib/json-schema/attributes/limit.rb, line 61 def self.error_message(schema) "was not of a minimum string length of #{limit(schema)}" end
# File lib/json-schema/attributes/limit.rb, line 57 def self.limit_name 'minLength' end
# File lib/json-schema/attributes/limit.rb, line 65 def self.value(data) data.length end