Sha256: 4c389e3b43033509380de5de847cc93cc78519818b664cb9fa67a1c19428a16e

Contents?: true

Size: 1.02 KB

Versions: 16

Compression:

Stored size: 1.02 KB

Contents

require 'json-schema/attribute'

module JSON
  class Schema
    class RequiredAttribute < Attribute
      def self.validate(current_schema, data, fragments, processor, validator, options = {})
        return unless data.is_a?(Hash)

        schema = current_schema.schema
        defined_properties = schema['properties']

        schema['required'].each do |property, property_schema|
          next if data.has_key?(property.to_s)
          prop_defaults = options[:insert_defaults] &&
                          defined_properties &&
                          defined_properties[property] &&
                          !defined_properties[property]["default"].nil? &&
                          !defined_properties[property]["readonly"]

          if !prop_defaults
            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
        end
      end
    end
  end
end

Version data entries

16 entries across 15 versions & 4 rubygems

Version Path
json-schema-ouidou-2.9.1 lib/json-schema/attributes/required.rb
json-schema-ouidou-2.9.0 lib/json-schema/attributes/required.rb
json-schema-3.0.0 lib/json-schema/attributes/required.rb
mountapi-0.11.1 vendor/json-schema/lib/json-schema/attributes/required.rb
mountapi-0.11.1 vendor/bundle/ruby/2.7.0/bundler/gems/json-schema-2253a5ee6679/lib/json-schema/attributes/required.rb
json-schema-2.8.1 lib/json-schema/attributes/required.rb
json-schema-2.8.0 lib/json-schema/attributes/required.rb
json-schema-2.7.0 lib/json-schema/attributes/required.rb
json-schema-2.6.2 lib/json-schema/attributes/required.rb
json-schema-2.6.1 lib/json-schema/attributes/required.rb
json-schema-2.6.0 lib/json-schema/attributes/required.rb
json-schema-2.5.2 lib/json-schema/attributes/required.rb
json-schema-openc-fork-0.0.2 lib/json-schema/attributes/required.rb
json-schema-2.5.1 lib/json-schema/attributes/required.rb
json-schema-openc-fork-0.0.1 lib/json-schema/attributes/required.rb
json-schema-2.5.0 lib/json-schema/attributes/required.rb