You can Flatten to JSON\XML. And you can send it. Whether the other side can use it, isn't really a LabVIEW question, but most languages can parse XML\JSON or at least strings.
Note that Flatten to JSON\XML is tricky. There is a 'feature', that removes all objects of a cluster\class from the JSON\XML if\when the cluster\class is default. So in stead of sending a string with data of the object's values, you get crap.
You need to handle that in either LV or the other side.
@DoctorAutomatic wrote:
is it possible if one setup an identical structure in another language, that an object, in JSON, could be instantiated in labview at runtime?
So that's a yes, I guess.
Python for instance will gladly receive a JSON string, and convert it to an object. It doesn't really care about it's content...