'move' method removes replicants of target item

Every scriptable application in macOS has a “dictionary” that is accessed by Script Editor (an app provided by Apple) or whatever other application is being used to write and compile that script. I use Script Debugger, Script Editor is freely available for all macOS users (in older versions of the OS it was called AppleScript Editor), the Xcode development environment also uses the dictionary, and so on. The dictionary for any scriptable application is written and maintained by the developer of that application. It is a text file (usually with an .sdef extension) that resides inside the application package along with other resources that the application uses. It doesn’t matter where the dictionary lives, because Script Editor, etc., knows about it and will give you access to it.

Run Script Editor. Choose File > Open Dictionary. A list of scriptable applications is presented to you. Scroll down to DEVONthink Pro Office.app or whatever other app you’re interest in, select the app, and press Choose. The dictionary opens. It contains information about the scriptable commands, classes and properties, enumerations, and data types that that app supports in scripts. For example, the DEVONthink Pro Office dictionary entry for the “move” command (i.e., a verb) is shown below. (This is the updated version mentioned above for v2.9.) Not to go into it here, but there are lots of resources available for learning AppleScript – Frederiko recently posted some links here, I believe, if you look for their posting on the topic of scripting.

The dictionary is an aid – it doesn’t do anything other than explain how to do things in your script for that application.