Sha256: af3a7a20974cb09be12a5f662dabdde130637e0a391ee342cecbc94613256828

Contents?: true

Size: 810 Bytes

Versions: 8

Compression:

Stored size: 810 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|
            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 8 versions & 2 rubygems

Version Path
json-schema-2.6.2 lib/json-schema/attributes/items.rb
json-schema-2.6.1 lib/json-schema/attributes/items.rb
json-schema-2.6.0 lib/json-schema/attributes/items.rb
json-schema-2.5.2 lib/json-schema/attributes/items.rb
json-schema-openc-fork-0.0.2 lib/json-schema/attributes/items.rb
json-schema-2.5.1 lib/json-schema/attributes/items.rb
json-schema-openc-fork-0.0.1 lib/json-schema/attributes/items.rb
json-schema-2.5.0 lib/json-schema/attributes/items.rb