Class: JSON::Schema::DependenciesAttribute

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

Class Method Summary collapse

Methods inherited from Attribute

build_fragment

Class Method Details

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



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/json-schema/attributes/dependencies.rb', line 4

def self.validate(current_schema, data, fragments, validator, options = {})
  if data.is_a?(Hash)
    current_schema.schema['dependencies'].each do |property,dependency_value|
      if data.has_key?(property)
        if dependency_value.is_a?(String) && !data.has_key?(dependency_value)
          message = "The property '#{build_fragment(fragments)}' has a property '#{property}' that depends on a missing property '#{dependency_value}'"
          raise ValidationError.new(message, fragments, current_schema)
        elsif dependency_value.is_a?(Array)
          dependency_value.each do |value|
            if !data.has_key?(value)
              message = "The property '#{build_fragment(fragments)}' has a property '#{property}' that depends on a missing property '#{value}'"
              raise ValidationError.new(message, fragments, current_schema)
            end
          end
        else
          schema = JSON::Schema.new(dependency_value,current_schema.uri,validator)
          schema.validate(data, fragments)
        end
      end
    end
  end
end