Class: JSONSchemer::Draft202012::Vocab::Applicator::Contains

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



192
193
194
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 192

def error(formatted_instance_location:, **)
  "array at #{formatted_instance_location} does not contain enough items that match `contains` schema"
end

#parseObject



196
197
198
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 196

def parse
  subschema(value)
end

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



200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 200

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

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

  annotation = []
  nested.each_with_index do |nested_result, index|
    annotation << index if nested_result.valid
  end

  min_contains = schema.parsed['minContains']&.parsed || 1

  result(instance, instance_location, keyword_location, annotation.size >= min_contains, nested, :annotation => annotation, :ignore_nested => true)
end