Sha256: 32b0d739ff1db0373bbd99fd526aa09867d9e41d973b8acd3aa98b2fac8e04db

Contents?: true

Size: 590 Bytes

Versions: 2

Compression:

Stored size: 590 Bytes

Contents

require 'json-schema/attribute'

module JSON
  class Schema
    class DateTimeV4Format < FormatAttribute
      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 valid RFC3339 date/time string"
          begin
            DateTime.rfc3339(data)
          rescue ArgumentError
            validation_error(processor, error_message, fragments, current_schema, self, options[:record_errors])
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
json-schema-2.4.1 lib/json-schema/attributes/formats/date_time_v4.rb
json-schema-2.4.0 lib/json-schema/attributes/formats/date_time_v4.rb