ruby-json-schema/json-schema

View on GitHub
lib/json-schema/attributes/pattern.rb

Summary

Maintainability
A
1 hr
Test Coverage
require 'json-schema/attribute'

module JSON
  class Schema
    class PatternAttribute < Attribute
      def self.validate(current_schema, data, fragments, processor, validator, options = {})
        return unless data.is_a?(String)

        pattern = current_schema.schema['pattern']
        regexp  = Regexp.new(pattern)
        unless regexp.match(data)
          message = "The property '#{build_fragment(fragments)}' value #{data.inspect} did not match the regex '#{pattern}'"
          validation_error(processor, message, fragments, current_schema, self, options[:record_errors])
        end
      end
    end
  end
end