Sha256: 5bb5488445ad94f35d6f0eda63e7b2478f9d3c9b8616adeb95aea4381bd9d7e2

Contents?: true

Size: 906 Bytes

Versions: 7

Compression:

Stored size: 906 Bytes

Contents

require 'json-schema/attribute'

module JSON
  class Schema
    class TypeV4Attribute < Attribute
      def self.validate(current_schema, data, fragments, processor, validator, options = {})
        union = true
        types = current_schema.schema['type']
        if !types.is_a?(Array)
          types = [types]
          union = false
        end

        return if types.any? { |type| data_valid_for_type?(data, type) }

        types = types.map { |type| type.is_a?(String) ? type : '(schema)' }.join(', ')
        message = format(
          "The property '%s' of type %s did not match %s: %s",
          build_fragment(fragments),
          type_of_data(data),
          union ? 'one or more of the following types' : 'the following type',
          types
        )

        validation_error(processor, message, fragments, current_schema, self, options[:record_errors])
      end
    end
  end
end

Version data entries

7 entries across 6 versions & 3 rubygems

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