Sha256: 2d1d266f18e3a8b248279494942a338bb061bc2a15855546ce79372aaf719d96

Contents?: true

Size: 848 Bytes

Versions: 8

Compression:

Stored size: 848 Bytes

Contents

require 'json-schema/attribute'

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

        items = current_schema.schema['items']
        case items
        when Hash
          schema = JSON::Schema.new(items, current_schema.uri, validator)
          data.each_with_index do |item, i|
            schema.validate(item, fragments + [i.to_s], processor, options)
          end

        when Array
          items.each_with_index do |item_schema, i|
            break if i >= data.length
            schema = JSON::Schema.new(item_schema, current_schema.uri, validator)
            schema.validate(data[i], fragments + [i.to_s], processor, options)
          end
        end
      end
    end
  end
end

Version data entries

8 entries across 7 versions & 3 rubygems

Version Path
json-schema-ouidou-2.9.1 lib/json-schema/attributes/items.rb
json-schema-ouidou-2.9.0 lib/json-schema/attributes/items.rb
json-schema-3.0.0 lib/json-schema/attributes/items.rb
mountapi-0.11.1 vendor/bundle/ruby/2.7.0/bundler/gems/json-schema-2253a5ee6679/lib/json-schema/attributes/items.rb
mountapi-0.11.1 vendor/json-schema/lib/json-schema/attributes/items.rb
json-schema-2.8.1 lib/json-schema/attributes/items.rb
json-schema-2.8.0 lib/json-schema/attributes/items.rb
json-schema-2.7.0 lib/json-schema/attributes/items.rb