Sha256: 0a2660a8cb545941af90612fbd6c4030feb501f9bc16b5b6be9115a57313939c

Contents?: true

Size: 907 Bytes

Versions: 10

Compression:

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

10 entries across 10 versions & 1 rubygems

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