module Dry::Logic::Predicates::Methods

def uuid_v3?(input)

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