Class: JSONSchemer::Draft201909::Vocab::Applicator::AdditionalItems

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

#error(formatted_instance_location:) ⇒ Object



39
40
41
# File 'lib/json_schemer/draft201909/vocab/applicator.rb', line 39

def error(formatted_instance_location:, **)
  "array items at #{formatted_instance_location} do not match `additionalItems` schema"
end

#parseObject



43
44
45
# File 'lib/json_schemer/draft201909/vocab/applicator.rb', line 43

def parse
  subschema(value)
end

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



47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/json_schemer/draft201909/vocab/applicator.rb', line 47

def validate(instance, instance_location, keyword_location, context)
  return result(instance, instance_location, keyword_location, true) unless instance.is_a?(Array)

  evaluated_index = context.adjacent_results[Items]&.annotation
  offset = evaluated_index ? (evaluated_index + 1) : instance.size

  nested = instance.slice(offset..-1).map.with_index do |item, index|
    parsed.validate_instance(item, join_location(instance_location, (offset + index).to_s), keyword_location, context)
  end

  result(instance, instance_location, keyword_location, nested.all?(&:valid), nested, :annotation => nested.any?)
end