is there any way to assign a "list" of strings as ...
# nebula
c
is there any way to assign a "list" of strings as a property in a tag definition? Im trying to write automation to transform a list of "events" in the form of a list of python dictionaries into a schema by leveraging the type relationships, but ive hit an edge case. If a dict contains a list of values (lets say strings), I can't generate a unique property name for each value and add each list item as a property of the parent object because the positioning of the value would changes its property definition and result in an infinitely complex schema but, I cant just generate a property name based on the parent field either because then id have multiple properties with the same name
m
In the latest master branch, support for lists as properties has been implemented, and basic functional testing has been completed. However, this feature has not been officially released yet. The formal release is expected to occur in several months, following additional refinement and validation.
👍 1