Sha256: 8ce4654ebf4a9feae439345d2b5ece73ff8844529b66d414aff32a91c38ce4c3

Contents?: true

Size: 849 Bytes

Versions: 10

Compression:

Stored size: 849 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

10 entries across 10 versions & 1 rubygems

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