Class: JSONSchemer::Draft202012::Vocab::Validation::UniqueItems
- Defined in:
- lib/json_schemer/draft202012/vocab/validation.rb
Constant Summary
Constants included from Output
Instance Attribute Summary
Attributes inherited from Keyword
#parent, #parsed, #root, #value
Attributes included from Output
Instance Method Summary collapse
- #error(formatted_instance_location:) ⇒ Object
- #validate(instance, instance_location, keyword_location, _context) ⇒ Object
Methods inherited from Keyword
#absolute_keyword_location, #error_key, #fetch, #initialize, #parsed_schema, #schema_pointer
Methods included from Output
Constructor Details
This class inherits a constructor from JSONSchemer::Keyword
Instance Method Details
#error(formatted_instance_location:) ⇒ Object
186 187 188 |
# File 'lib/json_schemer/draft202012/vocab/validation.rb', line 186 def error(formatted_instance_location:, **) "array items at #{formatted_instance_location} are not unique" end |
#validate(instance, instance_location, keyword_location, _context) ⇒ Object
190 191 192 |
# File 'lib/json_schemer/draft202012/vocab/validation.rb', line 190 def validate(instance, instance_location, keyword_location, _context) result(instance, instance_location, keyword_location, !instance.is_a?(Array) || value == false || instance.size == instance.uniq.size) end |