Sha256: a6368b48e24552e64b3d927d9fd3157633775c37b26225b2f92b144fe131bdc0
Contents?: true
Size: 1.31 KB
Versions: 4
Compression:
Stored size: 1.31 KB
Contents
module JSON class Schema class PropertiesAttribute < Attribute def self.validate(current_schema, data, fragments, processor, validator, options = {}) if data.is_a?(Hash) current_schema.schema['properties'].each do |property,property_schema| if !data.has_key?(property.to_s) && !data.has_key?(property.to_sym) && property_schema['default'] && !property_schema['readonly'] && options[:insert_defaults] default = property_schema['default'] data[property] = (default.is_a?(Hash) ? default.clone : default) end if property_schema['required'] && !data.has_key?(property.to_s) message = "The property '#{build_fragment(fragments)}' did not contain a required property of '#{property}'" validation_error(processor, message, fragments, current_schema, self, options[:record_errors]) end if data.has_key?(property.to_s) || data.has_key?(property.to_sym) schema = JSON::Schema.new(property_schema,current_schema.uri,validator) fragments << property schema.validate(data[property],fragments,processor,options) fragments.pop end end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems