Class: JSONSchemer::Draft202012::Vocab::Content::ContentMediaType
- Inherits:
-
Keyword
- Object
- Keyword
- JSONSchemer::Draft202012::Vocab::Content::ContentMediaType
- Defined in:
- lib/json_schemer/draft202012/vocab/content.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
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
21 22 23 |
# File 'lib/json_schemer/draft202012/vocab/content.rb', line 21 def parse root.fetch_content_media_type(value) { raise UnknownContentMediaType, value } end |
#validate(instance, instance_location, keyword_location, context) ⇒ Object
25 26 27 28 29 30 31 32 |
# File 'lib/json_schemer/draft202012/vocab/content.rb', line 25 def validate(instance, instance_location, keyword_location, context) return result(instance, instance_location, keyword_location, true) unless instance.is_a?(String) decoded_instance = context.adjacent_results[ContentEncoding]&.annotation || instance _valid, annotation = parsed.call(decoded_instance) result(instance, instance_location, keyword_location, true, :annotation => annotation) end |