Generic number Property

What kind of WoT property should I use for recording a generic number value where it doesn’t have a meaningful range?

I have found LevelProperty but this seems to expect a minimum and maximum value and only shows a bar in the gateway Thing view. I would like a property that shows up something like temperature, the number and the unit if there is one.

There is to my knowledge currently no way to make the gateway display a generic number property as the device “core”. For just the property on its own you don’t need an @type, you can just have a property of type number. The @type is only used for special rendering and finding properties that influence the thing “core”.

Aha, that’s it! Thank you, I didn’t realise I could leave off the @type. Thank you.