Class: JSON::Schema::PropertyNames

Inherits:
Attribute
  • Object
show all
Defined in:
lib/json-schema/attributes/propertynames.rb

Constant Summary

Constants inherited from Attribute

Attribute::TYPE_CLASS_MAPPINGS

Class Method Summary collapse

Methods inherited from Attribute

build_fragment, data_valid_for_type?, type_of_data, validation_error, validation_errors

Class Method Details

.validate(current_schema, data, fragments, processor, validator, options = {}) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/json-schema/attributes/propertynames.rb', line 6

def self.validate(current_schema, data, fragments, processor, validator, options = {})
  return unless data.is_a?(Hash)

  propnames = current_schema.schema['propertyNames']

  if propnames.is_a?(Hash)
    schema = JSON::Schema.new(propnames, current_schema.uri, validator)
    data.each_key do |key|
      schema.validate(key, fragments + [key], processor, options)
    end
  elsif propnames == false && data.any?
    message = "The property '#{build_fragment(fragments)}' contains additional properties #{data.keys.inspect} outside of the schema when none are allowed"
    validation_error(processor, message, fragments, current_schema, self, options[:record_errors])
  end
end