Autocomplete with input from custom node

With our integration we have some custom input and output node types with data formats described by a schema, e.g. we have a Request input node which might have a location type schema of {"latitude" : "double", "longitude" : "double", "altInMeters" : "double"}.

If we connect that to a downstream node like Change or Switch, is there a way to pull that into the autocomplete function, so that when a user types "msg.payload." they get those three field names as suggestions? (These might also be nested record types, not just primitive types.)

Is that possible with the current tools, or is it part of the future roadmap?

Thanks.

Suggestions like payload are predefined because they are used by the core nodes.

This is not currently possible because each node does not know the message properties it will receive.

There have been discussions in the past to allow a node to contain types in JSON form which would allow autocomplete to suggest more appropriate suggestions. But I don't know what the progress is and when it would be initially planned.

OK, fair enough - thanks for the reply.