Class: JSON::Schema::DependenciesAttribute
- Defined in:
- lib/json-schema/attributes/dependencies.rb
Direct Known Subclasses
Constant Summary
Constants inherited from Attribute
Attribute::TYPE_CLASS_MAPPINGS
Class Method Summary collapse
- .accept_value?(value) ⇒ Boolean
- .validate(current_schema, data, fragments, processor, validator, options = {}) ⇒ Object
- .validate_dependency(schema, data, property, value, fragments, processor, attribute, options) ⇒ Object
Methods inherited from Attribute
build_fragment, data_valid_for_type?, type_of_data, validation_error, validation_errors
Class Method Details
.accept_value?(value) ⇒ Boolean
34 35 36 |
# File 'lib/json-schema/attributes/dependencies.rb', line 34 def self.accept_value?(value) value.is_a?(String) || value.is_a?(Array) || value.is_a?(Hash) end |
.validate(current_schema, data, fragments, processor, validator, options = {}) ⇒ Object
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 6 def self.validate(current_schema, data, fragments, processor, validator, = {}) return unless data.is_a?(Hash) current_schema.schema['dependencies'].each do |property, dependency_value| next unless data.has_key?(property.to_s) next unless accept_value?(dependency_value) case dependency_value when String validate_dependency(current_schema, data, property, dependency_value, fragments, processor, self, ) when Array dependency_value.each do |value| validate_dependency(current_schema, data, property, value, fragments, processor, self, ) end else schema = JSON::Schema.new(dependency_value, current_schema.uri, validator) schema.validate(data, fragments, processor, ) end end end |
.validate_dependency(schema, data, property, value, fragments, processor, attribute, options) ⇒ Object
27 28 29 30 31 32 |
# File 'lib/json-schema/attributes/dependencies.rb', line 27 def self.validate_dependency(schema, data, property, value, fragments, processor, attribute, ) return if data.key?(value.to_s) = "The property '#{build_fragment(fragments)}' has a property '#{property}' that depends on a missing property '#{value}'" validation_error(processor, , fragments, schema, attribute, [:record_errors]) end |