Class: JSON::Schema::DateFormat

Inherits:
FormatAttribute show all
Defined in:
lib/json-schema/attributes/formats/date.rb

Constant Summary collapse

REGEXP =
/\A\d{4}-\d{2}-\d{2}\z/

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



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/json-schema/attributes/formats/date.rb', line 8

def self.validate(current_schema, data, fragments, processor, validator, options = {})
  if data.is_a?(String)
    error_message = "The property '#{build_fragment(fragments)}' must be a date in the format of YYYY-MM-DD"
    if REGEXP.match(data)
      begin
        Date.parse(data)
      rescue ArgumentError => e
        raise e unless e.message == 'invalid date'

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