Class: JSONSchemer::Draft202012::Vocab::Content::ContentSchema
- Defined in:
- lib/json_schemer/draft202012/vocab/content.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, #initialize, #schema_pointer
Constructor Details
This class inherits a constructor from JSONSchemer::Keyword
Instance Method Details
#parse ⇒ Object
28 29 30 |
# File 'lib/json_schemer/draft202012/vocab/content.rb', line 28 def parse subschema(value) end |
#validate(instance, instance_location, keyword_location, context) ⇒ Object
32 33 34 35 36 37 38 39 |
# File 'lib/json_schemer/draft202012/vocab/content.rb', line 32 def validate(instance, instance_location, keyword_location, context) return result(instance, instance_location, keyword_location, true) unless context.adjacent_results.key?(ContentMediaType) parsed_instance = context.adjacent_results.fetch(ContentMediaType).annotation annotation = parsed.validate_instance(parsed_instance, instance_location, keyword_location, context) result(instance, instance_location, keyword_location, true, :annotation => annotation.to_output_unit) end |