class Dry::Schema::JSONSchema::SchemaCompiler

def raise_unknown_conversion_error!(type, name)

def raise_unknown_conversion_error!(type, name)
  message = <<~MSG
    Could not find an equivalent conversion for #{type} #{name.inspect}.
    This means that your generated JSON schema may be missing this validation.
    You can ignore this by generating the schema in "loose" mode, i.e.:
        my_schema.json_schema(loose: true)
  MSG
  raise UnknownConversionError, message.chomp
end