class JSON::Schema::TypeV4Attribute

Public Class Methods

validate(current_schema, data, fragments, processor, validator, options = {}) click to toggle source
# File lib/json-schema/attributes/type_v4.rb, line 6
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