Class: JSONSchemer::Draft202012::Vocab::Content::ContentEncoding

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

#parseObject



7
8
9
# File 'lib/json_schemer/draft202012/vocab/content.rb', line 7

def parse
  root.fetch_content_encoding(value) { raise UnknownContentEncoding, value }
end

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



11
12
13
14
15
16
17
# File 'lib/json_schemer/draft202012/vocab/content.rb', line 11

def validate(instance, instance_location, keyword_location, _context)
  return result(instance, instance_location, keyword_location, true) unless instance.is_a?(String)

  _valid, annotation = parsed.call(instance)

  result(instance, instance_location, keyword_location, true, :annotation => annotation)
end