[SOLVED] Assigning tags to Z-wave devices

I am running OH2.3 with Z-wave devices discovered in PaperUI.
How do I assign tags to these items so I can use them with Google Assistant?
I have the items in myopenhab.org already.
I have tried to make a text definition besides the PaperUI version, but that is not allowed (or I do it wrong).
Otherwise please show how to define Z-wave items in .item files.

You can make Items in flat text files (and add Tags to them) and link them to the Z-Wave Thing’s Channels in parallel to the ones that you already have created using PaperUI

Or you can use the REST API or the console to add Tags to your existing PaperUI created Items

see Items examples here: https://www.openhab.org/docs/configuration/items.html
with tags: https://github.com/openhab/openhab-google-assistant/blob/master/USAGE.md

Here is an example for some Z-Wave Items (in this example, there are no Tags applied):
Tags are assigned just before the binding configuration {} (and just after the Group assignment ())
For the binding config {channel="UID"} copy the Channel Unique IDentifier (UID) from PaperUI.

/etc/openhab2/items/ZWave.items

/* Fibaro Sensors */
Number	FibEye01_Movement	"FE01 Movement: [%s]"			<light>			(gZWave)	{channel="zwave:device:512:node2:alarm_motion"}
Number	FibEye01_Temp		"FE01 Temperature: [%.2f °C]"	<temperature>	(gZWave)	{channel="zwave:device:512:node2:sensor_temperature"}
Number	FibEye01_Lux		"FE01 Lux: [%.2f Lux]"			<sun>			(gZWave)	{channel="zwave:device:512:node2:sensor_luminance"}
Number	FibEye01_Bat		"FE01 Battery [%d %%]"			<battery>		(gZWave)	{channel="zwave:device:512:node2:battery-level"}
Number	FibEye01_Alarm		"FE01 Alarm: [%s]"				<fire>			(gZWave)	{channel="zwave:device:512:node2:alarm_tamper"}

Here is another example of a Tagged Item (bound to MQTTv1):

Switch	Robo500				"Robo 500"	<siren>	(gESP)	["Switchable"]	{mqtt=">[HomeR:openhab/out/Robo500/command:command:ON:default]"}

Thanks very much.
Suggestions worked for me.