Class: JSON::Schema::FormatAttribute

Inherits:
Attribute
  • Object
show all
Defined in:
lib/json-schema/attributes/format.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?, validation_error, validation_errors

Class Method Details

.validate(current_schema, data, fragments, processor, validator, options = {}) ⇒ Object



8
9
10
11
12
13
14
# File 'lib/json-schema/attributes/format.rb', line 8

def self.validate(current_schema, data, fragments, processor, validator, options = {})
  if self.data_valid_for_type?(data, current_schema.schema['type'])
    format = current_schema.schema['format'].to_s
    validator = validator.formats[format]
    validator.validate(current_schema, data, fragments, processor, validator, options) unless validator.nil?
  end
end