Class: JSON::Schema::PropertyNames
- 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, = {}) 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, ) end elsif propnames == false && data.any? = "The property '#{build_fragment(fragments)}' contains additional properties #{data.keys.inspect} outside of the schema when none are allowed" validation_error(processor, , fragments, current_schema, self, [:record_errors]) end end |