Sha256: c9dfc5a76776f784afefacc3c02d28bb6257acc803d209a4a3e391ab8b0e5bd9

Contents?: true

Size: 1.51 KB

Versions: 14

Compression:

Stored size: 1.51 KB

Contents

module JSON
  class Schema
    class DependenciesAttribute < 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)
              if dependency_value.is_a?(String)
                if !data.has_key?(dependency_value.to_s) && !data.has_key?(dependency_value.to_sym)
                  message = "The property '#{build_fragment(fragments)}' has a property '#{property}' that depends on a missing property '#{dependency_value}'"
                  validation_error(processor, message, fragments, current_schema, self, options[:record_errors])
                end
              elsif 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
              else
                schema = JSON::Schema.new(dependency_value,current_schema.uri,validator)
                schema.validate(data, fragments, processor, options)
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
json-schema-2.2.5 lib/json-schema/attributes/dependencies.rb
json-schema-2.2.4 lib/json-schema/attributes/dependencies.rb
json-schema-2.2.3 lib/json-schema/attributes/dependencies.rb
json-schema-2.2.2 lib/json-schema/attributes/dependencies.rb
json-schema-2.2.1 lib/json-schema/attributes/dependencies.rb
json-schema-2.2.0 lib/json-schema/attributes/dependencies.rb
json-schema-2.1.9 lib/json-schema/attributes/dependencies.rb
json-schema-2.1.8 lib/json-schema/attributes/dependencies.rb
json-schema-2.1.7 lib/json-schema/attributes/dependencies.rb
json-schema-2.1.6 lib/json-schema/attributes/dependencies.rb
json-schema-2.1.5 lib/json-schema/attributes/dependencies.rb
json-schema-2.1.4 lib/json-schema/attributes/dependencies.rb
json-schema-2.1.3 lib/json-schema/attributes/dependencies.rb
json-schema-2.1.2 lib/json-schema/attributes/dependencies.rb