Currently, the VESPA_target_name and VESPA_target_class attributes are a text string, with # separator.
Example:
VESPA_target_name = "Jupiter#Io"
VESPA_target_class = "planet#satellite"
We should transform this into a list of terms:
VESPA_target_name = ["Jupiter", "Io"]
VESPA_target_class = ["planet", "satellite"]