Sha256: 259333ba950718a3d09145875c2d1cf94bca78dc1153c6bf6ee65331fef12a27

Contents?: true

Size: 1.02 KB

Versions: 8

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

8 entries across 8 versions & 1 rubygems

Version Path
json-schema-5.0.1 lib/json-schema/attributes/required.rb
json-schema-5.0.0 lib/json-schema/attributes/required.rb
json-schema-4.3.1 lib/json-schema/attributes/required.rb
json-schema-4.3.0 lib/json-schema/attributes/required.rb
json-schema-4.2.0 lib/json-schema/attributes/required.rb
json-schema-4.1.1 lib/json-schema/attributes/required.rb
json-schema-4.1.0 lib/json-schema/attributes/required.rb
json-schema-4.0.0 lib/json-schema/attributes/required.rb