What can I save as an object?

Hello,
In the docs I really didn’t understood if we can only storage JSON data or if there is anything else that can be saved. I’m using godot and I wanted to save the data as a resource and save it on the server.
I have everything setup including the login and registration. But I don’t know if that is possible.

@MaximoTG98 You can only save JSON structured data to the storage engine. I guess it’s possible to base64 encode binary data so you can store it inside a storage object. This can be useful for small bits of data. Why do you want to save the data as a Godot resource?