Class: JSONSchemer::Draft202012::Vocab::Applicator::Dependencies

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



350
351
352
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 350

def error(formatted_instance_location:, **)
  "object at #{formatted_instance_location} either does not match applicable `dependencies` schemas or is missing required `dependencies` properties"
end

#parseObject



354
355
356
357
358
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 354

def parse
  value.each_with_object({}) do |(key, value), out|
    out[key] = value.is_a?(Array) ? value : subschema(value, key)
  end
end

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



360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
# File 'lib/json_schemer/draft202012/vocab/applicator.rb', line 360

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

  existing_keys = instance.keys

  nested = parsed.select do |key, _value|
    instance.key?(key)
  end.map do |key, value|
    if value.is_a?(Array)
      missing_keys = value - existing_keys
      result(instance, instance_location, join_location(keyword_location, key), missing_keys.none?, :details => { 'missing_keys' => missing_keys })
    else
      value.validate_instance(instance, instance_location, join_location(keyword_location, key), context)
    end
  end

  result(instance, instance_location, keyword_location, nested.all?(&:valid), nested)
end