Class: JSON::Schema::TypeV4Attribute
- Defined in:
- lib/json-schema/attributes/type_v4.rb
Constant Summary
Constants inherited from Attribute
Attribute::TYPE_CLASS_MAPPINGS
Class Method Summary collapse
Methods inherited from Attribute
build_fragment, data_valid_for_type?, type_of_data, validation_error, validation_errors
Class Method Details
.validate(current_schema, data, fragments, processor, validator, options = {}) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/json-schema/attributes/type_v4.rb', line 6 def self.validate(current_schema, data, fragments, processor, validator, = {}) 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(', ') = 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, , fragments, current_schema, self, [:record_errors]) end |