Class: JSONSchemer::Draft202012::Vocab::Validation::ExclusiveMaximum

Inherits:
Keyword
  • Object
show all
Defined in:
lib/json_schemer/draft202012/vocab/validation.rb

Constant Summary

Constants included from Output

Output::FRAGMENT_ENCODE_REGEX

Instance Attribute Summary

Attributes inherited from Keyword

#parent, #parsed, #root, #value

Attributes included from Output

#keyword, #schema

Instance Method Summary collapse

Methods inherited from Keyword

#absolute_keyword_location, #error_key, #fetch, #initialize, #parsed_schema, #schema_pointer

Methods included from Output

#x_error

Constructor Details

This class inherits a constructor from JSONSchemer::Keyword

Instance Method Details

#error(formatted_instance_location:) ⇒ Object



102
103
104
# File 'lib/json_schemer/draft202012/vocab/validation.rb', line 102

def error(formatted_instance_location:, **)
  "number at #{formatted_instance_location} is greater than or equal to: #{value}"
end

#validate(instance, instance_location, keyword_location, _context) ⇒ Object



106
107
108
# File 'lib/json_schemer/draft202012/vocab/validation.rb', line 106

def validate(instance, instance_location, keyword_location, _context)
  result(instance, instance_location, keyword_location, !instance.is_a?(Numeric) || instance < value)
end