Class: JSONSchemer::Draft202012::Vocab::Applicator::Then

Inherits:
Keyword
  • Object
show all
Defined in:
lib/json_schemer/draft202012/vocab/applicator.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



91
92
93
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 91

def error(formatted_instance_location:, **)
  "value at #{formatted_instance_location} does not match conditional `then` schema"
end

#parseObject



95
96
97
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 95

def parse
  subschema(value)
end

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



99
100
101
102
103
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 99

def validate(instance, instance_location, keyword_location, context)
  return unless context.adjacent_results.key?(If) && context.adjacent_results.fetch(If).annotation
  subschema_result = parsed.validate_instance(instance, instance_location, keyword_location, context)
  result(instance, instance_location, keyword_location, subschema_result.valid, subschema_result.nested)
end