module Dry::Logic::Predicates::Methods

def uuid_v2?(input)

def uuid_v2?(input)
  uuid_v2_format = /\A[0-9A-F]{8}-[0-9A-F]{4}-2[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}\z/i
  format?(uuid_v2_format, input)
end