Class: JSONSchemer::Draft202012::Vocab::Applicator::AnyOf
- Defined in:
- lib/json_schemer/draft202012/vocab/applicator.rb
Direct Known Subclasses
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
- #parse ⇒ 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
26 27 28 |
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 26 def error(formatted_instance_location:, **) "value at #{formatted_instance_location} does not match any `anyOf` schemas" end |
#parse ⇒ Object
30 31 32 33 34 |
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 30 def parse value.map.with_index do |subschema, index| subschema(subschema, index.to_s) end end |
#validate(instance, instance_location, keyword_location, context) ⇒ Object
36 37 38 39 40 41 |
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 36 def validate(instance, instance_location, keyword_location, context) nested = parsed.map.with_index do |subschema, index| subschema.validate_instance(instance, instance_location, join_location(keyword_location, index.to_s), context) end result(instance, instance_location, keyword_location, nested.any?(&:valid), nested) end |