Class: JSONSchemer::Draft202012::Vocab::FormatAssertion::Format
- Defined in:
- lib/json_schemer/draft202012/vocab/format_assertion.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
- #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
7 8 9 |
# File 'lib/json_schemer/draft202012/vocab/format_assertion.rb', line 7 def error(formatted_instance_location:, **) "value at #{formatted_instance_location} does not match format: #{value}" end |
#parse ⇒ Object
11 12 13 |
# File 'lib/json_schemer/draft202012/vocab/format_assertion.rb', line 11 def parse root.format && root.fetch_format(value) { raise UnknownFormat, value } end |
#validate(instance, instance_location, keyword_location, _context) ⇒ Object
15 16 17 18 |
# File 'lib/json_schemer/draft202012/vocab/format_assertion.rb', line 15 def validate(instance, instance_location, keyword_location, _context) valid = parsed == false || parsed.call(instance, value) result(instance, instance_location, keyword_location, valid, :annotation => value) end |