Class: JSONSchemer::Draft202012::Vocab::Applicator::If
- Defined in:
- lib/json_schemer/draft202012/vocab/applicator.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
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
#parse ⇒ Object
80 81 82 |
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 80 def parse subschema(value) end |
#validate(instance, instance_location, keyword_location, context) ⇒ Object
84 85 86 87 |
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 84 def validate(instance, instance_location, keyword_location, context) subschema_result = parsed.validate_instance(instance, instance_location, keyword_location, context) result(instance, instance_location, keyword_location, true, subschema_result.nested, :annotation => subschema_result.valid) end |