Sha256: 82f93367f33c28523d109f214109aafd96a90cce13fe852083543cd1ae569e22
Contents?: true
Size: 919 Bytes
Versions: 1
Compression:
Stored size: 919 Bytes
Contents
require 'json-schema/attribute' module JSON class Schema class DependenciesV4Attribute < Attribute def self.validate(current_schema, data, fragments, processor, validator, options = {}) if data.is_a?(Hash) current_schema.schema['dependencies'].each do |property,dependency_value| if (data.has_key?(property.to_s) || data.has_key?(property.to_sym)) && dependency_value.is_a?(Array) dependency_value.each do |value| if !data.has_key?(value.to_s) && !data.has_key?(value.to_sym) message = "The property '#{build_fragment(fragments)}' has a property '#{property}' that depends on a missing property '#{value}'" validation_error(processor, message, fragments, current_schema, self, options[:record_errors]) end end end end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
json-schema-2.3.0 | lib/json-schema/attributes/dependencies_v4.rb |